/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Didot', 'Times New Roman', serif;
    background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
    color: #f5f5f5;
    line-height: 1.7;
}

/* ===== HEADER ===== */
header {
    display: flex;                 
    align-items: center;           
    justify-content: flex-start;       
    gap: 25px;                     
    padding: 60px 20px 40px;
    background: #0d0d0d;
    border-bottom: 3px solid #a3314c;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

header img {
    width: 270px;
    height: 270px;
    border-radius: 5%;
    border: 4px solid #a3314c;
    box-shadow: 0 0 25px rgba(167, 26, 73, 0.4);
    object-fit: cover;
    transition: transform 0.4s ease;

}

header img:hover {
    transform: scale(1.08)
}

header .info {
    text-align: left;

}

header h1 {
    font-size: 2.5em;
    letter-spacing: 1px;
    color: #f5f5f5;
    margin-bottom: 10px;
    
}

header h2 {
    font-size: 1.2em;
    color: #a3314c;
    text-align: left;
    margin-left: 20px;
}

main h2 {
    text-align: left;
    margin-left: 20px;
}

/* ===== SECTIONS ===== */
section {
    background: #141414;
    border: 1px solid #2c2c2c;
    padding: 30px;
    margin-bottom: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(167, 26, 73, 0.4);
}

section h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #f5f5f5;
    border-left: 6px solid #a3314c;
    padding-left: 12px;
}

section p {
    margin-bottom: 20px;
    color: #dcdcdc;
    font-size: 1.05em;
    
}

/* ===== IMAGENS ===== */
section img {
    max-width: 46%;
    border-radius: 10px;
    margin: 8px 2%;
    border: 2px solid #2c2c2c;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, filter 0.3s ease;
}

section img:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
    box-shadow: 0 0 25px rgba(167, 26, 73, 0.4);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    font-size: 0.9em;
    padding: 25px;
    margin-top: 60px;
    background: #0d0d0d;
    color: #a3314c;
    border-top: 2px solid #2c2c2c;
}


