/* ============================================
   NOVA DENTAL — Landing Page Premium
   Agencia-Level Stylesheet
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select { appearance: none; }

/* --- KEYFRAMES --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 60% 40% 30% 60%; }
}

/* --- LOADER --- */
.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0c1a36 0%, #1e3a5f 50%, #0c1a36 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Spinner */
.loader-spinner {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
}

.loader-spinner-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.loader-spinner-fill {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #38bdf8;
    border-right-color: #2563eb;
    animation: loaderSpin 1.2s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

.loader-spinner-fill::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(56, 189, 248, 0.3);
    border-left-color: rgba(37, 99, 235, 0.3);
    animation: loaderSpin 2s cubic-bezier(0.6, 0, 0.4, 1) infinite reverse;
}

.loader-spinner-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    animation: loaderPulse 2.4s ease-in-out infinite;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Logo */
.loader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: loaderFadeIn 0.6s ease-out 0.3s forwards;
}

.loader-logo span {
    font-weight: 400;
    color: #38bdf8;
}

@keyframes loaderFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.loader-bar {
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: loaderFadeIn 0.6s ease-out 0.5s forwards;
}

.loader-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border-radius: 10px;
    animation: loaderFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderFill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* --- NAVBAR --- */
.navbar {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 0;
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.03); }
.logo-mark {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.logo-mark svg { color: white; }
.logo-text-wrap { display: flex; }
.logo-text { color: white; font-size: 1.15rem; letter-spacing: 1.5px; transition: color 0.4s; }
.logo-text-light { color: rgba(255,255,255,0.7); font-size: 1.15rem; letter-spacing: 1.5px; transition: color 0.4s; }

.nav-link {
    color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.5px; transition: all 0.3s ease; position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
    height: 2px; background: #38bdf8; border-radius: 1px;
    transition: width 0.3s ease;
}
.nav-link:hover { color: white; }
.nav-link:hover::after { width: 100%; }

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    padding: 4px 0;
}
.navbar.scrolled .logo-text { color: #0c1a36; }
.navbar.scrolled .logo-text-light { color: #64748b; }
.navbar.scrolled .nav-link { color: #475569; }
.navbar.scrolled .nav-link:hover { color: #2563eb; }

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 100;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(8, 15, 31, 0.95); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.mobile-menu-inner { position: relative; z-index: 2; height: 100%; padding: 2rem; display: flex; flex-direction: column; }
.mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; justify-content: center; }
.mobile-link {
    color: white; font-family: 'Poppins', sans-serif;
    font-size: 1.75rem; font-weight: 600; padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease; transform: translateX(0);
}
.mobile-link:hover { color: #38bdf8; transform: translateX(8px); }
.mobile-footer { margin-top: auto; }

/* --- HERO --- */
.hero-section {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.1s linear;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(12, 26, 54, 0.92) 0%,
        rgba(30, 58, 95, 0.85) 40%,
        rgba(12, 26, 54, 0.88) 100%);
}
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle {
    position: absolute; width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.12); border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.hero-content {
    position: relative; z-index: 2; width: 100%;
    max-width: 1280px; margin: 0 auto; padding: 8rem 1.5rem 6rem;
}
.hero-inner { max-width: 720px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
    padding: 8px 20px; margin-bottom: 2rem;
}
.badge-dot {
    width: 8px; height: 8px; background: #38bdf8; border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}
.hero-badge span { color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px; }

.hero-title {
    font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800; color: white; line-height: 1.08; margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}
.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #38bdf8, #7dd3fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.6);
    line-height: 1.7; margin-bottom: 2.5rem; max-width: 560px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

.hero-stats {
    display: flex; align-items: center; gap: 2rem;
    padding: 1.5rem 0;
}
.stat-item { text-align: center; }
.stat-value {
    font-family: 'Poppins', sans-serif; font-size: 1.75rem;
    font-weight: 700; color: white;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-mouse {
    width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}
.scroll-text { color: rgba(255,255,255,0.3); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white; font-weight: 600; border-radius: 9999px;
    transition: all 0.3s ease; position: relative; overflow: visible;
    white-space: nowrap;
    padding: 10px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,0.3); color: white;
    font-weight: 600; border-radius: 9999px;
    transition: all 0.3s ease; white-space: nowrap;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid #2563eb; color: #2563eb; font-weight: 600;
    border-radius: 9999px; transition: all 0.3s ease; white-space: nowrap;
}
.btn-outline:hover {
    background: #2563eb; color: white; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.btn-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: white; color: #2563eb; font-weight: 700;
    border-radius: 9999px; transition: all 0.3s ease; white-space: nowrap;
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255,255,255,0.25);
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    border: 2px solid rgba(255,255,255,0.25); color: white;
    font-weight: 600; border-radius: 9999px; transition: all 0.3s ease; white-space: nowrap;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- SECTIONS --- */
.section-padding { padding: 7rem 0; }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: #2563eb;
    background: #eff6ff; padding: 6px 16px; border-radius: 100px; margin-bottom: 1rem;
}
.section-tag.tag-light {
    color: #38bdf8; background: rgba(56, 189, 248, 0.1);
}
.section-title {
    font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: #0c1a36; line-height: 1.15; letter-spacing: -1px;
}
.section-title.title-light { color: white; }
.section-desc { color: #64748b; font-size: 1.05rem; line-height: 1.7; margin-top: 1rem; }

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0; transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }

/* --- BENEFITS --- */
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.benefit-card {
    background: white; border-radius: 20px; padding: 2.5rem 2rem;
    border: 1px solid #f1f5f9; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.benefit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, #2563eb, #38bdf8);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    display: flex; align-items: center; justify-content: center;
    color: #2563eb; margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}
.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: white; transform: scale(1.1) rotate(-5deg);
}
.benefit-title {
    font-family: 'Poppins', sans-serif; font-size: 1.1rem;
    font-weight: 600; color: #0c1a36; margin-bottom: 0.5rem;
}
.benefit-desc { color: #64748b; font-size: 0.9rem; line-height: 1.65; }

/* --- ABOUT --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-visuals { position: relative; }
.about-img-main {
    border-radius: 24px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    position: relative;
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(12,26,54,0.15), transparent);
}
.about-img-secondary {
    position: absolute; bottom: -30px; right: -20px;
    width: 220px; border-radius: 16px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }

.about-floating-card {
    position: absolute; top: -20px; left: -20px;
    background: white; border-radius: 20px; padding: 1.25rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    animation: float 5s ease-in-out infinite;
}
.floating-number {
    font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.floating-label { font-size: 0.8rem; color: #64748b; line-height: 1.4; }

.about-text { color: #64748b; line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }

.about-features { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0 2.5rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: white; background: linear-gradient(135deg, #2563eb, #0ea5e9);
}
.feature-title { font-family: 'Poppins', sans-serif; font-weight: 600; color: #0c1a36; font-size: 0.95rem; }
.feature-desc { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin-top: 2px; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
    background: white; border-radius: 20px; overflow: hidden;
    border: 1px solid #f1f5f9; transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}
.service-card-image { position: relative; height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12,26,54,0.4), transparent);
}
.service-card-body { padding: 1.5rem; }
.service-card-icon {
    width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1rem;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    display: flex; align-items: center; justify-content: center;
    color: #2563eb; transition: all 0.4s ease;
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #2563eb, #0ea5e9); color: white;
    transform: scale(1.1);
}
.service-card-title {
    font-family: 'Poppins', sans-serif; font-size: 1.1rem;
    font-weight: 600; color: #0c1a36; margin-bottom: 0.5rem;
}
.service-card-desc { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 4px;
    color: #2563eb; font-weight: 600; font-size: 0.85rem;
    transition: all 0.3s ease;
}
.service-card-link:hover { gap: 8px; }

/* --- BEFORE/AFTER --- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.ba-item { border-radius: 20px; overflow: hidden; }

.ba-container {
    position: relative; height: 320px; overflow: hidden;
    border-radius: 20px; background: #f1f5f9; cursor: ew-resize;
}
.ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { position: absolute; top: 0; left: 0; height: 100%; width: 50%; overflow: hidden; }
.ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-slider {
    position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
    background: white; z-index: 10; transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.ba-handle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
}
.ba-handle::before {
    content: '‹ ›'; font-size: 1.2rem; font-weight: 700; color: #2563eb;
    letter-spacing: 4px;
}
.ba-label {
    position: absolute; top: 12px; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; z-index: 5;
}
.ba-label-before { left: 12px; background: rgba(239, 68, 68, 0.85); color: white; }
.ba-label-after { right: 12px; background: rgba(34, 197, 94, 0.85); color: white; }

.ba-info { padding: 1.25rem 0.5rem 0.5rem; }
.ba-info-title { font-family: 'Poppins', sans-serif; font-weight: 600; color: #0c1a36; font-size: 1.05rem; }
.ba-info-desc { color: #64748b; font-size: 0.85rem; margin-top: 4px; }

/* --- TESTIMONIALS --- */
.testimonials-slider { max-width: 960px; margin: 0 auto; overflow: hidden; }
.testimonials-track {
    display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
    min-width: 100%; padding: 0 1rem;
}
@media (min-width: 768px) {
    .testimonial-card { min-width: 50%; }
}
@media (min-width: 1024px) {
    .testimonial-card { min-width: 33.333%; }
}

.testimonial-card-inner {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 2rem; height: 100%; transition: all 0.3s ease;
}
.testimonial-card-inner:hover {
    background: rgba(255,255,255,0.1); transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; color: white;
    font-weight: 700; font-size: 0.85rem;
}
.author-name { color: white; font-weight: 600; font-size: 0.9rem; }
.author-treatment { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 2.5rem;
}
.slider-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: white; transition: all 0.3s ease;
}
.slider-btn:hover { background: rgba(255,255,255,0.15); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2); transition: all 0.3s ease;
    cursor: pointer;
}
.slider-dot.active { background: #38bdf8; width: 24px; border-radius: 4px; }

/* --- CTA SECTION --- */
.cta-section {
    position: relative; padding: 8rem 0; overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #0c1a36);
}
.cta-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
.cta-light {
    position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.cta-light-1 { width: 500px; height: 500px; background: rgba(56, 189, 248, 0.15); top: -200px; right: -100px; }
.cta-light-2 { width: 400px; height: 400px; background: rgba(96, 165, 250, 0.12); bottom: -150px; left: -100px; }

.cta-content { text-align: center; position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: #38bdf8; margin-bottom: 1.5rem;
}
.cta-title {
    font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; color: white; line-height: 1.1; margin-bottom: 1.25rem;
    letter-spacing: -1px;
}
.cta-desc { color: rgba(255,255,255,0.65); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }

.contact-form-wrap { }
.contact-form-card {
    background: white; border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid #f1f5f9;
}
.contact-form-title {
    font-family: 'Poppins', sans-serif; font-size: 1.5rem;
    font-weight: 700; color: #0c1a36; margin-bottom: 0.25rem;
}
.contact-form-subtitle { color: #64748b; font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: #475569; margin-bottom: 6px; }
.form-input {
    width: 100%; padding: 12px 16px; border: 2px solid #e2e8f0;
    border-radius: 12px; font-size: 0.9rem; color: #0c1a36;
    background: #f8fafc; transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.form-input:focus {
    border-color: #2563eb; outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: white;
}
.form-input::placeholder { color: #94a3b8; }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 0.75rem; color: #94a3b8; text-align: center; margin-top: 1rem; }

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card, .contact-schedule-card, .contact-map-card {
    background: white; border-radius: 20px; padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid #f1f5f9;
}
.contact-info-title, .schedule-title, .map-title {
    font-family: 'Poppins', sans-serif; font-size: 1.1rem;
    font-weight: 600; color: #0c1a36; margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 8px;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
    display: flex; align-items: center; gap: 12px;
    transition: all 0.3s ease; padding: 4px 0;
}
.contact-link:hover { transform: translateX(6px); }
.contact-link-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    display: flex; align-items: center; justify-content: center; color: #2563eb;
}
.contact-link-label { font-size: 0.75rem; color: #94a3b8; }
.contact-link-value { font-weight: 600; color: #0c1a36; font-size: 0.9rem; }

.schedule-list { display: flex; flex-direction: column; gap: 0.75rem; }
.schedule-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0; border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem; color: #475569;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-time { font-weight: 600; color: #0c1a36; }
.schedule-closed { color: #ef4444; }

.schedule-urgency {
    display: flex; align-items: center; gap: 8px;
    margin-top: 1rem; padding: 0.75rem 1rem;
    background: #f0fdf4; border-radius: 12px;
    font-size: 0.8rem; color: #16a34a; font-weight: 500;
}
.urgency-dot {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.map-address { font-size: 0.85rem; color: #64748b; margin-bottom: 1rem; }
.map-container { height: 180px; border-radius: 12px; overflow: hidden; }

/* --- FOOTER --- */
.footer { background: #0c1a36; padding: 5rem 0 0; position: relative; overflow: hidden; }
.footer-bg {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: radial-gradient(rgba(255,255,255,1) 1px, transparent 1px);
    background-size: 30px 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem; padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0; margin-bottom: 1rem; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 8px; }
.social-link {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.05); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all 0.3s ease;
}
.social-link:hover { background: rgba(255,255,255,0.1); color: #38bdf8; }

.footer-col-title {
    font-family: 'Poppins', sans-serif; font-size: 0.95rem;
    font-weight: 600; color: white; margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.4); font-size: 0.85rem;
    transition: all 0.3s ease;
}
.footer-links a:hover { color: #38bdf8; transform: translateX(4px); display: inline-block; }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.5;
}
.footer-contact-item a { transition: color 0.3s; }
.footer-contact-item a:hover { color: #38bdf8; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease; animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1); box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}
.whatsapp-icon { width: 32px; height: 32px; color: white; }

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 4.5rem 0; }
    .section-header { margin-bottom: 2.5rem; }

    .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { justify-content: center; text-align: center; }

    .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
    .stat-divider { display: none; }
    .stat-value { font-size: 1.4rem; }

    .hero-inner { max-width: 100%; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-lg { width: 100%; justify-content: center; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-xl { width: 100%; justify-content: center; }

    .about-img-main img { height: 280px; }
    .about-img-secondary { width: 160px; bottom: -20px; right: -10px; }
    .about-floating-card { top: -10px; left: -10px; padding: 1rem; }
    .floating-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .contact-form-card { padding: 1.5rem; }
}

.txt-port{
    color: white;
    transition: .5s ease;
}

.txt-port:hover{
    color: #E53342;
}