* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #2A2A2A;
    background-color: #eadfd1;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5B7052;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: #2A2A2A;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

nav a:hover {
    color: #5B7052;
}

.hero {
    background-color:#eadfd1;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2A2A2A;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #2A2A2A;
}

.destaque {
    background-color: #5B7052;
    color: #FFFFFF;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 12px;
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
}

section {
    padding: 5rem 0;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 2rem;
    color: #5B7052;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #C4B5A0;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2A2A2A;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.momento-content {
    gap: 3rem;
    align-items: center;
}

.foto-vertical {
    width: 100%;
    max-width: 300px;
    height: 400px;
    background-color: #E8D9C7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5B7052;
    font-weight: 500;
    margin: 0 auto;
}

.depoimento {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #5B7052;
}

.depoimento h3 {
    color: #5B7052;
    font-style: italic;
    margin-bottom: 1rem;
}

.depoimento p {
    font-style: normal;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .destaque {
        padding: 2rem 1rem;
        font-size: 1.2rem;
    }
    
    .depoimento {
        padding: 1.5rem;
    }
    
    .foto-vertical {
        max-width: 250px;
        height: 350px;
    }
}