/* ==========================================================================
   SITTÁ ODONTOLOGIA - PRÓTESES DENTÁRIAS
   CSS 100% AUTÔNOMO, ISOLADO & RESPONSIVO (MOBILE-FIRST) v2.1
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & DESIGN TOKENS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c5a059;
    --gold-light: #d6b97b;
    --gold-dark: #a17f3e;
    --gold-gradient: linear-gradient(135deg, #e0c082 0%, #c5a059 50%, #a17f3e 100%);
    --black: #11100e;
    --charcoal: #1e1c18;
    --dark: #2d2a24;
    --warm-gray: #5c564b;
    --muted: #91897c;
    --cream: #f6f1e8;
    --ivory: #fdfbf7;
    --white: #ffffff;
    --green: #25d366;
    --green-dark: #128c7e;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden !important;
    width: 100%;
}

body {
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* --------------------------------------------------------------------------
   2. TOP BAR
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--black);
    color: var(--cream);
    font-size: clamp(10.5px, 2.5vw, 12.5px);
    text-align: center;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    line-height: 1.35;
    width: 100%;
}

.top-bar strong {
    color: var(--gold-light);
}

.top-bar a {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 3px;
}

/* --------------------------------------------------------------------------
   3. NAVEGAÇÃO & MENU MOBILE
   -------------------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(18, 18, 16, 0.06);
    padding: 10px 0;
    width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(197, 160, 89, 0.06);
    flex-shrink: 0;
}

.logo-text h1 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.2px;
}

.logo-text span {
    font-family: var(--sans);
    font-size: 8.5px;
    letter-spacing: 2px;
    color: var(--gold-dark);
    display: block;
    margin-top: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .nav-right {
        gap: 20px;
    }
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
        font-weight: 500;
        color: var(--charcoal);
        transition: var(--transition);
        position: relative;
        padding: 4px 0;
    }

    .nav-link:hover {
        color: var(--gold-dark);
    }
}

/* Dropdown Menu Mobile */
@media (max-width: 1023px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ivory);
        padding: 16px 20px;
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        gap: 12px;
        z-index: 999;
    }

    .nav-links.active .nav-link {
        font-size: 14.5px;
        font-weight: 600;
        color: var(--black);
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(18, 18, 16, 0.12);
    border-radius: 6px;
    cursor: pointer;
    color: var(--black);
    width: 38px;
    height: 38px;
    padding: 0;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.btn-wa-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 12.5px;
    font-weight: 700;
    height: 38px;
    padding: 0 16px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-wa-nav svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .btn-wa-nav {
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50%;
    }
    .btn-wa-nav .btn-wa-text {
        display: none !important;
    }
    .btn-wa-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* --------------------------------------------------------------------------
   4. HERO SECTION COM PROPORÇÃO EXATA DO VÍDEO (9:16)
   -------------------------------------------------------------------------- */
.hero {
    padding: 24px 0 40px;
    background: var(--ivory);
    overflow: hidden !important;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .hero {
        padding: 60px 0 75px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 45px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: clamp(9.5px, 2vw, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-dark);
    background: rgba(197, 160, 89, 0.12);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(197, 160, 89, 0.25);
}

.hero h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 14px;
    font-weight: 500;
}

.hero h2 em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 600;
}

.hero-sub {
    font-size: clamp(13.5px, 2.2vw, 16px);
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

@media (min-width: 576px) {
    .btn-primary, .btn-secondary {
        width: auto;
    }
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.3);
    border: none;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(18, 18, 16, 0.18);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Badges Fluidos Sem Quebra Horizontal */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(18, 18, 16, 0.08);
    box-shadow: 0 2px 6px rgba(18, 18, 16, 0.03);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
}

.hero-badge svg {
    color: var(--gold-dark);
    flex-shrink: 0;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    max-width: 15px !important;
}

/* FRAME DO VÍDEO VERTICAL EXATO (9:16) */
.hero-img-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.hero-video-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 0 1.5px rgba(197, 160, 89, 0.4);
    background: #000;
    width: 100%;
    max-width: 270px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .hero-video-wrapper {
        max-width: 290px;
    }
}

@media (min-width: 992px) {
    .hero-video-wrapper {
        max-width: 320px;
    }
}

.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(17, 16, 14, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-light);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 9px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.hero-video-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25d366;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-video-sound-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(17, 16, 14, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.hero-video-sound-btn:hover {
    background: var(--gold-gradient);
    color: var(--black);
}

/* --------------------------------------------------------------------------
   5. SEÇÃO EM LOOP INFINITO (MARQUEE TRACK)
   -------------------------------------------------------------------------- */
.before-after-loop-section {
    background: var(--black);
    color: var(--cream);
    padding: 45px 0 55px;
    overflow: hidden !important;
    position: relative;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    width: 100%;
    max-width: 100%;
}

.loop-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 24px;
    padding: 0 16px;
}

.loop-header .sec-eyebrow {
    color: var(--gold-light);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}

.loop-header h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 5vw, 34px);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.loop-header p {
    font-size: clamp(12.5px, 2vw, 14.5px);
    color: var(--muted);
    line-height: 1.5;
}

.marquee-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
    position: relative;
    padding: 6px 0 12px;
    -webkit-overflow-scrolling: touch;
}

.marquee-wrapper::-webkit-scrollbar {
    height: 4px;
}

.marquee-wrapper::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.3);
    border-radius: 4px;
}

.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
    padding: 0 16px;
}

.marquee-track:hover,
.marquee-track:active {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CARDS DO LOOP */
.ba-card {
    background: #1a1815;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    width: 260px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .ba-card {
        width: 290px;
    }
}

.ba-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.ba-card-img-wrap {
    position: relative;
    width: 100%;
    height: 175px;
    overflow: hidden;
    background: #000;
}

.ba-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-badge-after {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(37, 211, 102, 0.95);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 4px;
}

.ba-badge-case {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(17, 16, 14, 0.88);
    color: var(--gold-light);
    border: 1px solid rgba(197, 160, 89, 0.4);
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 2px 7px;
    border-radius: 4px;
}

.ba-card-body {
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.ba-card-title {
    font-family: var(--serif);
    font-size: 16.5px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.25;
}

.ba-card-desc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 10px;
}

.ba-card-benefits {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 8px;
    border-radius: 6px;
    border-left: 2.5px solid var(--gold);
}

.ba-card-benefit-item {
    font-size: 10px;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ba-card-benefit-item svg {
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    max-width: 11px !important;
    color: var(--gold-light);
    flex-shrink: 0;
}

.ba-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 6px;
    transition: var(--transition);
}

.ba-card-cta:hover {
    background: #fff;
    color: var(--black);
}

/* --------------------------------------------------------------------------
   6. 5 PILLARS STRIP
   -------------------------------------------------------------------------- */
.pillars-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(18, 18, 16, 0.05);
    width: 100%;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }
}

.pillar-item {
    background: var(--ivory);
    border-radius: 8px;
    padding: 16px 10px;
    text-align: center;
    border: 1px solid rgba(18, 18, 16, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.pillar-icon svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    flex-shrink: 0;
}

.pillar-item h4 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.pillar-item p {
    font-size: 11px;
    color: var(--warm-gray);
    line-height: 1.4;
    margin: 0;
}

/* --------------------------------------------------------------------------
   7. STATE-OF-THE-ART CARE SECTION
   -------------------------------------------------------------------------- */
.section {
    padding: 45px 0;
    width: 100%;
}

@media (min-width: 992px) {
    .section {
        padding: 75px 0;
    }
}

.tech-care-section {
    background: var(--ivory);
    padding: 45px 0;
    width: 100%;
}

@media (min-width: 992px) {
    .tech-care-section {
        padding: 75px 0;
    }
}

.tech-care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    .tech-care-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 50px;
    }
}

.tech-care-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(18, 18, 16, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    background: #000;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.tech-care-badge-float {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(17, 16, 14, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-care-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-care-badge-icon svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    flex-shrink: 0;
}

.tech-care-badge-text h5 {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.tech-care-badge-text p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.care-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 24px;
}

.care-checklist-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.care-checklist-item .check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.care-checklist-item .check-icon svg {
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    max-width: 11px !important;
    flex-shrink: 0;
}

.care-checklist-item .check-text {
    font-size: 13.5px;
    color: var(--charcoal);
    line-height: 1.5;
}

.care-checklist-item .check-text strong {
    color: var(--black);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. PROTESES TYPES GRID
   -------------------------------------------------------------------------- */
.tr-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 28px;
    padding: 0 8px;
}

.sec-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 6px;
}

.sec-title {
    font-family: var(--serif);
    font-size: clamp(24px, 4.5vw, 36px);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 10px;
}

.sec-desc {
    font-size: clamp(13px, 2vw, 15px);
    color: var(--warm-gray);
    line-height: 1.55;
}

.proteses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

@media (min-width: 600px) {
    .proteses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .proteses-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.protese-card {
    background: var(--white);
    border-radius: 10px;
    padding: 22px 18px;
    border: 1px solid rgba(18, 18, 16, 0.06);
    box-shadow: 0 6px 20px rgba(18, 18, 16, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.protese-card-tag {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold-dark);
    background: rgba(197, 160, 89, 0.1);
    padding: 3px 7px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 10px;
    display: inline-block;
}

.protese-card h3 {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.25;
}

.protese-card p {
    font-size: 12.5px;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-bottom: 14px;
    flex-grow: 1;
}

.protese-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.protese-card-features li {
    font-size: 11px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
}

.protese-card-features li svg {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    max-width: 12px !important;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.protese-card .btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    background: var(--ivory);
    color: var(--black);
    border: 1px solid rgba(18, 18, 16, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.protese-card:hover .btn-card {
    background: var(--black);
    color: var(--white);
}

/* --------------------------------------------------------------------------
   9. PLANNING & CONDICOES
   -------------------------------------------------------------------------- */
.planning-card-box {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 10px 35px rgba(18, 18, 16, 0.04);
    padding: 24px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

@media (min-width: 992px) {
    .planning-card-box {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 40px 35px;
        align-items: center;
        gap: 35px;
    }
}

.planning-highlight-card {
    background: var(--ivory);
    border-radius: 10px;
    padding: 22px 16px;
    border: 1.5px dashed var(--gold);
    text-align: center;
}

.planning-highlight-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 8px;
    display: block;
}

.planning-highlight-card h4 {
    font-family: var(--serif);
    font-size: clamp(22px, 3.5vw, 26px);
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
}

.planning-highlight-card p {
    font-size: 12.5px;
    color: var(--warm-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.planning-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    text-align: left;
    margin-bottom: 18px;
}

.planning-badge-item {
    font-size: 11px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 5px;
}

.planning-badge-item svg {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    max-width: 12px !important;
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(18, 18, 16, 0.06);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 16px 16px;
    text-align: left;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.faq-arrow {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    fill: none;
    stroke: var(--gold-dark);
    stroke-width: 2.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 16px;
}

.faq-content p {
    padding-bottom: 16px;
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. BOTOES FLUTUANTES (SAFE AREA MOBILE)
   -------------------------------------------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 16px;
    right: 12px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.wa-float svg {
    width: 26px !important;
    height: 26px !important;
    fill: #fff;
    flex-shrink: 0;
}

.mktg-seal-float {
    position: fixed;
    bottom: 16px;
    left: 12px;
    z-index: 9999;
    background: rgba(17, 16, 14, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 50px;
    padding: 4px 10px 4px 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.mktg-seal-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 9.5px;
    flex-shrink: 0;
}

.mktg-seal-text {
    display: flex;
    flex-direction: column;
}

.mktg-seal-text span:first-child {
    font-size: 8.5px;
    font-weight: 700;
    color: var(--cream);
}

.mktg-seal-text span:last-child {
    font-size: 7px;
    color: var(--gold-light);
    text-transform: uppercase;
}
