/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */

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

:root {
    /* Cores do Brandboard */
    --color-primary: #242C42;     /* Azul navy - principal */
    --color-secondary: #A98850;   /* Dourado */
    --color-gold-light: #E8D49E;  /* Dourado claro */
    --color-gold-medium: #A7864E; /* Dourado médio */
    --color-beige-light: #F0EBE6; /* Bege claro */
    --color-beige-medium: #D4C8BA;/* Bege médio */
    --color-white: #FFFFFF;
    --color-text: #2C3E50;
    --color-text-light: #6C757D;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(36, 44, 66, 0.08);
    --shadow-md: 0 4px 16px rgba(36, 44, 66, 0.12);
    --shadow-lg: 0 8px 32px rgba(36, 44, 66, 0.16);
    --shadow-xl: 0 16px 48px rgba(36, 44, 66, 0.2);

    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background-color: var(--color-beige-light);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    color: var(--color-primary);
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

section {
    padding: var(--spacing-xl) 0;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: block;
    transition: var(--transition);
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

.logo:hover {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-list a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-gold-medium));
    color: var(--color-white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2233 100%);
    color: var(--color-white);
    padding: 10rem 0 8rem;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(169, 136, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-gold-light);
}

.hero-badge i {
    color: var(--color-secondary);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-gold-medium));
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(169, 136, 80, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(169, 136, 80, 0.4);
    border-color: var(--color-gold-light);
}

.btn-primary i {
    font-size: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.trust-badges .badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-badges .badge i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ==========================================
   SITUAÇÕES / ÁREAS DE ATUAÇÃO
   ========================================== */

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

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

.situacao-card {
    background: linear-gradient(135deg, var(--color-beige-light), var(--color-white));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.situacao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.situacao-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-gold-medium));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(169, 136, 80, 0.2);
}

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

.situacao-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.situacao-card ul {
    list-style: none;
}

.situacao-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
    font-size: 0.95rem;
}

.situacao-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
}

/* ==========================================
   CTA CENTER
   ========================================== */

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

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-secondary);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary i {
    font-size: 1.5rem;
}

/* ==========================================
   ATENDIMENTO / TIMELINE
   ========================================== */

.atendimento {
    background: var(--color-beige-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-gold-medium));
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-gold-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(169, 136, 80, 0.3);
    font-family: 'Crimson Text', serif;
}

.timeline-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.timeline-content p {
    color: var(--color-text);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* Destaque Box */
.destaque-box {
    background: linear-gradient(135deg, var(--color-primary), #1a2233);
    color: var(--color-white);
    padding: 2rem 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.destaque-box i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.destaque-box p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   DEFESA / CARDS COM NÚMERO
   ========================================== */

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

.defesa-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.defesa-card {
    background: var(--color-beige-light);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    overflow: hidden;
}

.defesa-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.defesa-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(169, 136, 80, 0.1);
    font-family: 'Crimson Text', serif;
    line-height: 1;
}

.defesa-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-gold-medium));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.defesa-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.defesa-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.defesa-card p {
    color: var(--color-text);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================
   CARROSSEL DEPOIMENTOS - ULTRA PREMIUM
   ========================================== */

.depoimentos {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2233 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(169, 136, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-rating-badge i {
    font-size: 2.5rem;
    color: #4285F4;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars-display {
    display: flex;
    gap: 0.3rem;
}

.stars-display i {
    color: #FFC107;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 80px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card-carousel {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(36, 44, 66, 0.2);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.depoimento-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #A98850, #E8D49E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(169, 136, 80, 0.3);
}

.depoimento-author-info strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.google-badge i {
    color: #4285F4;
    font-size: 1.2rem;
}

.depoimento-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.depoimento-stars i {
    color: #FFC107;
    font-size: 1.1rem;
}

.depoimento-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: white;
    font-size: 1.2rem;
}

.carousel-control:hover {
    background: linear-gradient(135deg, #A98850, #E8D49E);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active,
.indicator:hover {
    background: #A98850;
    transform: scale(1.3);
}

.google-link-premium {
    text-align: center;
    margin-top: 4rem;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #242C42;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 16px 48px rgba(36, 44, 66, 0.2);
    transition: all 0.3s;
}

.btn-google:hover {
    background: linear-gradient(135deg, #A98850, #E8D49E);
    color: white;
    transform: translateY(-4px);
}

/* ==========================================
   SOBRE - 2 COLUNAS ULTRA PREMIUM
   ========================================== */

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

.sobre-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 6rem;
    align-items: start;
}

.sobre-foto {
    position: sticky;
    top: 120px;
}

.foto-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(36, 44, 66, 0.2);
    margin-bottom: 2rem;
    border: 6px solid white;
    background: linear-gradient(135deg, #F0EBE6, #D4C8BA);
}

.foto-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
}

.foto-placeholder {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6C757D;
    text-align: center;
    padding: 3rem;
}

.foto-placeholder i {
    font-size: 5rem;
    color: #A98850;
    margin-bottom: 1.5rem;
}

.foto-badge {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, #242C42, #1a2233);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(36, 44, 66, 0.16);
}

.foto-badge i {
    font-size: 2.5rem;
    color: #A98850;
}

.foto-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.foto-badge span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.sobre-texto {
    padding: 2rem 0;
}

.sobre-intro {
    margin-bottom: 3rem;
}

.sobre-label {
    display: inline-block;
    color: #A98850;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.divider-gold {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #A98850, #E8D49E);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.sobre-texto h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.sobre-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 2rem 0;
    color: var(--color-text);
}

.sobre-texto p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.sobre-areas-premium {
    background: linear-gradient(135deg, #F0EBE6, white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 5px solid #A98850;
    box-shadow: 0 4px 16px rgba(36, 44, 66, 0.12);
}

.sobre-areas-premium h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    gap: 1rem;
}

.area-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s;
}

.area-item:hover {
    background: white;
    transform: translateX(8px);
}

.area-item i {
    color: #A98850;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.sobre-diferenciais-premium {
    margin: 3rem 0;
}

.sobre-diferenciais-premium h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.diferencial-premium {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(169, 136, 80, 0.1), rgba(232, 212, 158, 0.05));
    border-radius: 16px;
    transition: all 0.3s;
}

.diferencial-premium:hover {
    transform: translateX(12px);
    box-shadow: 0 4px 16px rgba(36, 44, 66, 0.12);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #A98850, #E8D49E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(169, 136, 80, 0.25);
}

.diferencial-icon i {
    font-size: 2rem;
    color: white;
}

.diferencial-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.diferencial-content p {
    margin: 0;
}

.sobre-quote {
    background: linear-gradient(135deg, #242C42, #1a2233);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    position: relative;
    box-shadow: 0 16px 48px rgba(36, 44, 66, 0.2);
}

.sobre-quote i {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 3rem;
    color: #A98850;
    opacity: 0.5;
}

.sobre-quote p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.9;
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
}

/* ==========================================
   FAQ
   ========================================== */

.faq {
    background: var(--color-beige-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-beige-light);
}

.faq-question i {
    color: var(--color-secondary);
    transition: var(--transition);
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* ==========================================
   CTA FINAL
   ========================================== */

.cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2233 100%);
    color: var(--color-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(169, 136, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-final p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-subtitle {
    font-weight: 600;
    font-size: 1.3rem !important;
    color: var(--color-gold-light) !important;
    margin-bottom: 2.5rem !important;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-badges .badge i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* ==========================================
   FOOTER - 4 COLUNAS EM 1 LINHA
   ========================================== */

.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.footer-logo img {
    height: 100px;
    width: auto;
    display: block;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.footer-horario li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-oab {
    color: var(--color-secondary);
    font-weight: 600;
}

/* ==========================================
   BOTÕES FLUTUANTES
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-gold-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   ANIMAÇÕES DE SCROLL
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   CENTRALIZAR CARDS (DESKTOP ONLY)
   ========================================== */

@media (min-width: 1025px) {
    /* Situações - centralizar cards 4 e 5 mantendo tamanho original */
    .situacoes-grid-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }

    .situacao-card {
        grid-column: span 2;
    }

    .situacao-card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .situacao-card:nth-child(5) {
        grid-column: 4 / 6;
    }

    /* Defesa - centralizar cards 4 e 5 mantendo tamanho original */
    .defesa-grid-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }

    .defesa-card {
        grid-column: span 2;
    }

    .defesa-card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .defesa-card:nth-child(5) {
        grid-column: 4 / 6;
    }
}

/* ==========================================
   RESPONSIVO
   ========================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-item {
        padding-left: 100px;
    }

    /* Sobre - 1 coluna no tablet */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .sobre-foto {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Footer - 2 colunas no tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: var(--color-white);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--color-beige-medium);
    }

    .nav-list a {
        display: block;
        padding: 1.2rem 0;
    }

    .btn-nav {
        margin-top: 1rem;
        text-align: center;
    }

    .hero {
        padding: 6rem 0 5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .situacoes-grid-wrapper,
    .defesa-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-marker {
        position: relative;
        margin-bottom: 1rem;
    }

    .destaque-box {
        flex-direction: column;
        padding: 2rem;
    }

    /* Carrossel mobile */
    .carousel-container {
        padding: 2rem 60px;
    }

    .carousel-control {
        width: 50px;
        height: 50px;
    }

    .depoimento-card-carousel {
        padding: 2rem;
    }

    /* ==========================================
       OTIMIZAÇÕES MOBILE - SEÇÃO DEPOIMENTOS
       ========================================== */

    /* 1. Centralizar estrelas no google-rating-badge */
    .google-rating-badge {
        flex-direction: column;
        text-align: center;
    }

    .stars-display {
        justify-content: center;
    }

    /* 2. Reordenar elementos no depoimento-card-carousel */
    .depoimento-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .depoimento-author-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 3. Diminuir fonte do depoimento-text */
    .depoimento-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* 4. Centralizar diferencial-premium */
    .diferencial-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    /* ==========================================
       OTIMIZAÇÕES MOBILE - FOOTER
       ========================================== */

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

    /* Footer - 1 coluna no mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Centralizar logo e conteúdo */
    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    /* Centralizar listas */
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
    }
}

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

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .situacao-card,
    .defesa-card {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .carousel-container {
        padding: 1.5rem 50px;
    }

    .google-rating-badge {
        flex-direction: column;
        text-align: center;
    }
}