/* ============================================
   CSS Variables - Design System
   Baseado no CONTEXT.md
   ============================================ */
:root {
    /* Cores Principais */
    --color-yellow: rgb(250, 210, 110);
    --color-yellow-hex: #FAD26E;
    --color-blue-dark: rgb(24, 79, 161);
    --color-blue-dark-hex: #184FA1;
    --color-blue-medium: rgb(29, 101, 209);
    --color-blue-medium-hex: #1D65D1;
    --color-blue-gradient: rgb(31, 95, 191);
    --color-blue-gradient-hex: #1F5FBF;
    
    /* Cores Neutras */
    --color-white: rgb(255, 255, 255);
    --color-black: rgb(0, 0, 0);
    --color-gray-light: rgb(204, 204, 204);
    --color-gray-medium: rgb(140, 140, 140);
    --color-gray-border: rgb(222, 222, 222);
    
    /* Backgrounds */
    --bg-semi-transparent: rgba(0, 0, 0, 0.1);
    --bg-semi-transparent-light: rgba(255, 255, 255, 0.1);
    
    /* Tipografia */
    --font-family: "Figtree", "Figtree Placeholder", sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    
    /* Border Radius */
    --radius-small: 5px;
    --radius-medium: 10px;
    --radius-default: 15px;
    --radius-large: 20px;
    --radius-circle: 50px;
    
    /* Sombras - Padrão Múltiplas Camadas */
    --shadow-default: 
        rgba(0, 0, 0, 0.15) 0px 0.602187px 1.56569px -1px,
        rgba(0, 0, 0, 0.14) 0px 2.28853px 5.95019px -2px,
        rgba(0, 0, 0, 0.1) 0px 10px 26px -3px;
    
    /* Transições */
    --transition-smooth: all 0.3s ease;
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Espaçamento */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
}

/* ============================================
   Reset e Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

address {
    font-style: normal;
}

/* ============================================
   Container
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.header .container {
    position: relative;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: var(--spacing-md);
    position: relative;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: rgb(30, 58, 138);
    margin: 0;
    margin-bottom: 2px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 14px;
    color: var(--color-gray-medium);
    display: block;
    line-height: 1.2;
}

/* Menu Desktop */
.header-nav.desktop-nav {
    display: none;
}

.header-nav.desktop-nav .nav-link {
    color: var(--color-black);
    font-weight: var(--font-weight-regular);
    padding: 8px 16px;
    display: inline-block;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 16px;
}

.header-nav.desktop-nav .nav-link:hover {
    color: var(--color-blue-dark);
}

.btn-contact-desktop {
    display: none;
}

/* Menu Hamburger Mobile */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-blue-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-button {
    color: var(--color-black);
    font-weight: var(--font-weight-regular);
    padding: 16px 0;
    display: block;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid var(--color-gray-border);
    width: 100%;
}

.mobile-nav-button:last-of-type {
    border-bottom: none;
}

.mobile-nav-button:hover,
.mobile-nav-button.active {
    color: var(--color-blue-dark);
}

.mobile-nav-cta-wrapper {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-border);
}

.mobile-nav-cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    background: var(--color-yellow);
    color: var(--color-black);
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    box-shadow: var(--shadow-default);
    transition: var(--transition-smooth);
}

.mobile-nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        rgba(0, 0, 0, 0.2) 0px 0.602187px 1.56569px -1px,
        rgba(0, 0, 0, 0.18) 0px 2.28853px 5.95019px -2px,
        rgba(0, 0, 0, 0.15) 0px 10px 26px -3px;
}

/* Desktop Navigation */
@media (min-width: 810px) {
    .header-nav.desktop-nav {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .btn-contact-desktop {
        display: inline-block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

/* ============================================
   Botões
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    transition: var(--transition-spring);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--color-yellow);
    color: var(--color-black);
    box-shadow: var(--shadow-default);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        rgba(0, 0, 0, 0.2) 0px 0.602187px 1.56569px -1px,
        rgba(0, 0, 0, 0.18) 0px 2.28853px 5.95019px -2px,
        rgba(0, 0, 0, 0.15) 0px 10px 26px -3px;
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-blue-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(50% 50% at 50% 50%, var(--color-blue-gradient) 0%, var(--color-blue-dark) 100%);
    opacity: 0.7;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 193, 7, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-default);
    margin-bottom: var(--spacing-md);
    font-size: 14px;
    color: var(--color-black);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-black);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: appearUp 0.6s ease forwards;
    margin-right: 12px;
}

.hero-title .word.highlighted {
    color: rgb(64, 224, 208);
    text-decoration: underline;
    text-decoration-color: rgb(45, 180, 165);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-description {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-regular);
}

/* Cards de Serviços (4 cards horizontais) */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 25px 20px;
    background: var(--bg-semi-transparent);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-default);
    transition: var(--transition-smooth);
    text-align: center;
}

.hero-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-text {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    display: block;
}

.feature-subtext {
    font-size: 14px;
    color: var(--color-gray-light);
    display: block;
    margin-top: 4px;
}

/* Seção Inferior: Stats + Card de Tratamentos */
.hero-bottom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.stat-item {
    padding: 25px;
    background: var(--bg-semi-transparent);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-default);
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray-light);
}

/* Card de Tratamentos Especializados */
.hero-tratamentos-card {
    padding: 30px;
    background: rgba(29, 101, 209, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-default);
    box-shadow: var(--shadow-default);
    max-width: 500px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

.tratamentos-title {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.tratamentos-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.tratamentos-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-white);
    font-size: 16px;
}

.check-icon {
    color: rgb(34, 197, 94);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    flex-shrink: 0;
}

.tratamentos-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-tratamentos-primary {
    flex: 1;
    min-width: 200px;
    padding: 14px 24px;
    background: rgb(100, 180, 255);
    color: var(--color-white);
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-default);
}

.btn-tratamentos-primary:hover {
    background: rgb(80, 160, 235);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
    fill: none;
    flex-shrink: 0;
}

.btn-tratamentos-secondary {
    flex: 1;
    min-width: 200px;
    padding: 14px 24px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgb(100, 180, 255);
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-tratamentos-secondary:hover {
    background: rgba(100, 180, 255, 0.1);
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 18px;
}

/* Footer da Hero */
.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-xs);
}

.footer-check {
    color: rgb(34, 197, 94);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
}

.footer-text {
    color: var(--color-white);
    font-size: 14px;
}

@media (max-width: 809.98px) {
    .hero-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }
    
    .hero-title .word {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .hero-title .word.highlighted {
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
    }
    
    .hero-description {
        font-size: 20px;
        line-height: 1.5;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .hero-feature {
        padding: 20px 15px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .feature-subtext {
        font-size: 11px;
    }
    
    .hero-bottom-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        padding: 20px 15px;
        flex: 1;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-tratamentos-card {
        padding: 20px;
    }
    
    .tratamentos-title {
        font-size: 20px;
        text-align: center;
    }
    
    .tratamentos-list li {
        font-size: 14px;
    }
    
    .tratamentos-buttons {
        flex-direction: column;
    }
    
    .btn-tratamentos-primary,
    .btn-tratamentos-secondary {
        width: 100%;
    }
}

/* ============================================
   Animações
   ============================================ */
@keyframes appearUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Tratamentos Especializados Section
   ============================================ */
.tratamentos-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

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

@media (min-width: 1200px) {
    .tratamentos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tratamento-item {
    padding: var(--spacing-lg);
    background: var(--color-white);
    border: 1px solid var(--color-gray-border);
    border-radius: var(--radius-default);
    text-align: center;
    transition: var(--transition-smooth);
}

.tratamento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-default);
    border-color: var(--color-yellow);
}

.tratamento-item p {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
}

.tratamentos-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    font-size: 36px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.section-title.white {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    color: var(--color-black);
    font-weight: var(--font-weight-semibold);
}

.section-subtitle.white {
    color: var(--color-white);
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-description.white {
    color: var(--color-gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title .title-part-1 {
    color: rgb(60, 60, 60);
}

.section-title .title-part-2 {
    color: rgb(64, 224, 208);
}

.servicos-section .section-title {
    font-size: 42px;
    line-height: 1.2;
}

/* ============================================
   Serviços Section
   ============================================ */
.servicos-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    position: relative;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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

@media (min-width: 1200px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.servico-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-border);
    border-radius: var(--radius-large);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-default);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.servico-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-yellow);
    box-shadow: 
        rgba(0, 0, 0, 0.2) 0px 0.602187px 1.56569px -1px,
        rgba(0, 0, 0, 0.18) 0px 2.28853px 5.95019px -2px,
        rgba(0, 0, 0, 0.15) 0px 10px 26px -3px;
}

.servico-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    text-align: left;
    align-self: flex-start;
}

.servico-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

.servico-description {
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-md);
    text-align: left;
    line-height: 1.8;
    font-size: 16px;
}

.servico-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
}

.servico-list li {
    color: var(--color-gray-medium);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.servico-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(34, 197, 94);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
}

.servico-list li.list-label {
    font-weight: var(--font-weight-semibold);
    padding-left: 0;
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.servico-list li.list-label::before {
    display: none;
}

.servico-list li.list-bullet {
    padding-left: 20px;
    color: var(--color-gray-medium);
}

.servico-list li.list-bullet::before {
    content: "•";
    color: rgb(34, 197, 94);
    font-size: 12px;
    left: 0;
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.why-choose-title {
    font-size: 48px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.why-choose-title .title-line-1 {
    display: block;
    color: rgb(30, 58, 138);
    margin-bottom: 4px;
}

.why-choose-title .title-line-2 {
    display: block;
}

.why-choose-title .title-dr {
    color: rgb(37, 99, 235);
}

.why-choose-title .title-implantes {
    color: rgb(20, 184, 166);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

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

.why-choose-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: 24px;
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-default);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.why-choose-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.why-choose-icon-wrapper {
    flex-shrink: 0;
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: rgb(219, 234, 254);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(59, 130, 246);
    flex-shrink: 0;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
}

.why-choose-content {
    flex: 1;
    text-align: left;
}

.why-choose-card h3 {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
    color: rgb(30, 30, 30);
    line-height: 1.4;
}

.why-choose-card p {
    font-size: 14px;
    color: rgb(75, 85, 99);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 809.98px) {
    .why-choose-title {
        font-size: 36px;
    }
    
    .why-choose-title .title-line-1 {
        margin-bottom: 2px;
    }
    
    .why-choose-card {
        padding: 20px;
        gap: var(--spacing-md);
    }
    
    .why-choose-icon {
        width: 56px;
        height: 56px;
    }
    
    .why-choose-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .why-choose-card h3 {
        font-size: 17px;
    }
    
    .why-choose-card p {
        font-size: 14px;
    }
}

/* ============================================
   Cases Section
   ============================================ */
.cases-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

/* Transformações Reais Header */
.transformacoes-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.transformacoes-title {
    font-size: 48px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.transformacoes-title .title-transformacoes {
    color: rgb(30, 58, 138);
}

.transformacoes-title .title-reais {
    color: rgb(59, 130, 246);
}

.transformacoes-description {
    font-size: 18px;
    color: var(--color-gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cases-carousel-wrapper {
    position: relative;
    margin: var(--spacing-lg) 0 var(--spacing-xl);
    overflow: hidden;
    padding: 0 60px;
}

.results-carousel-wrapper {
    position: relative;
    margin: var(--spacing-lg) 0;
    overflow: hidden;
    padding: 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases-carousel,
.results-carousel {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.5s ease;
}

.case-item {
    min-width: calc(50% - var(--spacing-sm));
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

@media (max-width: 809.98px) {
    .case-item {
        min-width: 100%;
    }
}

.case-item .case-image {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: var(--radius-default);
    overflow: hidden;
    background: var(--color-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-black);
    padding: 8px 16px;
    border-radius: var(--radius-small);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    z-index: 2;
    letter-spacing: 1px;
}

.case-badge.antes {
    background: rgba(255, 255, 255, 0.95);
}

.case-badge.depois {
    background: rgba(255, 255, 255, 0.95);
}

.case-placeholder {
    color: var(--color-gray-medium);
    font-size: 16px;
    text-align: center;
    display: none;
}

.case-title {
    color: var(--color-black);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    margin-top: var(--spacing-xs);
}

/* Casos de Sucesso Section */
.success-cases-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.success-cases-title {
    font-size: 48px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    color: rgb(30, 58, 138);
}

.success-cases-description {
    font-size: 18px;
    color: var(--color-gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.results-carousel-wrapper {
    position: relative;
    margin: var(--spacing-lg) 0 var(--spacing-xl);
    overflow: hidden;
    padding: 0 60px;
}

.result-item {
    min-width: calc(50% - var(--spacing-sm));
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-default);
    overflow: hidden;
    background: var(--color-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 809.98px) {
    .result-item {
        min-width: 100%;
        height: 350px;
    }
}

.result-placeholder {
    color: var(--color-gray-medium);
    font-size: 16px;
    text-align: center;
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgb(219, 234, 254);
    color: rgb(59, 130, 246);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgb(191, 219, 254);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn svg {
    stroke: currentColor;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

@media (max-width: 809.98px) {
    .transformacoes-title {
        font-size: 36px;
    }
    
    .transformacoes-description {
        font-size: 16px;
        padding: 0 var(--spacing-md);
    }
    
    .cases-carousel-wrapper,
    .results-carousel-wrapper {
        padding: 0 50px;
    }
    
    .case-item .case-image {
        height: 280px;
    }
    
    .success-cases-header {
        margin-top: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .success-cases-title {
        font-size: 36px;
    }
    
    .result-item {
        min-width: 100%;
        height: 400px;
    }
}

/* ============================================
   Promotion Section
   ============================================ */
/* Promoção Card */
.promotion-card-wrapper {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.promotion-card {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: linear-gradient(180deg, rgba(240, 253, 250, 0.8) 0%, rgba(167, 243, 208, 0.4) 100%);
    border: 1px solid rgb(94, 234, 212);
    border-radius: var(--radius-large);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.promotion-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgb(94, 234, 212);
    border: 1px solid rgb(45, 212, 191);
    border-radius: var(--radius-default);
    font-weight: var(--font-weight-semibold);
    font-size: 11px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.promotion-badge svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.promotion-title {
    font-size: 48px;
    font-weight: var(--font-weight-semibold);
    color: rgb(20, 184, 166);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    word-break: break-word;
}

.promotion-text {
    font-size: 22px;
    color: rgb(30, 58, 138);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    font-weight: var(--font-weight-semibold);
    word-break: break-word;
    text-align: center;
}

.promotion-text strong {
    color: rgb(30, 58, 138);
    font-weight: var(--font-weight-semibold);
}

.promotion-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(90deg, rgb(59, 130, 246) 0%, rgb(20, 184, 166) 100%);
    color: var(--color-white);
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: normal;
    text-align: center;
}

.button-text {
    display: inline;
    line-height: 1.4;
}

.promotion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.promotion-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

@media (max-width: 809.98px) {
    .promotion-card-wrapper {
        padding: var(--spacing-md) 0;
    }
    
    .promotion-card-wrapper .container {
        padding: 0 var(--spacing-sm);
    }
    
    .promotion-card {
        padding: var(--spacing-lg) var(--spacing-md);
        margin: 0;
        max-width: 100%;
        background: linear-gradient(180deg, rgba(240, 253, 250, 0.9) 0%, rgba(167, 243, 208, 0.5) 100%);
    }
    
    .promotion-badge {
        padding: 6px 12px;
        font-size: 10px;
        margin-bottom: var(--spacing-sm);
    }
    
    .promotion-badge svg {
        width: 12px;
        height: 12px;
        stroke-width: 2.5;
    }
    
    .promotion-title {
        font-size: 40px;
        margin-bottom: var(--spacing-sm);
        line-height: 1.1;
        overflow: visible;
        word-break: break-word;
    }
    
    .promotion-text {
        font-size: 18px;
        margin-bottom: var(--spacing-md);
        line-height: 1.5;
    }
    
    .promotion-button {
        padding: 16px 20px;
        font-size: 14px;
        width: 100%;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
    }
    
    .button-text {
        flex: 1;
        text-align: left;
        line-height: 1.4;
    }
    
    .promotion-button svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, rgb(30, 58, 138) 0%, rgb(59, 130, 246) 100%);
    position: relative;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    text-align: left;
    font-weight: var(--font-weight-semibold);
}

.cta-highlight {
    color: rgb(34, 197, 94);
    font-weight: var(--font-weight-semibold);
}

.cta-subtext {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    text-align: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--color-white);
    color: rgb(30, 58, 138);
    border-radius: var(--radius-medium);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

@media (max-width: 809.98px) {
    .cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-text {
        font-size: 24px;
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .cta-subtext {
        font-size: 16px;
        padding: 0 var(--spacing-md);
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
        width: calc(100% - var(--spacing-md) * 2);
        margin: 0 auto;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-gray-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-text h3 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: rgb(30, 58, 138);
    margin: 0;
    margin-bottom: 2px;
    line-height: 1.2;
}

.footer-logo-text span {
    font-size: 14px;
    color: var(--color-gray-medium);
    display: block;
    line-height: 1.2;
}

.footer-description {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.6;
    margin-top: var(--spacing-sm);
}

.footer-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    stroke: var(--color-gray-medium);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-link {
    font-size: 14px;
    color: var(--color-gray-medium);
    text-decoration: none;
    transition: var(--transition-smooth);
    line-height: 1.6;
}

.footer-link:hover {
    color: var(--color-blue-dark);
}

.footer-address {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.6;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-nav-links .footer-link {
    display: inline-block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-schedule-item {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.footer-schedule-item strong {
    color: var(--color-black);
    display: block;
    margin-bottom: 4px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-gray-medium);
    margin-top: var(--spacing-sm);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-border);
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    font-size: 14px;
    color: var(--color-gray-medium);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal-link:hover {
    color: var(--color-blue-dark);
}

/* ============================================
   Mobile CTA (Floating)
   ============================================ */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: radial-gradient(50% 50% at 50% 50%, var(--color-blue-gradient) 0%, var(--color-blue-dark) 100%);
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.mobile-cta.active {
    display: block;
}

.mobile-cta-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    text-align: center;
}

.mobile-cta-content h3 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
}

.mobile-cta .btn {
    width: 100%;
    max-width: 300px;
}

@media (min-width: 810px) {
    .mobile-cta {
        display: none !important;
    }
}

/* ============================================
   Scroll Behavior
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
