/* Variáveis */
:root {
    --primary: #0F4C3A;
    --primary-light: #1A6B52;
    --secondary: #5B9B8C;
    --dark-green: #0F4C3A;
    --light-green: #E8F3F0;
    --hover-green: #FFFFFF;
    --gray-100: #F7F7F7;
    --gray-800: #262626;
    --white: #FFFFFF;
    --black: #000000;
    --container-width: 1200px;
    --container-padding: 20px;
    --footer-text: rgba(255, 255, 255, 0.9);
    --footer-text-light: rgba(255, 255, 255, 0.8);
    --footer-text-lighter: rgba(255, 255, 255, 0.7);
    --footer-divider: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 58, 0.2);
}

.section {
    padding: 70px 0;
    position: relative;
    margin: 0;
    background-color: var(--white);
}

.section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.section.bg-light,
.section.bg-dark {
    padding: 40px 0;
    min-height: auto;
}

.section#escritorio::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: var(--light-green);
    opacity: 0.1;
    z-index: 0;
}

.bg-light {
    background-color: var(--light-green);
}

.bg-dark {
    background-color: var(--gray-800);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(15, 76, 58, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 85px;
    width: auto;
    padding: 0;
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 1rem;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.menu a:hover::before,
.menu a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu a:hover,
.menu a.active {
    color: var(--white);
    transform: translateY(-2px);
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-mobile span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.4s ease;
    transform-origin: center;
}

@media (max-width: 768px) {
.menu-mobile {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 2rem;
        gap: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateX(50px);
    }

    .menu.active a {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.4s ease;
    }

    .menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .menu.active a:nth-child(2) { transition-delay: 0.2s; }
    .menu.active a:nth-child(3) { transition-delay: 0.3s; }
    .menu.active a:nth-child(4) { transition-delay: 0.4s; }
    .menu.active a:nth-child(5) { transition-delay: 0.5s; }
    .menu.active a:nth-child(6) { transition-delay: 0.6s; }

    .menu-mobile.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(15, 76, 58, 0.85),
        rgba(10, 53, 40, 0.88)
    );
    z-index: 2;
}

.carousel {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    word-break: break-word;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
}

.scroll-down {
    display: none;
}

/* Shape Divider */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 25px;
}

.shape-divider .shape-fill {
    fill: var(--white);
}

/* Seções */
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px; /* Altura da navbar */
    overflow: hidden;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 15px auto 0;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* O Escritório */
.escritorio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.escritorio-content .texto {
    padding-right: 2rem;
    position: relative;
    z-index: 1;
}

.escritorio-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.escritorio-content .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    width: auto;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
}

.escritorio-content .btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 58, 0.2);
}

.escritorio-content .imagem {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.escritorio-content .imagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 76, 58, 0.1), rgba(15, 76, 58, 0.2));
    z-index: 1;
}

.escritorio-content .imagem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.escritorio-content .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease;
}

.escritorio-content .imagem:hover img {
    transform: scale(1.03);
}

/* Áreas de Atuação */
.areas-section {
    padding: 70px 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.03));
}

.areas-section h2 {
    color: var(--white);
}

.areas-section h2::after {
    background-color: var(--secondary);
    opacity: 0.8;
}

.areas-section .subtitle {
    color: var(--white);
    opacity: 0.9;
}

.areas-carousel {
    position: relative;
    padding: 20px 0;
    margin-top: 2rem;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.area-card {
    flex: 0 0 350px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background: linear-gradient(
        to top,
        rgba(10, 53, 40, 0.95),
        rgba(10, 53, 40, 0.8) 60%,
        transparent
    );
    color: var(--white);
    transform: translateY(65%);
    transition: transform 0.3s ease;
}

.area-card:hover .area-overlay {
    transform: translateY(0);
}

.area-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--white);
    text-align: left;
    word-break: break-word;
    min-height: 2.6em;
}

.area-description {
    opacity: 0;
    transition: opacity 0.3s;
}

.area-card:hover .area-description {
    opacity: 1;
    transition: opacity 0.3s;
}

.areas-controls {
    position: absolute;
    width: 110%;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.areas-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.areas-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--primary-light);
}

.areas-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.areas-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.areas-dot:hover {
    background: var(--white);
}

.areas-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.areas-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-contato {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-contato:hover {
    transform: translateY(-2px);
    background-color: var(--white);
    color: var(--primary-light);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .btn-contato {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Equipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.membro-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.membro-card:hover {
    transform: translateY(-5px);
}

.membro-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #f8f9fa;
    display: block;
}

.membro-card h3 {
    color: #0F4C3A;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.membro-card .oab {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.membro-card .especialidade {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.membro-card .experiencia {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.membro-card .descricao {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.membro-card .contato-equipe {
    margin-top: auto;
    padding-top: 1.5rem;
}

.membro-card .whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #25D366;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.membro-card .whatsapp-link:hover {
    background-color: #25D366;
    color: white;
    transform: translateY(-2px);
}

.membro-card .whatsapp-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Clientes */
.section#clientes {
    padding: 40px 0;
    min-height: auto;
    overflow: hidden;
}

.section#clientes .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clientes-carousel {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.clientes-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 14);
}

.cliente-item {
    flex: 0 0 200px;
    padding: 1rem;
}

.cliente-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cliente-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* Contato */
.section#contato {
    padding: 70px 0 0 0;
    margin: 0;
    background-color: var(--gray-800);
    color: var(--white);
    position: relative;
    z-index: 1;
    width: 100%;
}

.section#contato .container {
    padding-bottom: 70px;
    margin: 0 auto;
    max-width: var(--container-width);
}

.section#contato h2,
.section#contato .subtitle {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-padding);
}

.section#contato h2 {
    color: var(--white);
}

.section#contato .subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.mapa {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

#map {
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
}

.contato-info {
    margin-top: 1.5rem;
    color: var(--white);
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.contato-info svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #495057;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #007bff;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
    outline: none;
    background: #ffffff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-form button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-form button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mensagem de Alerta */
.alert {
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
        margin: 0 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
    }
    
    .contact-form button {
        padding: 14px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #map {
        height: 200px;
    }
    
    .mapa {
        padding: 1rem;
    }
    
    .contato-info {
        margin-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form {
    animation: fadeIn 0.5s ease-out;
}

.alert {
    animation: fadeIn 0.3s ease-out;
}

/* Animações */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 1rem;
    }

    .menu.active a {
        color: var(--white);
        padding: 0.5rem 0;
    }

    .menu-mobile {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .menu-mobile span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--white);
        margin: 5px 0;
        transition: 0.3s;
    }

    .section {
        padding: 50px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }

    .escritorio-content .imagem {
        height: 380px;
    }

    .area-card {
        flex: 0 0 260px;
        height: 340px;
    }

    .shape-divider svg {
        height: 15px;
    }

    .areas-controls {
        width: 120%;
        left: -10%;
    }

    .areas-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .areas-btn svg {
        width: 20px;
        height: 20px;
    }

    .areas-carousel {
        max-width: 300px;
    }

    .areas-dots {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .areas-dot {
        width: 10px;
        height: 10px;
    }

    .areas-dot {
        font-size: 1.2rem;
        padding: 0.3rem;
    }

    .areas-dot.active {
        font-size: 1.5rem;
    }
}

.carousel-controls {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.45rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background: var(--white);
}

/* Botões Flutuantes */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-cta {
    position: absolute;
    right: 70px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-button:hover .whatsapp-cta {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-cta::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-cta strong {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.whatsapp-cta span {
    color: var(--gray-800);
    font-size: 0.8rem;
}

/* Botão Back to Top */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 27.5px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(15, 76, 58, 0.3);
}

.back-to-top:hover svg {
    color: var(--white) !important;
    fill: var(--white) !important;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--white) !important;
    fill: var(--white) !important;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        bottom: 75px;
        right: 22.5px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }

    .whatsapp-button .tooltip {
        display: none;
    }
}

/* Mapa */
#map {
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
}

.leaflet-popup-content-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-tip {
    background-color: rgba(255, 255, 255, 0.95);
}

.custom-marker {
    transition: transform 0.3s ease;
}

.custom-marker:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    #map {
        height: 300px !important;
    }
}

@media (max-width: 992px) {
    .areas-carousel {
        max-width: 700px;
    }
    
    .area-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .areas-controls {
        width: 110%;
        left: -5%;
    }
}

@media (max-width: 768px) {
    .areas-carousel {
        max-width: 300px;
    }

    .area-card {
        flex: 0 0 100%;
    }

    .areas-controls {
        width: 130%;
        left: -15%;
    }
}

/* Footer */
.footer {
    margin-top: -1px;
    padding: 0;
    background: var(--dark-green);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem var(--container-padding) 0;
    position: relative;
    z-index: 1;
}

.footer-main-col {
    max-width: 400px;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 150px;
    width: auto;
    max-width: 300px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-logo:hover {
    transform: translateY(-2px);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(91, 155, 140, 0.5));
}

.footer-logo img {
    height: 180px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--footer-text);
    margin-bottom: 2rem;
    font-weight: 300;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--white);
}

.social-link:hover svg {
    color: var(--primary) !important;
    fill: var(--primary) !important;
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--white) !important;
    fill: var(--white) !important;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--white);
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 45px;
    bottom: 0;
    width: 15px;
    height: 2px;
    background: var(--white);
    opacity: 0.3;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--footer-text) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
    padding-left: 0;
    background: transparent !important;
}

.footer-nav a::before {
    display: none;
}

.footer-nav a:hover {
    color: var(--white) !important;
    transform: translateX(5px);
    font-weight: 400;
}

.footer-nav a:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 0.6;
    background: var(--white) !important;
}

.footer-nav-col a:hover,
.footer-nav-col a:hover::before {
    background: transparent !important;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--white);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--white) !important;
    fill: var(--white) !important;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--footer-text);
    margin: 0;
    font-weight: 300;
}

.footer-bottom {
    margin: 4rem 0 0 0;
    padding: 1.5rem 0;
    background: var(--gray-800);
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    display: none;
}

.footer-bottom::after {
    display: none;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.copyright-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--footer-text-light);
    margin: 0;
    font-weight: 300;
}

.oab-info {
    font-size: 0.8rem;
    color: var(--footer-text-lighter);
    margin: 0;
    font-weight: 300;
}

.footer-legal-nav {
    display: flex;
    gap: 2rem;
}

.footer-legal-nav a {
    color: var(--footer-text-light) !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
    padding-left: 0;
    background: transparent !important;
}

.footer-legal-nav a::before {
    display: none;
}

.footer-legal-nav a:hover {
    color: var(--white) !important;
    transform: translateX(5px);
    font-weight: 400;
}

.footer-legal-nav a:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 0.6;
    background: var(--white) !important;
}

@media (max-width: 992px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-main-col {
        grid-column: 1 / -1;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }

    .footer-nav-col::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main-col {
        text-align: center;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer h3 {
        text-align: center;
    }

    .footer h3::before {
        left: 50%;
        transform: translateX(-20px);
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(5px);
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a {
        text-align: center;
    }

    .contact-info {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

#footer-global {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Garantindo que os ícones sociais também sejam brancos */
.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--white) !important;
    fill: var(--white) !important;
    position: relative;
    z-index: 1;
}

.footer svg {
    color: var(--white) !important;
    fill: var(--white) !important;
}

/* Forçando a cor branca em todos os paths SVG do footer */
.footer svg path {
    fill: var(--white) !important;
    color: var(--white) !important;
}

.footer .social-link:hover svg,
.footer .social-link:hover svg path {
    color: var(--primary) !important;
    fill: var(--primary) !important;
}

/* Mantendo apenas os ícones de contato em branco */
.footer .contact-item svg,
.footer .contact-item svg path {
    color: var(--white) !important;
    fill: var(--white) !important;
}

/* Removendo regra geral que estava afetando todos os SVGs */
.footer svg path {
    /* removendo esta regra */
}

.footer svg {
    /* removendo esta regra */
}

.footer-main-content .footer-social .social-link svg,
.footer-main-content .footer-social .social-link svg path {
    color: var(--white) !important;
    fill: var(--white) !important;
    transition: all 0.3s ease;
}

.footer-main-content .footer-social .social-link:hover svg,
.footer-main-content .footer-social .social-link:hover svg path {
    color: var(--primary) !important;
    fill: var(--primary) !important;
}

.footer-main-content .footer-nav-col .footer-nav a {
    color: var(--footer-text) !important;
}

.footer-main-content .footer-nav-col .footer-nav a:hover {
    color: var(--footer-text) !important;
    font-weight: 500;
    transform: translateX(5px);
}

.footer-main-content .footer-nav-col .footer-nav a::before {
    background: var(--white) !important;
    opacity: 0.3;
}

.footer-main-content .footer-nav-col .footer-nav a:hover::before {
    opacity: 0.6;
    background: var(--white) !important;
}

.section#contato h2,
.section#contato .subtitle {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-padding);
}

.section#contato {
    padding: 70px 0 0 0;
    margin: 0;
    background-color: var(--gray-800);
    color: var(--white);
    position: relative;
    z-index: 1;
    width: 100%;
}

.section#contato .container {
    padding-bottom: 70px;
    margin: 0 auto;
    max-width: var(--container-width);
}

.footer {
    margin-top: -1px;
    padding: 0;
    background: var(--dark-green);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem var(--container-padding) 0;
    background: transparent;
}

.footer-bottom {
    margin: 4rem 0 0 0;
    padding: 1.5rem 0;
    background: var(--gray-800);
    width: 100%;
    position: relative;
}

.section.bg-dark {
    margin-bottom: 0;
}

/* Estilos da página de Políticas de Privacidade */
.privacy-section {
    flex: 1;
    background-color: var(--white);
    padding: 4rem 0;
    margin: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
}

.privacy-content h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h2::after {
    display: none;
}

.privacy-content p {
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Banner da página de políticas */
.page-banner {
    min-height: 450px;
    margin-top: -80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    margin-bottom: 0;
    background-color: var(--primary);
}

.page-banner .banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 0;
}

.page-banner .banner-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/urban-view-with-people-street.jpg') center center/cover no-repeat;
    opacity: 0.1;
    filter: grayscale(100%);
}

.page-banner .banner-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 76, 58, 0.98),
        rgba(15, 76, 58, 0.85)
    );
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 25px;
}

.page-banner h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-banner .shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.page-banner .shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
}

.page-banner .shape-divider .shape-fill {
    fill: var(--white);
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 350px;
        padding-top: 100px;
    }

    .page-banner h1 {
        font-size: 2.5rem;
        padding-bottom: 20px;
    }

    .page-banner h1::after {
        width: 60px;
    }

    .page-banner .container {
        padding: 60px 20px;
    }

    .page-banner .shape-divider svg {
        height: 25px;
    }

    .privacy-section {
        padding: 3rem 1.5rem;
    }
}

/* Ajustes gerais para remover faixas indesejadas */
main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

.section:has(.privacy-content) {
    padding: 0;
    margin: 0;
    background-color: var(--white);
}

.privacy-wrapper {
    background-color: var(--white);
}

@media (max-width: 768px) {
    .section#contato {
        padding: 50px 0 0 0;
    }

    .section#contato .container {
        padding-bottom: 50px;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem var(--container-padding) 0;
    }

    .footer-bottom {
        margin: 3rem 0 0 0;
    }
}

/* Estilos do Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--gray-800);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-btn {
    background: var(--gray-100);
    color: var(--gray-800);
}

.settings-btn:hover {
    background: var(--gray-800);
    color: var(--white);
}

.accept-btn {
    background: var(--primary);
    color: var(--white);
}

.accept-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Modal de Configurações de Cookies */
.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
    padding: 1rem;
}

.settings-content {
    background: var(--white);
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.settings-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-header h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 0;
}

.close-settings {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.settings-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.option-text h4 {
    color: var(--gray-800);
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.option-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.settings-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-100);
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .settings-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
}

.team-card .whatsapp-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #25D366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-card .whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.team-card .whatsapp-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Blog Moderno */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #f7f7f7;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    color: #0F4C3A;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-post-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(15,76,58,0.10);
}

.blog-post-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.3s;
}

.blog-post-card:hover .blog-post-img img {
    transform: scale(1.04);
}

.blog-post-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-date {
    color: #0F4C3A;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.blog-post-title {
    color: #0F4C3A;
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.blog-post-resumo {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-post-link {
    color: #0F4C3A;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #0F4C3A;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    align-self: flex-start;
    transition: all 0.2s;
    background: #fff;
}

.blog-post-link:hover {
    background: #0F4C3A;
    color: #fff;
    border-color: #0F4C3A;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .blog-container {
        padding: 2rem 0.5rem;
    }
    .blog-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .blog-header h1 {
        font-size: 1.5rem;
    }
    .blog-post-content {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

/* Media Queries para Responsividade */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .escritorio-content {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .escritorio-content {
        flex-direction: column;
    }
    
    .escritorio-content .imagem {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .areas-carousel {
        padding: 0 1rem;
    }
    
    .area-card {
        min-width: 280px;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-main-col {
        grid-column: span 2;
    }
    
    .footer-nav-col {
        grid-column: span 1;
    }
    
    .footer-nav-col::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--primary);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.4s ease;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .escritorio-content .imagem {
        margin-top: 2rem;
    }
    
    .area-card {
        min-width: 260px;
    }
    
    .areas-controls {
        margin-top: 1.5rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .membro-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa {
        height: 300px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main-col {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer h3 {
        text-align: center;
    }
    
    .footer h3::before,
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-nav a {
        padding: 0.5rem 0;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .whatsapp-button {
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-cta {
        display: none;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 80px;
    }
    
    .page-banner {
        padding: 100px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 2rem 0;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .area-card {
        min-width: 240px;
    }
    
    .membro-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .page-banner {
        padding: 80px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 1rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content h3 {
        font-size: 1.3rem;
    }
} 