/* --- Cores e Tipografia --- */
:root {
    /* Tema Escuro (padrão) */
    --primary: #0A141A;
    --secondary: #B39157;
    --dark: #0A141A;
    --light: #1a1a1a;
    --text: #ffffff;
    --gray: #a0a0a0;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --border-color: #2d2d2d;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-accent: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --letter-spacing: -0.02em;
    --line-height: 1.6;
    --gradient-primary: linear-gradient(135deg, #0A141A 0%, #0A141A 100%);
    --gradient-secondary: linear-gradient(135deg, #B39157 0%, #8B6B3D 100%);
    --gradient-dark: linear-gradient(135deg, #0A141A 0%, #0A141A 100%);
}

[data-theme="light"] {
    --primary: #0A141A;
    --secondary: #B39157;
    --dark: #0A141A;
    --light: #f8f9fa;
    --text: #333333;
    --gray: #6c757d;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-color: #e9ecef;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: var(--line-height);
    overflow-x: hidden;
    background: var(--bg-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Header --- */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    display: block;
    width: 300px;
    height: 80px;
    background: url('../img/LogoReta.png') no-repeat center/contain;
    text-indent: -9999px;
}

.navbar {
    display: flex;
    align-items: center;

}

.navbar ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-right: 4rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.navbar a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.navbar a:hover:after {
    width: 100%;
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('../img/hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    z-index: 2;
    padding: 0;
    background-size: 150% 150%;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #B39157 0%, #8B6B3D 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(179, 145, 87, 0.3);
    text-decoration: none;
    font-family: var(--font-accent);
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 145, 87, 0.4);
    background: linear-gradient(135deg, #8B6B3D 0%, #B39157 100%);
}

.hero .btn:active {
    transform: translateY(0);
}

.hero .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero .btn:hover i {
    transform: scale(1.1);
}

/* Ajuste responsivo para telas menores */
@media (max-width: 768px) {
    .hero {
        background-size: 200% 200%;
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -40px;
    }
}

@media (max-width: 576px) {
    .hero {
        background-size: 250% 250%;
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -20px;
    }
}

/* --- Áreas Section --- */
.areas {
    padding: var(--section-padding);
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 41, 53, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
    z-index: 1;
}

.areas h2 {
    font-size: 2.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.areas h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 20px auto 0;
    border-radius: 2px;
}

[data-theme="dark"] .areas h2 {
    color: var(--text);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.area-card {
    background: var(--card-bg);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}

.area-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.area-card:hover .area-icon i {
    color: var(--primary);
}

.area-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.area-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 400;
}

/* --- Problemas Section --- */
.problemas {
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problemas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 41, 53, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
    z-index: 1;
}

.problemas h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.problemas p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.problemas-col {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.problemas-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problemas-col ul {
    list-style: none;
    text-align: left;
}

.problemas-col li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

.problemas-col li:before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.problemas-cta {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.problemas-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.problemas-cta p strong {
    color: var(--primary);
}

/* --- Compromisso Section --- */
.compromisso {
    padding: var(--section-padding);
    background: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compromisso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 41, 53, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
    z-index: 1;
}

.compromisso h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .compromisso h2 {
    color: var(--text);
}

.compromisso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.compromisso-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.compromisso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.compromisso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.compromisso-card:hover::before {
    transform: scaleX(1);
}

.compromisso-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.compromisso-card:hover .compromisso-icon {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}

.compromisso-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.compromisso-card:hover .compromisso-icon i {
    color: var(--primary);
}

.compromisso-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.compromisso-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 400;
}

/* --- Sobre Section --- */
.sobre {
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sobre h2 {
    font-size: 2.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.sobre-text {
    text-align: left;
    padding: 0;
    margin-top: 0;
}

.sobre-text h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

.sobre-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text);
}

.sobre-text strong {
    color: var(--primary);
    font-weight: 600;
}

.sobre-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sobre-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gradient-secondary);
    border-radius: 12px;
    z-index: -1;
}

.sobre-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.sobre-img img:hover {
    transform: translate(-5px, -5px);
}

/* --- Depoimentos Section --- */
.depoimentos {
    padding: var(--section-padding);
    background: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 41, 53, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
    z-index: 1;
}

.depoimentos h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .depoimentos h2 {
    color: var(--text);
}

.avaliacao-google {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.avaliacao-google p {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.avaliacao-google strong {
    color: var(--secondary);
    font-size: 1.4rem;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.google-rating i {
    color: #0A141A;
    font-size: 1.5rem;
}

.google-rating span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.depoimento-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.depoimento-card:hover::before {
    transform: scaleX(1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.depoimento-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
    flex-shrink: 0;
    position: relative;
}

.depoimento-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(216, 163, 72, 0.2);
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.depoimento-card:hover .depoimento-avatar img {
    transform: scale(1.1);
}

.cliente-info {
    flex-grow: 1;
}

.cliente-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.data {
    color: var(--gray);
    font-size: 0.9rem;
}

.depoimento-rating {
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    gap: 2px;
}

.depoimento-rating i {
    font-size: 1.1rem;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
}

.depoimento-texto::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: 'Georgia', serif;
}

.google-maps-link {
    margin: 40px auto;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.google-maps-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.google-maps-link p {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
}

.google-maps-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 12px 25px;
    background: linear-gradient(135deg, #0A141A 0%, #0A141A 100%);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.google-maps-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 20, 26, 0.4);
    background: linear-gradient(135deg, #0A141A 0%, #0A141A 100%);
}

.google-maps-link .btn:active {
    transform: translateY(0);
}

.google-maps-link .btn i {
    transition: var(--transition);
}

.google-maps-link .btn:hover i {
    transform: scale(1.1);
}

[data-theme="dark"] .google-maps-link {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .google-maps-link a {
    background: var(--secondary);
    color: var(--primary);
}

[data-theme="dark"] .google-maps-link a:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .google-maps-link {
        margin: 30px 20px;
        padding: 25px;
    }

    .google-maps-link p {
        font-size: 1.2rem;
    }

    .google-maps-link a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .google-maps-link {
        margin: 20px 15px;
        padding: 20px;
    }

    .google-maps-link p {
        font-size: 1.1rem;
    }

    .google-maps-link a {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

/* --- Por que Escolher Section --- */
.por-que-escolher {
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--light);
}

.por-que-escolher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 41, 53, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
    z-index: 1;
}

.por-que-escolher h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.diferencial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}

.diferencial-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon i {
    color: var(--primary);
}

.diferencial-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.diferencial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 400;
}

/* --- Dúvidas Section --- */
.duvidas {
    padding: var(--section-padding);
    background: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.duvidas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 41, 53, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
    z-index: 1;
}

.duvidas h2 {
    font-size: 2.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.duvidas-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.duvida-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.duvida-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.duvida-header {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.duvida-header h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.duvida-header i {
    color: var(--secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.duvida-item.active .duvida-header i {
    transform: rotate(180deg);
}

.duvida-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: white;
}

.duvida-item.active .duvida-content {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.duvida-content p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* --- WhatsApp CTA Section --- */
.whatsapp-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--primary);
    color: white;
    position: relative;
}

.whatsapp-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.whatsapp-cta .cta-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.whatsapp-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.whatsapp-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

[data-theme="dark"] .whatsapp-cta {
    background: var(--bg-color);
    color: var(--text);
}

@media (max-width: 768px) {
    .whatsapp-cta {
        padding: 60px 0;
    }

    .whatsapp-cta .cta-image {
        max-width: 150px;
    }

    .whatsapp-cta h2 {
        font-size: 2.2rem;
    }

    .whatsapp-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-cta {
        padding: 50px 0;
    }

    .whatsapp-cta .cta-image {
        max-width: 125px;
    }

    .whatsapp-cta h2 {
        font-size: 2rem;
    }

    .whatsapp-cta p {
        font-size: 1rem;
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background-color: var(--bg-color);
    color: var(--text);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: white;
}

.footer a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-cta {
        padding: 60px 0;
    }

    .whatsapp-cta h2 {
        font-size: 2.2rem;
    }

    .whatsapp-cta p {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .whatsapp-cta {
        padding: 50px 0;
    }

    .whatsapp-cta h2 {
        font-size: 2rem;
    }

    .whatsapp-cta p {
        font-size: 1rem;
    }
}

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: var(--gradient-secondary);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(179, 145, 87, 0.3);
    text-decoration: none;
    font-family: var(--font-accent);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 145, 87, 0.4);
    background: linear-gradient(135deg, #8B6B3D 0%, #B39157 100%);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

/* Botão WhatsApp */
.whatsapp-cta .btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta .btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Botão Google Maps */
.google-maps-link .btn {
    background: linear-gradient(135deg, #0A141A 0%, #0A141A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 20, 26, 0.3);
}

.google-maps-link .btn:hover {
    background: linear-gradient(135deg, #0A141A 0%, #0A141A 100%);
    box-shadow: 0 6px 20px rgba(10, 20, 26, 0.4);
}

/* Botão WhatsApp Flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* --- Responsividade --- */
@media (max-width: 1400px) {
    :root {
        --container-width: 1140px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .hero h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
        --section-padding: 80px 0;
    }

    .hero h2 {
        font-size: 3rem;
    }
    
    .hero h3 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .sobre-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 0 1rem;
        height: 70px;
    }

    .logo {
        width: 200px;
        height: 60px;
    }

    .menu-mobile {
        display: block;
        font-size: 1.5rem;
    }

    .navbar ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--gradient-primary);
        padding: 20px;
        box-shadow: var(--card-shadow);
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar a {
        font-size: 1rem;
        padding: 10px 0;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-content {
        padding: 1rem;
        margin-top: 0;
    }

    .hero h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

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

    .hero .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .areas-grid,
    .problemas-grid,
    .compromisso-grid,
    .depoimentos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 1rem;
    }

    .area-card,
    .problemas-col,
    .compromisso-card,
    .depoimento-card,
    .diferencial-card {
        padding: 25px 20px;
    }

    .area-icon,
    .compromisso-icon,
    .diferencial-icon {
        width: 60px;
        height: 60px;
    }

    .area-icon i,
    .compromisso-icon i,
    .diferencial-icon i {
        font-size: 1.5rem;
    }

    .area-card h3,
    .compromisso-card h3,
    .diferencial-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .area-card p,
    .compromisso-card p,
    .diferencial-card p {
        font-size: 1rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 1rem;
    }

    .sobre-img {
        order: -1;
    }

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

    .sobre-text h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .sobre-text p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .sobre-img img {
        max-width: 100%;
        height: auto;
    }

    .depoimento-card {
        padding: 25px 20px;
    }

    .depoimento-avatar {
        width: 50px;
        height: 50px;
    }

    .cliente-info h3 {
        font-size: 1.1rem;
    }

    .depoimento-texto {
        font-size: 0.95rem;
    }

    .duvida-item {
        margin-bottom: 15px;
    }

    .duvida-header {
        padding: 15px 20px;
    }

    .duvida-header h3 {
        font-size: 1.1rem;
    }

    .duvida-content {
        padding: 0 20px;
    }

    .duvida-item.active .duvida-content {
        padding: 0 20px 20px;
    }

    .duvida-content p {
        font-size: 0.95rem;
    }

    .whatsapp-cta {
        padding: 40px 0;
    }

    .whatsapp-cta .cta-image {
        max-width: 120px;
        margin-bottom: 20px;
    }

    .whatsapp-cta h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .whatsapp-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .whatsapp-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 15px;
        right: 15px;
    }

    .accessibility-menu {
        bottom: 80px;
        right: 20px;
    }

    .accessibility-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .accessibility-panel {
        min-width: 160px;
        padding: 10px;
    }

    .accessibility-option {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .reviews-header {
        margin: 25px 15px;
        padding: 20px;
    }

    .reviews-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 0 0.8rem;
    }

    .logo {
        width: 180px;
        height: 50px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h3 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .area-card,
    .problemas-col,
    .compromisso-card,
    .depoimento-card,
    .diferencial-card {
        padding: 20px 15px;
    }

    .area-icon,
    .compromisso-icon,
    .diferencial-icon {
        width: 50px;
        height: 50px;
    }

    .area-icon i,
    .compromisso-icon i,
    .diferencial-icon i {
        font-size: 1.3rem;
    }

    .area-card h3,
    .compromisso-card h3,
    .diferencial-card h3 {
        font-size: 1.2rem;
    }

    .area-card p,
    .compromisso-card p,
    .diferencial-card p {
        font-size: 0.95rem;
    }

    .sobre-text h3 {
        font-size: 1.3rem;
    }

    .sobre-text p {
        font-size: 0.95rem;
    }

    .depoimento-card {
        padding: 20px 15px;
    }

    .depoimento-avatar {
        width: 45px;
        height: 45px;
    }

    .cliente-info h3 {
        font-size: 1rem;
    }

    .depoimento-texto {
        font-size: 0.9rem;
    }

    .duvida-header {
        padding: 12px 15px;
    }

    .duvida-header h3 {
        font-size: 1rem;
    }

    .duvida-content {
        padding: 0 15px;
    }

    .duvida-item.active .duvida-content {
        padding: 0 15px 15px;
    }

    .duvida-content p {
        font-size: 0.9rem;
    }

    .whatsapp-cta {
        padding: 30px 0;
    }

    .whatsapp-cta .cta-image {
        max-width: 100px;
    }

    .whatsapp-cta h2 {
        font-size: 1.6rem;
    }

    .whatsapp-cta p {
        font-size: 0.95rem;
    }

    .whatsapp-cta .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 15px 0;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 12px;
        right: 12px;
    }

    .accessibility-menu {
        bottom: 70px;
        right: 15px;
    }

    .accessibility-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .accessibility-panel {
        min-width: 140px;
        padding: 6px;
    }

    .accessibility-option {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    .reviews-header {
        margin: 15px 8px;
        padding: 12px;
    }

    .reviews-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 0.8rem;
    }

    .header {
        padding: 0 0.6rem;
    }

    .logo {
        width: 160px;
        height: 45px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero h3 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .area-card,
    .problemas-col,
    .compromisso-card,
    .depoimento-card,
    .diferencial-card {
        padding: 15px 12px;
    }

    .area-icon,
    .compromisso-icon,
    .diferencial-icon {
        width: 45px;
        height: 45px;
    }

    .area-icon i,
    .compromisso-icon i,
    .diferencial-icon i {
        font-size: 1.2rem;
    }

    .area-card h3,
    .compromisso-card h3,
    .diferencial-card h3 {
        font-size: 1.1rem;
    }

    .area-card p,
    .compromisso-card p,
    .diferencial-card p {
        font-size: 0.9rem;
    }

    .sobre-text h3 {
        font-size: 1.2rem;
    }

    .sobre-text p {
        font-size: 0.9rem;
    }

    .depoimento-card {
        padding: 15px 12px;
    }

    .depoimento-avatar {
        width: 40px;
        height: 40px;
    }

    .cliente-info h3 {
        font-size: 0.95rem;
    }

    .depoimento-texto {
        font-size: 0.85rem;
    }

    .duvida-header {
        padding: 10px 12px;
    }

    .duvida-header h3 {
        font-size: 0.95rem;
    }

    .duvida-content {
        padding: 0 12px;
    }

    .duvida-item.active .duvida-content {
        padding: 0 12px 12px;
    }

    .duvida-content p {
        font-size: 0.85rem;
    }

    .whatsapp-cta {
        padding: 25px 0;
    }

    .whatsapp-cta .cta-image {
        max-width: 90px;
    }

    .whatsapp-cta h2 {
        font-size: 1.6rem;
    }

    .whatsapp-cta p {
        font-size: 0.9rem;
    }

    .whatsapp-cta .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 12px 0;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .whatsapp-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: 10px;
        right: 10px;
    }

    .accessibility-menu {
        bottom: 65px;
        right: 12px;
    }

    .accessibility-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .accessibility-panel {
        min-width: 140px;
        padding: 6px;
    }

    .accessibility-option {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    .reviews-header {
        margin: 15px 8px;
        padding: 12px;
    }

    .reviews-header p {
        font-size: 0.95rem;
    }
}

/* --- Menu de Acessibilidade --- */
.accessibility-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
}

.accessibility-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.accessibility-toggle:hover {
    transform: scale(1.1);
    background: var(--gradient-secondary);
    color: var(--primary);
}

.accessibility-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px var(--shadow-color);
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
    border: 1px solid var(--border-color);
}

.accessibility-panel.active {
    display: flex;
}

.accessibility-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    width: 100%;
    text-align: left;
}

.accessibility-option:hover {
    background: var(--primary);
    color: white;
}

.accessibility-option i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.accessibility-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Ajustes para tema escuro */
[data-theme="dark"] .accessibility-option {
    color: var(--text);
}

[data-theme="dark"] .accessibility-option:hover {
    background: var(--light);
    color: var(--primary);
}

/* Ajustes para modo de alto contraste */
.high-contrast .accessibility-option {
    border: 2px solid var(--primary);
    background: var(--bg-color);
}

.high-contrast .accessibility-option:hover {
    background: var(--primary);
    color: white;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

/* Ajustes para tema escuro */
[data-theme="dark"] .header {
    background: transparent;
}

[data-theme="dark"] .header.scrolled {
    background: var(--gradient-primary);
}

[data-theme="dark"] .navbar ul {
    background: transparent;
}

[data-theme="dark"] .navbar a {
    color: var(--text);
}

[data-theme="dark"] .area-card,
[data-theme="dark"] .problemas-col,
[data-theme="dark"] .compromisso-card,
[data-theme="dark"] .depoimento-card,
[data-theme="dark"] .diferencial-card,
[data-theme="dark"] .duvida-item {
    background: var(--card-bg);
    color: var(--text);
}

[data-theme="dark"] .area-card h3,
[data-theme="dark"] .problemas-col h3,
[data-theme="dark"] .compromisso-card h3,
[data-theme="dark"] .depoimento-card h3,
[data-theme="dark"] .diferencial-card h3,
[data-theme="dark"] .duvida-item h3 {
    color: var(--text);
}

[data-theme="dark"] .area-card p,
[data-theme="dark"] .problemas-col p,
[data-theme="dark"] .compromisso-card p,
[data-theme="dark"] .depoimento-card p,
[data-theme="dark"] .diferencial-card p,
[data-theme="dark"] .duvida-item p {
    color: var(--text);
}

[data-theme="dark"] .area-icon,
[data-theme="dark"] .compromisso-icon,
[data-theme="dark"] .diferencial-icon {
    background: var(--gradient-secondary);
}

[data-theme="dark"] .area-icon i,
[data-theme="dark"] .compromisso-icon i,
[data-theme="dark"] .diferencial-icon i {
    color: var(--primary);
}

[data-theme="dark"] .duvida-header {
    background: var(--card-bg);
}

[data-theme="dark"] .duvida-content {
    background: var(--card-bg);
}

[data-theme="dark"] .google-rating {
    background: var(--card-bg);
}

[data-theme="dark"] .google-rating span {
    color: var(--text);
}

[data-theme="dark"] .accessibility-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .accessibility-option {
    color: var(--text);
}

[data-theme="dark"] .accessibility-option:hover {
    background: var(--light);
    color: var(--primary);
}

/* Ajustes específicos para seções no tema escuro */
[data-theme="dark"] .problemas,
[data-theme="dark"] .sobre {
    background: var(--bg-color);
}

[data-theme="dark"] .problemas::before,
[data-theme="dark"] .sobre::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(216, 163, 72, 0.05) 100%);
}

[data-theme="dark"] .problemas h2,
[data-theme="dark"] .sobre h2,
[data-theme="dark"] .problemas h3,
[data-theme="dark"] .sobre h3 {
    color: var(--text);
}

[data-theme="dark"] .problemas p,
[data-theme="dark"] .sobre p {
    color: var(--text);
}

[data-theme="dark"] .problemas-col {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .problemas-col li {
    color: var(--text);
}

[data-theme="dark"] .problemas-col li:before {
    color: var(--secondary);
}

[data-theme="dark"] .sobre-content {
    background: var(--bg-color);
}

[data-theme="dark"] .sobre-text {
    background: var(--bg-color);
}

[data-theme="dark"] .sobre-img {
    background: var(--bg-color);
}

[data-theme="dark"] .sobre-img::before {
    border-color: var(--gradient-secondary);
}

[data-theme="dark"] .sobre-img img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .accessibility-menu {
        bottom: 90px;
        right: 20px;
    }

    .accessibility-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .accessibility-panel {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .accessibility-menu {
        bottom: 80px;
        right: 15px;
    }

    .accessibility-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .accessibility-panel {
        min-width: 160px;
    }
}

/* Modo de Alto Contraste */
.high-contrast {
    --primary: #000000;
    --secondary: #ffffff;
    --dark: #000000;
    --light: #ffffff;
    --text: #ffffff;
    --gray: #ffffff;
    --bg-color: #000000;
    --card-bg: #000000;
    --shadow-color: rgba(255, 255, 255, 0.2);
    --border-color: #ffffff;
}

.high-contrast * {
    background-color: var(--bg-color) !important;
    color: var(--text) !important;
    border-color: var(--border-color) !important;
}

.high-contrast .btn,
.high-contrast .accessibility-btn,
.high-contrast .theme-toggle {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    border: 2px solid var(--text) !important;
}

.high-contrast .btn:hover,
.high-contrast .accessibility-btn:hover,
.high-contrast .theme-toggle:hover {
    background: var(--text) !important;
    color: var(--primary) !important;
}

.high-contrast .area-card,
.high-contrast .problemas-col,
.high-contrast .compromisso-card,
.high-contrast .depoimento-card,
.high-contrast .diferencial-card,
.high-contrast .duvida-item {
    border: 2px solid var(--text) !important;
}

.high-contrast .area-icon,
.high-contrast .compromisso-icon,
.high-contrast .diferencial-icon {
    background: var(--secondary) !important;
}

.high-contrast .area-icon i,
.high-contrast .compromisso-icon i,
.high-contrast .diferencial-icon i {
    color: var(--primary) !important;
}

.high-contrast .navbar a {
    color: var(--text) !important;
    border-bottom: 2px solid var(--text) !important;
}

.high-contrast .navbar a:hover {
    color: var(--secondary) !important;
}

.high-contrast .whatsapp-float {
    background-color: var(--secondary) !important;
    color: var(--primary) !important;
    border: 2px solid var(--text) !important;
}

.high-contrast .whatsapp-float i {
    color: var(--primary) !important;
}

.high-contrast .whatsapp-float:hover {
    background-color: var(--text) !important;
}

.high-contrast .google-rating {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}

.high-contrast .google-rating i {
    color: var(--primary) !important;
}

.high-contrast .google-rating span {
    color: var(--primary) !important;
}

.high-contrast .depoimento-avatar {
    border: 3px solid var(--text) !important;
}

.high-contrast .depoimento-avatar::after {
    border-color: var(--text) !important;
}

.high-contrast .depoimento-texto::before {
    color: var(--text) !important;
}

.high-contrast .duvida-header {
    border-bottom: 2px solid var(--text) !important;
}

.high-contrast .duvida-header i {
    color: var(--text) !important;
}

.high-contrast .duvida-item.active .duvida-header i {
    color: var(--secondary) !important;
}

/* --- Strong Elements --- */
[data-theme="dark"] .problemas-cta p strong,
[data-theme="dark"] .sobre-text strong,
[data-theme="dark"] .area-card strong,
[data-theme="dark"] .problemas-col strong,
[data-theme="dark"] .compromisso-card strong,
[data-theme="dark"] .depoimento-card strong,
[data-theme="dark"] .diferencial-card strong,
[data-theme="dark"] .duvida-item strong {
    color: var(--text);
}

/* --- WhatsApp CTA Section --- */
[data-theme="dark"] .whatsapp-cta {
    background: var(--bg-color);
    color: var(--text);
}

/* --- Footer --- */
[data-theme="dark"] .footer {
    background-color: var(--bg-color);
    color: var(--text);
}

[data-theme="dark"] .footer p {
    color: var(--text);
}

[data-theme="dark"] .footer a {
    color: var(--secondary);
}

[data-theme="dark"] .footer a:hover {
    color: var(--text);
}

[data-theme="dark"] .duvidas h2,
[data-theme="dark"] .por-que-escolher h2 {
    color: var(--text);
}

[data-theme="dark"] .duvida-header h3 {
    color: var(--text);
}

[data-theme="dark"] .diferencial-card h3 {
    color: var(--text);
}

.reviews-header {
    margin: 40px auto;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.reviews-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.reviews-header:hover::before {
    transform: scaleX(1);
}

.reviews-header p {
    font-size: 1.4rem;
    color: var(--text);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.reviews-header p::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    margin: 15px auto 0;
    border-radius: 2px;
    transition: var(--transition);
}

.reviews-header:hover p::after {
    width: 100px;
}

[data-theme="dark"] .reviews-header {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .reviews-header {
        margin: 30px 20px;
        padding: 25px;
    }

    .reviews-header p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .reviews-header {
        margin: 20px 15px;
        padding: 20px;
    }

    .reviews-header p {
        font-size: 1.1rem;
    }
}