/* ===========================
   RESET & VARIABLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #000000;
    --dourado: #daa520;
    --dourado-claro: #f4d03f;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #6c757d;
    --cinza-escuro: #212529;
    --cinza-bg: #fafafa;

    --gradient-gold: linear-gradient(135deg, #daa520 0%, #f4d03f 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-gold-radial: radial-gradient(circle at top left, #daa520, #f4d03f);

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(218, 165, 32, 0.25);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--cinza-escuro);
    background-color: var(--branco);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===========================
   DARK MODE
   =========================== */
body.dark-mode {
    --preto: #ffffff;
    --branco: #1a1a1a;
    --cinza-claro: #2d2d2d;
    --cinza-medio: #a0a0a0;
    --cinza-escuro: #e0e0e0;
    --cinza-bg: #242424;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6);

    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

body.dark-mode .navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.dark-mode .footer {
    background: #0d0d0d;
}

body.dark-mode .footer-link-plain,
body.dark-mode .footer-link-plain:hover,
body.dark-mode .footer-link-plain:focus,
body.dark-mode .footer-link-plain:active,
body.dark-mode .footer-link-plain:visited {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

body.dark-mode .contato-cta {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

body.dark-mode .cta-box {
    color: var(--cinza-escuro);
}

body.dark-mode .cta-box h3 {
    color: var(--dourado);
}

body.dark-mode .cta-box p {
    color: var(--cinza-escuro);
}

body.dark-mode .benefit-item {
    color: var(--cinza-escuro);
}

body.dark-mode .benefit-item svg {
    color: var(--dourado);
}

body.dark-mode .nav-menu {
    background: rgba(26, 26, 26, 0.98);
}

body.dark-mode .btn-nav {
    background: var(--dourado);
    color: var(--preto);
}

body.dark-mode .btn-nav:hover {
    background: var(--dourado-claro);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--dourado);
    outline-offset: 3px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    background: var(--preto);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

/* ===========================
   NAVBAR - PREMIUM
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.navbar.scrolled {
    padding: 16px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--dourado);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.theme-toggle:hover {
    background: var(--dourado);
    transform: rotate(15deg);
}

.theme-toggle svg {
    color: var(--dourado);
    transition: var(--transition);
}

.theme-toggle:hover svg {
    color: var(--preto);
}

.sun-icon {
    position: absolute;
}

.moon-icon {
    position: absolute;
    opacity: 0;
}

body.dark-mode .sun-icon {
    opacity: 0;
}

body.dark-mode .moon-icon {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--cinza-escuro);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dourado);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-gold);
    color: var(--preto);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--preto);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   HERO - IMPACTANTE
   =========================== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%);
    color: var(--dourado);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--preto);
    letter-spacing: -1px;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--cinza-medio);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--preto);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(218, 165, 32, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--preto);
    border-color: var(--cinza-escuro);
}

.btn-outline:hover {
    background: var(--preto);
    color: var(--branco);
    border-color: var(--preto);
}

.hero-stats {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--cinza-medio);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--dourado), transparent);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 700px;
    background: transparent;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.image-placeholder {
    width: 92%;
    height: 92%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dourado);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--preto);
    margin-top: 8px;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--cinza-medio);
    line-height: 1.8;
    max-width: 700px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center .section-tag {
    justify-content: center;
}

.section-header-center .section-tag::before {
    order: -1;
}

.section-header-center .section-tag::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-header-center .section-description {
    margin: 0 auto;
}

/* ===========================
   SOBRE - PREMIUM
   =========================== */
.sobre {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 700px;
    background: var(--cinza-bg);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.image-placeholder-sobre {
    width: 92%;
    height: 92%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.sobre-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.sobre-info h3 {
    font-size: 2rem;
    color: var(--preto);
    margin-bottom: 20px;
    margin-top: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sobre-lead {
    font-size: 1.05rem;
    color: var(--cinza-medio);
    line-height: 1.9;
    margin-bottom: 20px;
}

.sobre-text {
    position: relative;
}

.sobre-text p {
    font-size: 1rem;
    color: var(--cinza-escuro);
    line-height: 1.9;
    margin-bottom: 20px;
}

.sobre-text strong {
    color: var(--preto);
    font-weight: 700;
}

/* ===========================
   QUEM SOMOS - ADVOGADA
   =========================== */
.quem-somos {
    padding: 100px 0;
    background: var(--cinza-bg);
    position: relative;
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quem-somos-image {
    position: relative;
}

.quem-somos-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.quem-somos-text {
    position: relative;
}

.quem-somos-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 24px;
    line-height: 1.8;
}

.quem-somos-text p {
    font-size: 1rem;
    color: var(--cinza-escuro);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===========================
   SERVIÇOS - PREMIUM GRID
   =========================== */
.servicos {
    padding: 100px 0;
    background: var(--cinza-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--branco);
    padding: 48px 36px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--dourado);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--preto);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--preto);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    line-height: 1.8;
}

/* ===========================
   COMO FUNCIONA - CARDS
   =========================== */
.como-funciona {
    padding: 100px 0;
    background: var(--branco);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-card {
    background: var(--cinza-bg);
    padding: 48px 36px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--branco);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--preto);
    margin-bottom: 24px;
}

.process-card h3 {
    font-size: 1.3rem;
    color: var(--preto);
    margin-bottom: 16px;
    font-weight: 700;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    line-height: 1.8;
    margin-bottom: 24px;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--cinza-escuro);
}

.step-features li svg {
    flex-shrink: 0;
    color: var(--dourado);
    width: 18px;
    height: 18px;
}

/* ===========================
   DIFERENCIAIS - PREMIUM
   =========================== */
.diferenciais {
    padding: 100px 0;
    background: var(--cinza-bg);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.diferencial-item {
    text-align: center;
    padding: 48px 32px;
    background: var(--branco);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--preto);
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    position: relative;
}

.diferencial-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--dourado);
    opacity: 0;
    transition: var(--transition);
}

.diferencial-item:hover .diferencial-icon::before {
    opacity: 0.3;
    inset: -16px;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    color: var(--preto);
    margin-bottom: 16px;
    font-weight: 700;
}

.diferencial-item p {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    line-height: 1.8;
}

/* ===========================
   DEPOIMENTOS - PREMIUM
   =========================== */
.depoimentos {
    padding: 100px 0;
    background: var(--branco);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.testimonial-card {
    background: var(--cinza-bg);
    padding: 48px 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(218, 165, 32, 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--branco);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    background: var(--gradient-gold);
    color: var(--preto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--preto);
    margin-bottom: 8px;
    font-weight: 700;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--dourado);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--cinza-escuro);
    line-height: 1.9;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-case {
    font-size: 0.85rem;
    color: var(--dourado);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--dourado);
    width: 36px;
    border-radius: 6px;
}

/* ===========================
   FAQ - PREMIUM
   =========================== */
.faq {
    padding: 100px 0;
    background: var(--cinza-bg);
}

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

.faq-item {
    background: var(--branco);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

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

.faq-item.active {
    border-color: var(--dourado);
}

.faq-question {
    width: 100%;
    padding: 28px 36px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--preto);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--dourado);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--dourado);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.faq-answer p {
    padding: 0 36px 32px;
    font-size: 1rem;
    color: var(--cinza-medio);
    line-height: 1.9;
}

/* ===========================
   CONTATO - PREMIUM
   =========================== */
.contato {
    padding: 100px 0;
    background: var(--branco);
    overflow-x: hidden;
}

.contato .container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 32px;
    box-sizing: border-box;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.info-card {
    background: var(--cinza-bg);
    padding: 36px;
    margin: 0;
    border-radius: 20px;
    display: flex;
    gap: 28px;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--dourado);
    background: var(--branco);
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto);
    box-shadow: var(--shadow-sm);
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--preto);
    margin-bottom: 6px;
    font-weight: 700;
    text-align: left;
}

.info-content p {
    font-size: 1rem;
    color: var(--cinza-medio);
    margin-bottom: 0;
    line-height: 1.7;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.contato-cta {
    background: var(--gradient-dark);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.cta-box {
    padding: 60px;
    color: var(--branco);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dourado);
    font-weight: 800;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.05rem;
    margin-bottom: 36px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 44px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.benefit-item svg {
    flex-shrink: 0;
    color: var(--dourado);
}

.btn-large {
    padding: 20px 44px;
    font-size: 1.05rem;
}

/* CTA Rodapé */
.footer-cta-overlay {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 100;
    background: transparent;
    padding: 0px 0;
}

.footer-cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--branco);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    z-index: 101;
}

.footer-cta-box h3 {
    font-size: 2rem;
    color: var(--preto);
    margin-bottom: 16px;
    font-weight: 800;
}

.footer-cta-box p {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer-cta-box .btn-whatsapp-section {
    background: var(--dourado);
    color: var(--preto);
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.footer-cta-box .btn-whatsapp-section:hover {
    background: var(--dourado-claro);
    color: var(--preto);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
    transform: translateY(-2px);
}

/* ===========================
   FOOTER - PREMIUM
   =========================== */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 320px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: -250px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dourado), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 75px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--dourado);
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col p,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--dourado);
    padding-left: 5px;
}

.footer-oab {
    color: var(--dourado) !important;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dourado);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--dourado);
    color: var(--preto);
    transform: translateY(-3px);
}

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

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

.footer-disclaimer {
    font-size: 0.8rem !important;
}

.footer-link-plain {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
}

.footer-link-plain:hover,
.footer-link-plain:focus,
.footer-link-plain:active,
.footer-link-plain:visited {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* ===========================
   WHATSAPP CTA SECTIONS
   =========================== */
.whatsapp-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.whatsapp-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--branco);
    padding: 60px 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-cta-box h3 {
    font-size: 1.8rem;
    color: var(--preto);
    margin-bottom: 16px;
    font-weight: 800;
}

.whatsapp-cta-box p {
    font-size: 1.05rem;
    color: var(--cinza-medio);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
    padding: 20px 44px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-cta svg {
    width: 24px;
    height: 24px;
}

/* WhatsApp Section Buttons */
.btn-whatsapp-section {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 16px;
}

.btn-whatsapp-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

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

.section-whatsapp-wrapper {
    text-align: center;
    margin-top: 36px;
}

/* ===========================
   WHATSAPP - PREMIUM
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
}

.whatsapp-notification {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--branco);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    border: 4px solid var(--branco);
    animation: pulse-notification 2s infinite;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

@keyframes pulse-notification {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.9rem;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: center;
    }

    .image-wrapper {
        max-width: none !important;
        width: 100% !important;
        height: 600px;
        display: block !important;
    }

    .image-frame {
        width: 100% !important;
        height: 600px;
        display: block !important;
    }

    .hero-photo,
    .sobre-photo,
    .quem-somos-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }

    .hero-image {
        display: block;
        width: 100%;
    }

    .sobre-image,
    .quem-somos-image {
        width: 100%;
    }

    .sobre-content,
    .quem-somos-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .services-grid,
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-dots {
        margin-top: 48px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato .container {
        padding-left: 32px;
        padding-right: 32px;
        margin: 0 auto;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin: 0;
        padding: 0;
    }

    .contato-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 0;
        padding: 0;
    }

    .info-card {
        padding: 28px 24px;
        gap: 20px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon svg {
        width: 30px;
        height: 30px;
    }

    .info-content h3 {
        font-size: 1.05rem;
    }

    .info-content p {
        font-size: 0.9rem;
        word-break: break-word;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 88px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 40px 0;
        box-shadow: var(--shadow-md);
        gap: 28px;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .hero {
        padding: 140px 0 80px;
    }

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

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: space-between;
        max-width: 100%;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.6rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .stat-divider {
        display: block;
        height: 36px;
        flex-shrink: 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    /* Diminuir ícones dos cards (exceto Entre em Contato) */
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .diferencial-icon {
        width: 68px;
        height: 68px;
    }

    .diferencial-icon svg {
        width: 32px;
        height: 32px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    /* Diminuir botões Agendar Consulta */
    .btn-primary {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hero-content,
    .sobre-content,
    .quem-somos-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-image {
        order: 2;
    }

    .sobre-text {
        order: 1;
    }

    .quem-somos-image {
        order: 1;
    }

    .quem-somos-text {
        order: 2;
    }

    .services-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contato {
        padding: 80px 0;
    }

    .contato .container {
        padding-left: 32px;
        padding-right: 32px;
        margin: 0 auto;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
        margin: 0;
    }

    .contato-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .info-card {
        padding: 20px;
        gap: 16px;
        flex-direction: row;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        overflow: hidden;
    }

    .contato-cta {
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .info-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        flex-shrink: 0;
    }

    .info-icon svg {
        width: 26px;
        height: 26px;
    }

    .info-content {
        flex: 1;
        min-width: 0;
        max-width: 100%;
        text-align: left;
        overflow: hidden;
    }

    .info-content h3 {
        font-size: 1rem;
        margin-bottom: 4px;
        word-wrap: break-word;
        text-align: left;
    }

    .info-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 16px 40px !important;
        font-size: 1rem;
    }

    .image-wrapper {
        background: transparent !important;
        box-shadow: none;
        padding: 0;
        height: 400px;
    }

    .image-wrapper::before {
        display: none;
    }

    .hero-photo {
        border-radius: 20px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .image-frame {
        height: 400px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.08);
        overflow: visible;
    }

    .sobre-photo,
    .quem-somos-photo {
        height: 100%;
        object-fit: cover;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .whatsapp-float {
        width: 68px;
        height: 68px;
        bottom: 28px;
        right: 28px;
    }

    .whatsapp-float svg {
        width: 36px;
        height: 36px;
    }

    .whatsapp-notification {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .whatsapp-cta-box {
        padding: 48px 32px;
    }

    .whatsapp-cta-box h3 {
        font-size: 1.5rem;
    }

    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-box {
        padding: 32px 20px;
        text-align: left;
    }

    .contato-cta {
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta-box h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: left;
    }

    .cta-box p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }

    .cta-benefits {
        text-align: left;
    }

    .benefit-item {
        text-align: left;
    }

    .footer-cta-overlay {
        margin-bottom: 0;
        padding: 0px 0;
    }

    .footer-cta-box {
        padding: 40px 28px;
    }

    .footer-cta-box h3 {
        font-size: 1.6rem;
    }

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

    .footer-cta-box .btn-whatsapp-section {
        width: auto;
        display: inline-flex;
    }

    .footer {
        padding: 300px 0 40px;
        margin-top: -250px;
    }

    .sobre-content,
    .quem-somos-content {
        gap: 40px;
    }
}

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

    .contato .container {
        padding-left: 20px;
        padding-right: 20px;
        margin: 0 auto;
    }

    .contato-content {
        gap: 32px;
        padding: 0;
        margin: 0;
    }

    .contato-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .testimonial-card,
    .credential-item {
        padding: 32px 24px;
    }

    .contato-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .cta-box {
        padding: 32px 20px;
    }

    .cta-box h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cta-box p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .diferencial-icon {
        width: 64px;
        height: 64px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .footer-cta-overlay {
        margin-bottom: 0;
        margin-top: 0;
        padding: 0px 0;
    }

    .footer-cta-box {
        padding: 32px 24px;
    }

    .footer-cta-box h3 {
        font-size: 1.4rem;
    }

    .footer-cta-box p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .footer {
        padding: 350px 0 40px;
        margin-top: -300px;
    }

    .sobre-text p,
    .quem-somos-text p {
        text-align: left;
    }

    .image-frame {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.08);
        overflow: visible;
    }

    .info-card {
        padding: 16px;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        flex-shrink: 0;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }

    .info-content {
        flex: 1;
        min-width: 0;
        max-width: 100%;
        text-align: left;
        overflow: hidden;
    }

    .info-content h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }

    .info-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left;
        max-width: 100%;
    }

    .cta-box h3 {
        text-align: left;
    }

    .cta-box p {
        text-align: left;
    }

    .cta-benefits {
        text-align: left;
    }

    .benefit-item {
        text-align: left;
    }

    .info-content h3 {
        font-size: 1.05rem;
    }

    .info-content p {
        font-size: 0.9rem;
        word-break: break-word;
        max-width: 100%;
    }

    .sobre-content,
    .quem-somos-content {
        gap: 32px;
    }

    .btn-whatsapp-section {
        font-size: 1.05rem;
        padding: 12px 24px;
    }
}

/* Ajustes sutis para seção de contato em Tablet e Desktop
   - Reduz levemente o título da seção/CTA
   - Diminui um pouco padding/gap dos cards (mantém ícones)
   - Reduz levemente o tamanho do botão Agendar Consulta
   Aplica somente para telas >= 769px (tablet e desktop) */
@media (min-width: 769px) {
    .contato .section-title {
        font-size: 2rem; /* de 2.2rem para 2rem */
    }

    .contato .cta-box h3 {
        font-size: 1.85rem; /* de 2rem para 1.85rem */
    }

    .contato .info-card {
        padding: 30px; /* de 36px para 30px */
        gap: 22px;     /* de 28px para 22px */
    }

    .contato .cta-box {
        padding: 48px; /* de 60px para 48px */
    }

    /* Mantém as dimensões dos ícones (.info-icon) inalteradas */

    /* Leve redução do botão de agendar na seção contato */
    .contato .btn-whatsapp-section,
    .contato .btn-large {
        padding: 16px 36px; /* pequeno ajuste lateral */
        font-size: 1rem;    /* reduz levemente sem exagero */
    }
}

/* ===========================
   SUBMENU STYLES - FINAL
   =========================== */
.nav-menu .has-submenu {
    position: relative;
}

.nav-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--branco);
    list-style-type: none !important;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 280px;
    z-index: 1001;
}

/* Desktop Hover Behavior */
@media (min-width: 769px) {
    .nav-menu .has-submenu {
        padding-bottom: 20px; /* Creates a hover bridge */
        margin-bottom: -20px; /* Keeps vertical alignment */
    }

    .nav-menu .has-submenu:hover > .submenu {
        display: block;
    }
}

.nav-menu .submenu li {
    list-style-type: none !important;
    padding: 0;
}

.nav-menu .submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--cinza-escuro);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-menu .submenu li a:hover {
    background-color: var(--cinza-claro);
    color: var(--vermelho);
}

/* Dark Mode */
body.dark-mode .nav-menu .submenu {
    background-color: #2d2d2d;
    border: 1px solid rgba(185, 28, 28, 0.2);
}

body.dark-mode .nav-menu .submenu li a {
    color: #e0e0e0;
}

/* Mobile Submenu Behavior */
@media (max-width: 768px) {
    .nav-menu .submenu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
        border-radius: 0;
        width: 100%;
    }
    
    .nav-menu .has-submenu.submenu-active > .submenu {
        display: block;
    }

    body.dark-mode .nav-menu .submenu {
        background-color: transparent;
        border: none;
    }
}

/* ===========================
   INVISIBLE LINKS (SEO)
   =========================== */
.invisible-link {
    color: inherit;
    text-decoration: none;
    border: none;
    background: none;
    cursor: text;
    pointer-events: auto;
}

.invisible-link:hover,
.invisible-link:focus,
.invisible-link:active,
.invisible-link:visited {
    color: inherit;
    text-decoration: none;
    outline: none;
}