:root {
    --bg-light: #FBF0EA;
    --terracotta: #A86B49;
    --charcoal: #1F1F24;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--bg-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 90px; /* Compensação para o header fixo */
}

.gold-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(1.5px) brightness(1.2);
    box-shadow: 0 0 18px 6px #d4af3744;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Sombra suave */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-content {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--charcoal);
    text-transform: none; /* Nome próprio mais elegante */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--terracotta);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--terracotta);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--terracotta);
}
nav a.active::after {
    width: 100%;
}

.btn-header {
    display: inline-block;
    background-color: var(--terracotta);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-header:hover {
    background-color: #8f5a3d;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-social a {
    color: var(--charcoal);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.header-social a:hover {
    color: var(--terracotta);
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--charcoal);
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 100px); /* Altura total menos header aproximado */
    padding: 0;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinha o conteúdo à direita do bloco esquerdo (perto do centro) */
    padding-right: 60px; /* Espaço entre texto e imagem */
    background-color: var(--bg-light);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(90deg, #a86b49 40%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: highlightTitle 2.5s cubic-bezier(0.4,0,0.2,1) 1;
}

@keyframes highlightTitle {
    0% { opacity: 0; transform: translateY(30px) scale(0.98); }
    60% { opacity: 1; transform: translateY(-6px) scale(1.04); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 400px;
    color: var(--charcoal);
    opacity: 0.8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--terracotta);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 107, 73, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 105, 67, 0.2);
}

.btn-whatsapp-pulse {
    background-color: #25D366 !important;
    position: relative;
    border: none;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    padding: 12px 30px;
    font-size: 0.95rem;
}

.btn-whatsapp-pulse:hover {
    background-color: #1da851 !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    animation: pulse-ripple 2s infinite;
}

@keyframes pulse-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hero Image & Arch */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: 0;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.7s;
}

.hero-shape {
    position: absolute;
    width: 550px;
    height: 550px;
    background-color: #EAC8B5;
    border-radius: 50% 50% 0 0;
    bottom: auto;
    top: 50%;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-img-full {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    animation: float 12s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.hero-img-box {
    position: relative;
    display: inline-block;
    /* Aplica animação diretamente no box para garantir movimento */
    animation: float 8s ease-in-out infinite;
}

.crp-box {
    position: absolute;
    bottom: 100px;
    right: 18px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--terracotta);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(168, 107, 73, 0.10), 0 0 18px 2px #d4af3744;
    z-index: 2;
    letter-spacing: 1px;
    border: 1px solid #eac8b5;
    backdrop-filter: blur(2px);
    transition: box-shadow 0.3s;
}

.crp-box:hover {
    box-shadow: 0 6px 24px rgba(168, 107, 73, 0.18);
}


@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-text-content {
    max-width: 500px;
    width: 100%;
    padding-left: 20px;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.3s;
    position: relative; /* Necessário para o badge absoluto */
}

/* Responsividade */
@media (max-width: 992px) {
    header {
        height: auto;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }
    
    .hero {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-text-content {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-title {
        font-size: 1.8rem; /* Ajuste proporcional para mobile */
        line-height: 1.3;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-right {
        height: auto;
        width: 100%;
        margin-top: 40px;
    }

    .hero-shape {
        width: 350px;
        height: 350px;
    }

    .mobile-menu-icon {
        display: block;
    }

    nav, .header-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        gap: 20px;
    }

    /* Estado Ativo do Menu */
    .header-content.active nav,
    .header-content.active .header-actions {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Floating Badge */
.hero-floating-badge {
    position: absolute;
    top: -40px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(169, 101, 72, 0.2);
    z-index: 1;
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-badge svg {
    width: 100%;
    height: 100%;
}

/* About Section (New Layout) */
#about-new {
    background-color: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.about-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-image-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: block;
}

.floating-badge {
    position: absolute;
    background: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
    white-space: nowrap;
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-exp {
    top: 35%;
    left: -40px;
    animation-delay: 0s;
}

.badge-exp i {
    color: #D4A017; /* Gold/Sun color */
    font-size: 1.1rem;
}

.badge-method {
    bottom: 40px;
    right: -30px;
    animation-delay: 2s;
}

.badge-method i {
    color: var(--terracotta);
    font-size: 1.1rem;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    width: 100%;
}

.eyebrow-badge {
    display: inline-block;
    background-color: #FFF8E1;
    color: #D4A017;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

#about-new h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.6rem;
    color: #1F1F24;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

#about-new p {
    font-family: 'DM Sans', sans-serif;
    color: #4A4A4A;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-final {
    font-family: var(--font-serif) !important;
    font-size: 1.3rem !important;
    color: var(--terracotta) !important;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 35px !important;
    opacity: 1 !important;
}

.about-btn {
    margin-top: 10px;
}

/* Services Section */
.services {
    background-color: #FAF9F6; /* Fundo claro solicitado */
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-family: var(--font-serif);
    color: #333D47;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-header p {
    font-family: var(--font-sans);
    color: #333D47;
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Ajustado para 4 itens */
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(51, 61, 71, 0.1);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    min-height: 160px;
}

.service-icon {
    font-size: 2.5rem;
    color: #A96548;
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card p {
    font-family: var(--font-sans);
    color: #333D47;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 700; /* Mais destaque para os textos curtos */
    transition: color 0.3s ease;
}

.service-card:hover {
    background-color: #A96548;
    border-color: #A96548;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(169, 101, 72, 0.15);
}

.service-card:hover .service-icon {
    color: #FFFFFF;
    transform: scale(1.1);
}

.service-card:hover p {
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-header h2 {
        font-size: 2rem;
    }
    .hero-floating-badge {
        top: -35px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 50px;
        height: 50px;
    }
    
    /* About Section Mobile (New) */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-col {
        order: -1;
        padding: 0 10px;
    }
    .badge-exp {
        left: -10px;
        top: 20%;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .badge-method {
        right: -10px;
        bottom: 20px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .about-text-col {
        align-items: center;
        text-align: center;
    }
    #about-new h2 {
        font-size: 2rem;
    }
}

/* Attendance Section (Formas de Atendimento) */
.attendance {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.attendance-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.attendance-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.attendance-img {
    display: block;
    width: 140%;
    max-width: none;
    margin-left: -20%;
    height: auto;
    object-fit: contain;
}

.attendance-right {
    flex: 1;
}

.attendance-title {
    font-family: var(--font-serif);
    color: #333D47;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.attendance-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.attendance-card {
    border: 1px solid #A96548;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.attendance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(169, 101, 72, 0.15);
    border-color: #8f5a3d;
}

.card-header {
    background-color: #A96548;
    color: #FFFFFF;
    padding: 0; /* Padding removido para o flex/absolute funcionarem perfeitamente */
    height: 45px; /* Altura fixa para garantir o slide uniforme */
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.default-text,
.hover-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 8px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-text {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%); /* Começa escondido embaixo */
    background-color: #8f5a3d; /* Um tom levemente mais escuro para destaque */
}

a.hover-text {
    text-decoration: none;
    color: #FFFFFF;
}

.card-header:hover .default-text {
    transform: translateY(-100%); /* Sobe e some */
}

.card-header:hover .hover-text {
    transform: translateY(0); /* Sobe e aparece */
}

.card-body {
    background-color: #F9F9F9;
    padding: 20px;
    color: #333D47;
}

.card-body p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .attendance-content {
        flex-direction: column;
    }
    .attendance-left, .attendance-right {
        width: 100%;
    }
    .attendance-left {
        margin-bottom: 30px;
    }
    .attendance-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .attendance-img {
        width: 100%;
        margin-left: 0;
    }
}

/* CTA Section */
.cta-section {
    background-color: #F5E1D2;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    color: #333D47;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-family: var(--font-sans);
    color: #333D47;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background-color: #A96548;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(169, 101, 72, 0.3);
}

.cta-btn:hover {
    background-color: #8f5a3d;
    transform: translateY(-2px);
}

.cta-section ul {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px;
    padding-left: 20px;
}

.cta-section li {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #333D47;
    margin-bottom: 10px;
}
.cta-section p {
    padding: 0 10px;
}


/* FAQ Section */
.faq-section {
    background-color: #FAF9F6;
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: var(--font-serif);
    color: #333D47;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 61, 71, 0.1);
}

.faq-item[open] {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    color: #333D47;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--terracotta);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(51, 61, 71, 0.05);
}

.faq-content {
    padding: 25px;
    font-family: var(--font-sans);
    color: #4A4A4A;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-content p {
    margin-bottom: 15px;
}

.faq-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-content li {
    margin-bottom: 8px;
}

.faq-content h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-content strong {
    color: #333D47;
}

/* Google Reviews Section */
.google-reviews {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-family: var(--font-serif);
    color: #333D47;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    color: #333D47;
}

.rating-score {
    font-weight: 700;
    font-size: 1.5rem;
}

.stars {
    color: #FFD700; /* Google Star Color */
    font-size: 1.2rem;
}

.total-reviews {
    font-size: 0.9rem;
    opacity: 0.7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.reviewer-info h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin: 0;
    color: #333D47;
    font-weight: 700;
}

.review-date {
    font-size: 0.8rem;
    color: #757575;
}

.google-icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.review-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4A4A4A;
}

.reviews-action {
    text-align: center;
}

.btn-google {
    display: inline-block;
    border: 1px solid #e0e0e0;
    background-color: #FFF;
    color: #333D47;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 250px;
}

.footer-logo span {
    font-family: var(--font-sans);
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

.footer-info {
    flex: 1;
    min-width: 280px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-info h3, .footer-social h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--terracotta);
}

.footer-info p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-info i {
    color: var(--terracotta);
    margin-top: 4px;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--terracotta);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Ocultar marca d'água e toolbar de edição do Elfsight */
.eapps-link,
.eapps-widget-toolbar {
    display: none !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse-shadow 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes whatsapp-pulse-shadow {
    0% {
        box-shadow: 2px 2px 3px #999, 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 2px 2px 3px #999, 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 2px 2px 3px #999, 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Classes para Animação JS (Scroll Reveal) */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* 404 Page Animations */
.error-content > * {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.error-content h1 { animation-delay: 0.1s; }
.error-content h2 { animation-delay: 0.3s; }
.error-content p { animation-delay: 0.5s; }
.error-content .btn-cta { animation-delay: 0.7s; }