/* ==================== RESET & VARIABLES (Mobile-First) ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #008080;
    --primary-dark: #006666;
    --primary-light: #e0f7fa;
    --accent: #ffc107;
    --accent-dark: #e6a017;
    --gray-bg: #f5fbfd;
    --text-dark: #1a2a3a;
    --text-muted: #5a7e8c;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px -12px rgba(0, 128, 128, 0.15);
    --border-radius: 28px;
    --border-radius-sm: 20px;
    --header-height: 64px;
    --safe-bottom: env(safe-area-inset-bottom, 16px);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a2a3a;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ==================== HEADER (FIXED) ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #e0f0f0;
    box-shadow: 0 2px 16px rgba(0, 128, 128, 0.06);
    height: var(--header-height);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 128, 128, 0.12);
    border-bottom-color: #c8e0e0;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 20px;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .header-inner {
        gap: 32px;
    }
}

/* ==================== LOGO ==================== */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 128, 128, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #003d4d;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.logo-text .brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .logo-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    .logo-icon svg {
        width: 28px;
        height: 28px;
    }
    .logo-text .brand-name {
        font-size: 1.3rem;
    }
    .logo-text .brand-tagline {
        font-size: 0.65rem;
    }
}

@media (min-width: 768px) {
    .logo-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    .logo-text .brand-name {
        font-size: 1.45rem;
    }
    .logo-text .brand-tagline {
        font-size: 0.7rem;
    }
}

/* ==================== DESKTOP NAVIGATION ==================== */
.main-nav {
    display: none;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    list-style: none;
}

@media (min-width: 900px) {
    .main-nav {
        display: flex;
        gap: 4px;
    }
}

@media (min-width: 1024px) {
    .main-nav {
        gap: 8px;
    }
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

@media (min-width: 1024px) {
    .main-nav a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.main-nav a.active {
    font-weight: 700;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    background: var(--accent);
    border-radius: 8px;
}

/* Dropdown */
.nav-item-has-dropdown {
    position: relative;
}

.nav-item-has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item-has-dropdown>a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 2px;
    transition: transform 0.25s ease;
}

.nav-item-has-dropdown:hover>a::after {
    transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 16px 40px rgba(0, 128, 128, 0.15), 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0edf2;
    padding: 8px;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1100;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
    pointer-events: auto;
}

.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* ==================== LANGUAGE BAR (Pill style – flags always visible) ==================== */
.language-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    background: var(--gray-bg);
    border-radius: 40px;
    padding: 4px;
    border: 1px solid #e0edf2;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 34px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
    font-family: inherit;
}

.lang-option:hover {
    color: var(--text-dark);
    background: rgba(0, 128, 128, 0.06);
}

.lang-option.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 128, 128, 0.25);
    font-weight: 700;
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline !important;
}

.lang-code {
    display: none;
}

@media (min-width: 400px) {
    .lang-code {
        display: inline;
    }
    .lang-option {
        padding: 6px 12px;
        font-size: 0.78rem;
    }
}

@media (min-width: 768px) {
    .lang-option {
        padding: 7px 14px;
        font-size: 0.8rem;
        min-height: 36px;
    }
    .lang-flag {
        font-size: 1.1rem;
    }
    .language-bar {
        padding: 5px;
        gap: 2px;
    }
}

@media (min-width: 1024px) {
    .lang-option {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 38px;
    }
}

/* ==================== HAMBURGER BUTTON (Mobile) ==================== */
.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 1100;
    transition: background 0.2s ease;
}

.hamburger-btn:hover {
    background: var(--gray-bg);
}

.hamburger-btn:active {
    background: var(--primary-light);
}

@media (min-width: 900px) {
    .hamburger-btn {
        display: none;
    }
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    pointer-events: none;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.menu-open .hamburger-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.menu-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.menu-open .hamburger-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 30, 40, 0.55);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== MOBILE MENU PANEL ==================== */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 1060;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e0f0f0;
    flex-shrink: 0;
}

.mobile-menu-header .logo-link {
    transform: scale(0.9);
    transform-origin: left center;
}

.mobile-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--gray-bg);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-close-btn:hover {
    background: #e0edf2;
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 16px;
    flex: 1;
}

.mobile-nav-list li {
    margin-bottom: 2px;
}

.mobile-nav-list a {
    display: block;
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.mobile-nav-list a.active {
    font-weight: 700;
    border-left: 3px solid var(--accent);
}

/* Mobile submenu */
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-submenu-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.mobile-submenu-toggle .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle.open .arrow {
    transform: rotate(-135deg);
}

.mobile-submenu {
    list-style: none;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-submenu.open {
    max-height: 300px;
}

.mobile-submenu a {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 16px;
}

/* Mobile language section */
.mobile-lang-section {
    padding: 16px 20px;
    border-top: 1px solid #e0f0f0;
    flex-shrink: 0;
}

.mobile-lang-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-lang-btn {
    flex: 1;
    min-width: 60px;
    padding: 10px 12px;
    border-radius: 40px;
    border: 2px solid #e0edf2;
    background: white;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.mobile-lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 128, 128, 0.25);
}

.mobile-lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.mobile-lang-btn.active:hover {
    color: white;
}

/* ==================== FOCUS VISIBLE ==================== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .whatsapp-button {
        animation: none;
    }
    .whatsapp-button::before {
        animation: none;
        opacity: 0;
    }
}

/* ==================== EXTRA SMALL DEVICES ==================== */
@media (max-width: 374px) {
    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .logo-icon svg {
        width: 20px;
        height: 20px;
    }
    .logo-text .brand-name {
        font-size: 1rem;
    }
    .logo-text .brand-tagline {
        font-size: 0.55rem;
    }
    .lang-option {
        padding: 5px 8px;
        font-size: 0.7rem;
        min-height: 30px;
    }
    .hamburger-btn {
        width: 36px;
        height: 36px;
    }
    .mobile-menu-panel {
        width: 280px;
        max-width: 90vw;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .cookie-button,
    .cookie-popup,
    .whatsapp-button,
    .whatsapp-sticky {
        display: none !important;
    }
    body {
        font-size: 12pt;
    }
}

/* ==================== TYPOGRAPHY ==================== */
.section-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0a3b44;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 3rem;
    }
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-outline {
    display: inline-block;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 60px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 16px -8px rgba(0, 128, 128, 0.3);
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 100%;
}

@media (min-width: 480px) {
    .btn-primary,
    .btn-outline {
        width: auto;
        padding: 14px 28px;
        font-size: 1rem;
    }
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-package .btn-primary,
.btn-package .btn-outline {
    display: block;
    width: 100%;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
    padding: 1.5rem 0 2rem;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.hero-content {
    flex: 1;
    min-width: 260px;
    order: 1;
}

.hero-image {
    flex: 1;
    min-width: 260px;
    background: #e2edf2;
    border-radius: var(--border-radius);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    order: 2;
    width: 100%;
}

@media (min-width: 768px) {
    .hero {
        padding: 2rem 0 3rem;
    }
    .hero-content {
        order: 1;
    }
    .hero-image {
        order: 2;
        height: 380px;
    }
    .hero-grid {
        gap: 2rem;
    }
}

.hero-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(1.6rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #003d4d;
}

.hero-highlight {
    color: var(--primary);
    border-bottom: 3px solid var(--accent);
}

.hero-sub {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}

.hero-stats>div {
    flex: 1;
    min-width: 80px;
}

.stat-number {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    background: white;
    border-top: 1px solid #e0f0f0;
    border-bottom: 1px solid #e0f0f0;
    padding: 0.8rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .trust-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    .trust-bar {
        padding: 1rem 0;
        gap: 1rem 1.5rem;
    }
}

/* ==================== WARNING BOX ==================== */
.warning-box {
    background: #fff6e8;
    border-left: 6px solid var(--accent-dark);
    padding: 1.2rem;
    border-radius: var(--border-radius-sm);
    margin: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .warning-box {
        padding: 1.5rem;
        margin: 2rem 0;
        font-size: 1rem;
    }
}

/* ==================== PACKAGES ==================== */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 600px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
}

.package-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: 0.2s;
    border: 1px solid #e0edf2;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-4px);
}

.package-card.popular {
    border-top: 4px solid var(--accent);
}

.package-header {
    padding: 1.2rem 1.2rem 0.4rem;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.4rem 0;
}

.package-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.package-features {
    padding: 0 1.2rem 1.2rem;
    list-style: none;
    flex: 1;
}

.package-features li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.4rem;
    font-size: 0.85rem;
    align-items: flex-start;
}

.package-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-package {
    margin: 0 1.2rem 1.2rem;
}

.packages-footnote {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .package-header {
        padding: 1.5rem 1.5rem 0.5rem;
    }
    .package-features {
        padding: 0 1.5rem 1.5rem;
    }
    .btn-package {
        margin: 0 1.5rem 1.5rem;
    }
    .package-name {
        font-size: 1.4rem;
    }
    .package-price {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }
    .package-sub {
        font-size: 0.8rem;
    }
    .package-features li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
}

/* ==================== TRANSPARENCY BOX ==================== */
.transparency-box {
    background: #fef7e0;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.transparency-box ul {
    margin: 0.8rem 0 0 1.2rem;
}

.transparency-box li {
    margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
    .transparency-box {
        padding: 1.5rem;
        margin: 2rem 0;
        font-size: 1rem;
    }
    .transparency-box ul {
        margin: 1rem 0 0 1.5rem;
    }
    .transparency-box li {
        margin-bottom: 0.5rem;
    }
}

/* ==================== WHY NEO / FEATURES ==================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.8rem;
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        margin-top: 1rem;
    }
}

.feature-card {
    background: white;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/* ==================== JOURNEY STEPS ==================== */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background: white;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
}

.step-num {
    display: inline-block;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .steps {
        gap: 1.5rem;
    }
    .step {
        min-width: 180px;
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    .step-num {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ==================== NO X-RAY BOX ==================== */
.no-xray-box {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.9rem;
}

.no-xray-box .btn-primary {
    margin-top: 0.8rem;
}

@media (min-width: 768px) {
    .no-xray-box {
        padding: 2rem;
        font-size: 1rem;
    }
    .no-xray-box .btn-primary {
        margin-top: 1rem;
    }
}

/* ==================== DOCTORS ==================== */
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.8rem;
}

@media (min-width: 600px) {
    .doctor-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 900px) {
    .doctor-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin-top: 1rem;
    }
}

.doctor-card {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
}

.doctor-img {
    width: 80px;
    height: 80px;
    background: #cfe3ea;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
}

@media (min-width: 768px) {
    .doctor-card {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    .doctor-img {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }
}

/* ==================== GALLERY ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 0.8rem;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin-top: 1rem;
    }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background: #cfe3ea;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
}

/* ==================== PRICE COMPARISON TABLE ==================== */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 500px;
    font-size: 0.8rem;
}

thead th {
    background: #003d4d;
    color: white;
    padding: 0.7rem;
    text-align: left;
    font-size: 0.8rem;
    white-space: nowrap;
}

td,
th {
    padding: 0.7rem;
    border-bottom: 1px solid #e0edf2;
}

.comparison-note {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    thead th {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    td,
    th {
        padding: 0.8rem;
    }
    .comparison-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}

.testimonial-card {
    background: white;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

/* ==================== LEAD FORM CARD ==================== */
.form-card {
    background: linear-gradient(135deg, #003d4d, #005c66);
    color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.countdown-placeholder {
    background: var(--accent);
    color: #003d4d;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 60px;
    font-weight: 800;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.urgency-badge {
    background: var(--accent);
    color: #003d4d;
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 60px;
    border: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    min-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}

.form-card select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
}

.checkbox-label {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
    min-height: unset;
    accent-color: var(--accent);
}

.payment-icons {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.8rem;
}

.whatsapp-alternative {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
}

.whatsapp-link {
    color: var(--accent);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .form-card {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    .form-card h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .form-card input,
    .form-card select {
        padding: 0.9rem 1rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    .checkbox-label {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .checkbox-label input {
        width: 20px;
        height: 20px;
    }
    .countdown-placeholder {
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .urgency-badge {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .payment-icons {
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .whatsapp-alternative {
        margin-top: 1rem;
        font-size: 0.9rem;
    }
}

/* ==================== FAQ ==================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .faq-list {
        gap: 1.2rem;
    }
    .faq-item {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
}

/* ==================== FINAL CTA GUARANTEE ==================== */
.guarantee-box {
    background: #003d4d;
    color: white;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.guarantee-badge {
    background: #ff8c42;
    padding: 0.25rem 0.8rem;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.8rem;
}

.guarantee-box .btn-primary {
    background: white;
    color: #003d4d;
    margin-top: 0.8rem;
}

.guarantee-box .btn-primary:hover {
    background: var(--primary-light);
}

.small-note {
    font-size: 0.7rem;
    margin-top: 0.8rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .guarantee-box {
        padding: 2rem;
        font-size: 1rem;
    }
    .guarantee-badge {
        padding: 0.3rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
    .guarantee-box .btn-primary {
        margin-top: 1rem;
    }
    .small-note {
        font-size: 0.75rem;
        margin-top: 1rem;
    }
}

/* ==================== FOOTER ==================== */
footer {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    border-top: 1px solid #cde3ea;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    footer {
        padding: 2rem 1rem;
        font-size: 0.75rem;
        margin-top: 2rem;
    }
}

/* ==================== IMAGE PLACEHOLDER ==================== */
.img-placeholder {
    background: #cfe3ea;
    border-radius: var(--border-radius);
    background-image: repeating-linear-gradient(45deg,
            #bdd9e2 0px,
            #bdd9e2 2px,
            #d4e9f0 2px,
            #d4e9f0 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ==================== COOKIE FLOATING BUTTON ==================== */
.cookie-button {
    position: fixed;
    left: 16px;
    bottom: 16px;
    bottom: calc(16px + var(--safe-bottom));
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cookie-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(0, 128, 128, 0.4),
        0 5px 12px rgba(0, 0, 0, 0.25);
}

.cookie-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.cookie-button svg {
    width: 26px;
    height: 26px;
    fill: white;
}

@media (min-width: 768px) {
    .cookie-button {
        left: 24px;
        bottom: 24px;
        width: 68px;
        height: 68px;
        box-shadow: 0 10px 25px rgba(0, 128, 128, 0.35),
            0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .cookie-button svg {
        width: 32px;
        height: 32px;
    }
    .cookie-button:hover {
        box-shadow: 0 14px 32px rgba(0, 128, 128, 0.45),
            0 6px 14px rgba(0, 0, 0, 0.28);
    }
}

/* ==================== COOKIE POPUP ==================== */
.cookie-popup {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 80px;
    bottom: calc(80px + var(--safe-bottom));
    width: auto;
    max-width: 380px;
    background: white;
    border-radius: var(--border-radius);
    padding: 1.2rem;
    z-index: 10000;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14),
        0 6px 14px rgba(0, 128, 128, 0.1);
    border: 1px solid #d9ecef;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.25s ease;
    max-height: 80vh;
    max-height: 80dvh;
    overflow-y: auto;
}

.cookie-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 480px) {
    .cookie-popup {
        left: 16px;
        right: auto;
        width: 380px;
        padding: 1.4rem;
    }
}

@media (min-width: 768px) {
    .cookie-popup {
        left: 24px;
        right: auto;
        bottom: 110px;
        width: 380px;
        max-width: calc(100% - 32px);
        padding: 1.6rem;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12),
            0 8px 18px rgba(0, 128, 128, 0.12);
    }
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #003d4d;
}

@media (min-width: 768px) {
    .cookie-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cookie-text {
        font-size: 0.92rem;
        margin-bottom: 1.2rem;
    }
}

/* Cookie Options */
.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .cookie-options {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.cookie-option {
    background: var(--gray-bg);
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .cookie-option {
        padding: 1rem;
    }
}

.cookie-option-info h4 {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    color: var(--text-dark);
}

.cookie-option-info p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .cookie-option-info h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    .cookie-option-info p {
        font-size: 0.8rem;
    }
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #c8dce0;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.25s;
}

.slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: white;
    transition: 0.25s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.switch input:checked+.slider {
    background: var(--primary);
}

.switch input:checked+.slider::before {
    transform: translateX(20px);
}

@media (min-width: 768px) {
    .switch {
        width: 52px;
        height: 28px;
    }
    .slider::before {
        width: 22px;
        height: 22px;
    }
    .switch input:checked+.slider::before {
        transform: translateX(24px);
    }
}

/* Cookie Action Buttons */
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 400px) {
    .cookie-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cookie-actions {
        gap: 0.8rem;
    }
}

.cookie-actions button {
    flex: 1;
    min-width: 100%;
    min-height: 44px;
    font-size: 0.85rem;
}

@media (min-width: 400px) {
    .cookie-actions button {
        min-width: 100px;
    }
}

@media (min-width: 768px) {
    .cookie-actions button {
        min-width: 120px;
        font-size: 0.95rem;
    }
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    bottom: calc(16px + var(--safe-bottom));
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.18);
    animation: wobble 2.2s infinite;
    transition: transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.whatsapp-button:hover {
    transform: scale(1.12);
    background: #20ba5a;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5),
        0 5px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.whatsapp-button svg {
    width: 26px;
    height: 26px;
    fill: white;
}

/* Notification pulse */
.whatsapp-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    z-index: -1;
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .whatsapp-button {
        right: 24px;
        bottom: 24px;
        width: 68px;
        height: 68px;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45),
            0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .whatsapp-button svg {
        width: 34px;
        height: 34px;
    }
    .whatsapp-button:hover {
        box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55),
            0 6px 14px rgba(0, 0, 0, 0.28);
    }
}

/* ==================== WHATSAPP STICKY ==================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 16px;
    bottom: calc(16px + var(--safe-bottom));
    right: 16px;
    background: #25D366;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.whatsapp-sticky a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-sticky:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    .whatsapp-sticky a {
        font-size: 1.8rem;
    }
}

/* ==================== KEYFRAME ANIMATIONS ==================== */
@keyframes wobble {
    0%,
    100% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-14deg);
    }
    30% {
        transform: rotate(12deg);
    }
    45% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(8deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}