/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2d3748; /* Dark Grayish Blue */
    line-height: 1.6;
    background-color: #f5f1e9; /* Light Beige/Cream */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1a202c; /* Very Dark Blue */
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #8f7b66; /* Muted Gold/Beige */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
    overflow: hidden;
}

.btn {
    display: inline-block;
    background: #8f7b66; /* Muted Gold/Beige */
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.btn:hover {
    background: #7a6855; /* Darker Muted Gold/Beige */
    text-decoration: none;
}

section {
    padding: 4rem 0;
}

.bg-dark {
    background-color: #1a202c; /* Very Dark Blue */
    color: #e9e4d9; /* Light Cream for text on dark bg */
}

.bg-dark h1, .bg-dark h2, .bg-dark h3 {
    color: #f5f1e9; /* Light Beige/Cream for titles on dark bg */
}

.bg-light {
    background-color: #f5f1e9; /* Light Beige/Cream */
}

.bg-accent {
    background-color: #e9e4d9; /* Slightly darker Cream/Beige */
}

/* Hero Section */
.hero-section {
    background: url('images/hero-background.jpeg') no-repeat center center/cover;
    /* Fallback background color if image fails */
    background-color: #1a202c;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.7); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive adjustments for Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Áreas de Atuação */
.areas-atuacao .boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.areas-atuacao .box {
    background: #fff; /* White background for boxes */
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.areas-atuacao .box:hover {
    transform: translateY(-5px);
}

.areas-atuacao .box i {
    color: #8f7b66; /* Muted Gold/Beige */
    margin-bottom: 1rem;
}

.areas-atuacao .box h3 {
    margin-bottom: 0.5rem;
    color: #1a202c; /* Very Dark Blue */
}

.areas-atuacao .box p {
    font-size: 0.9rem;
    color: #4a5568; /* Grayish Blue */
}

/* Responsive adjustments for Áreas de Atuação */
@media (max-width: 768px) {
    .areas-atuacao .boxes {
        grid-template-columns: 1fr;
    }
}

/* Sobre Priscila Alves */
.sobre .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    border-radius: 5px;
    display: block;
    margin: auto;
}

.sobre-text h2 {
    text-align: left;
}

/* Responsive adjustments for Sobre */
@media (max-width: 768px) {
    .sobre .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sobre-img {
        margin-bottom: 2rem;
    }
    .sobre-text h2 {
        text-align: center;
    }
}

/* Experiência */
.experiencia .grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.experiencia-img img {
    width: 100%;
    max-width: 450px; /* Adjust as needed */
    border-radius: 5px;
    display: block;
    margin: auto;
}

.experiencia-text h2 {
    text-align: left;
}

.diferenciais {
    list-style: none;
    margin: 1.5rem 0;
}

.diferenciais li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.diferenciais i {
    color: #8f7b66; /* Muted Gold/Beige */
    margin-right: 0.8rem;
    width: 20px; /* Ensure icons align well */
    text-align: center;
}

/* Responsive adjustments for Experiência */
@media (max-width: 768px) {
    .experiencia .grid-2-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* Reverse order on mobile */
    .experiencia-text {
        order: 2;
    }
    .experiencia-img {
        order: 1;
        margin-bottom: 2rem;
    }
    .experiencia-text h2 {
        text-align: center;
    }
    .diferenciais li {
       justify-content: center; /* Center list items on mobile */
    }
}

/* Nosso Compromisso */
.compromisso .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.compromisso-img img, .compromisso-img div {
    width: 100%;
    max-width: 450px; /* Adjust as needed */
    border-radius: 5px;
    display: block;
    margin: auto;
}

.compromisso-text h2 {
    text-align: left;
}

/* Responsive adjustments for Compromisso */
@media (max-width: 768px) {
    .compromisso .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .compromisso-img {
        margin-bottom: 2rem;
    }
    .compromisso-text h2 {
        text-align: center;
    }
}

/* CTA */
.cta {
    padding: 3rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta .whatsapp-number {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

/* Blog */
.blog {
    text-align: center;
}

/* Contato */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff; /* White background for form */
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #4a5568;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group select {
    appearance: none; /* Remove default arrow */
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a5568' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 0.8rem center;
    background-size: 12px;
}

.btn-form {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem 0;
    color: #e9e4d9;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1rem;
    color: #f5f1e9;
}

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a,
.footer-col p a {
    color: #e9e4d9;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-col i {
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #4a5568; /* Separator line */
    font-size: 0.9rem;
    color: #a0aec0; /* Lighter gray for copyright */
}

/* General Responsive Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2, .grid-2-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .grid-2 > div:first-child,
    .grid-2-reverse > div:last-child { /* Image usually */
        margin-bottom: 2rem;
    }
    .grid-2 h2,
    .grid-2-reverse h2 {
        text-align: center;
    }
    /* Ensure reverse order works on mobile for experience section */
    .experiencia .grid-2-reverse > div:first-child { /* Text */
        order: 2;
    }
    .experiencia .grid-2-reverse > div:last-child { /* Image */
        order: 1;
    }
}

.text-center {
    text-align: center;
}

