/* ==========================================================================
   Corner117 - CSS Responsive Completo (CORREGIDO)
   ========================================================================== */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f7fafc;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary: #1a365d;
    --primary-dark: #0f2546;
    --secondary: #00a8cc;
    --secondary-dark: #0088a8;
    --accent: #ff6b35;
    --dark: #1a202c;
    --medium: #4a5568;
    --light: #718096;
    --lightest: #e2e8f0;
    --white: #ffffff;
    --off-white: #f7fafc;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.05);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.08);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   HERO MÓVIL (Pantalla Completa Inicial)
   ========================================================================== */

.mobile-hero {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(15, 37, 70, 0.95)), 
                url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-hero.hidden {
    opacity: 0;
    visibility: hidden;
}

.mobile-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 500px;
    animation: fadeIn 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 150px; /* ESPACIO AUMENTADO para el botón scroll down */
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
}

.mobile-logo .logo-icon {
    font-size: 2rem;
    color: var(--secondary);
}

.mobile-logo .logo-highlight {
    color: var(--secondary);
}

.mobile-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
    font-weight: 800;
}

.mobile-hero-title .highlight {
    color: var(--secondary);
}

.mobile-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.mobile-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    margin-bottom: 3rem;
}

.mobile-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
}

.mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* ==========================================================================
   SCROLL DOWN BUTTON - CORREGIDO
   ========================================================================== */

.scroll-down-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition);
}

.scroll-down-btn:hover {
    opacity: 1;
    transform: translateY(5px);
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-down-btn i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Scroll down para móvil - CORREGIDO */
.mobile-scroll-down {
    position: absolute;
    bottom: 60px; /* POSICIÓN MÁS BAJA para evitar superposición */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.mobile-scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition);
    padding: 10px 20px;
}

.mobile-scroll-down-btn:hover {
    opacity: 1;
    transform: translateY(5px);
}

.mobile-scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-scroll-down-btn i {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   NAVIGATION RESPONSIVE
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-glass);
    border-bottom-color: rgba(0, 168, 204, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 1536px;
    margin: 0 auto;
    height: 55px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    font-weight: 800;
    color: var(--dark);
}

.logo-highlight {
    color: var(--secondary);
    font-weight: 900;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--medium);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--dark);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--secondary);
    font-weight: 700;
}

.nav-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.15);
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.25);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--secondary);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--secondary);
}

/* ==========================================================================
   HERO SECTION DESKTOP
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 21, 160, 0.89) 0%, rgba(61, 61, 61, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.hero-text-container {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition);
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step:hover .step-icon {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 168, 204, 0.3);
}

.step-text {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    opacity: 0.9;
}

.step-arrow {
    color: var(--secondary);
    font-size: 1.25rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.email-btn {
    background: linear-gradient(135deg, #EA4335 0%, #D14836 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #34A853 0%, #2E8B57 100%);
}

.back-to-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    cursor: pointer;
    display: none;
}

.floating-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    pointer-events: none;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.floating-button:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ==========================================================================
   SECTIONS GENERALES
   ========================================================================== */

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium);
    line-height: 1.7;
    font-weight: 300;
}

.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   INTRO SECTION RESPONSIVE
   ========================================================================== */

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary);
    background: rgba(0, 168, 204, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium);
    font-weight: 300;
}

/* ==========================================================================
   JURISDICCIONES SECTION RESPONSIVE
   ========================================================================== */

.jurisdicciones-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.jurisdiccion-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
}

.jurisdiccion-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jurisdiccion-card:hover .card-image img {
    transform: scale(1.1);
}

.jurisdiccion-content {
    padding: 2rem;
}

.jurisdiccion-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-align: center;
}

.jurisdiccion-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 900;
    text-align: center;
}

.jurisdiccion-desc {
    color: var(--medium);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.jurisdiccion-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.jurisdiccion-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 300;
}

.jurisdiccion-features i {
    color: #38b2ac;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.jurisdiccion-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.jurisdiccion-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all var(--transition);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.jurisdiccion-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.jurisdiccion-note {
    background: rgba(0, 168, 204, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.note-icon {
    font-size: 2rem;
    color: var(--secondary);
}

.jurisdiccion-note p {
    margin-bottom: 0;
    font-weight: 300;
}

/* ==========================================================================
   PAQUETES SECTION - CORREGIDO "MÁS POPULAR"
   ========================================================================== */

.emirato-selector {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--lightest);
}

.selector-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 900;
}

.selector-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.emirato-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--white);
    border: 2px solid var(--lightest);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    color: var(--medium);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.emirato-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.emirato-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.paquetes-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.paquetes-container.active {
    display: block;
}

.emirato-header {
    margin-bottom: 3rem;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.emirato-image {
    position: relative;
    height: 300px;
}

.emirato-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.emirato-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--white);
}

.emirato-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
}

.emirato-title i {
    color: var(--secondary);
}

.emirato-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
}

/* PAQUETES GRID RESPONSIVE */
.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* ESPACIO AUMENTADO entre cards */
    margin-bottom: 2rem;
}

.paquete-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 20px; /* ESPACIO para el badge "Más Popular" */
}

.paquete-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.paquete-card.destacado {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-2xl);
}

/* CORRECCIÓN: Badge "Más Popular" - POSICIONADO CORRECTAMENTE */
.paquete-badge.destacado-badge {
    position: absolute;
    top: 15px; /* POSICIÓN MÁS ALTA para que no se superponga */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #e55a2b 100%);
    color: var(--white);
    z-index: 3;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.basico-badge {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.intermedio-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.completo-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.paquete-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--lightest);
    position: relative;
    padding-top: 1.5rem; /* ESPACIO ADICIONAL en la parte superior */
}

.paquete-precio {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0.5rem 0;
    line-height: 1;
}

.paquete-subtitle {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 500;
}

.paquete-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.paquete-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paquete-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.4;
}

.paquete-features i {
    color: var(--secondary);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.paquete-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--lightest);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.paquete-duracion {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium);
    font-size: 0.9rem;
}

.paquete-duracion i {
    color: var(--secondary);
}

.paquete-btn {
    display: block;
    width: 100%;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}

.basico-btn {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: var(--white);
}

.intermedio-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.completo-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.paquete-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* OTRO EMIRATO CONTENT RESPONSIVE */
.otro-emirato-content {
    padding: 1.5rem;
}

.otro-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--lightest);
    width: 100%;
    max-width: 100%;
}

.otro-icon {
    font-size: 3rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.otro-content {
    flex-grow: 1;
    width: 100%;
}

.otro-title {
    margin-bottom: 1rem;
    color: var(--primary);
    text-align: center;
    font-size: 1.5rem;
}

.otro-desc {
    margin-bottom: 1.5rem;
    color: var(--medium);
    text-align: center;
    line-height: 1.6;
}

.otro-emiratos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.emirato-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--off-white);
    border-radius: var(--radius-full);
    border: 1px solid var(--lightest);
    transition: all var(--transition);
    font-size: 0.9rem;
}

.emirato-item:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.emirato-item i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.otro-beneficios {
    margin-bottom: 1.5rem;
    width: 100%;
}

.otro-beneficios h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
    font-size: 1.1rem;
}

.otro-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.otro-beneficios li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.otro-beneficios i {
    color: #38b2ac;
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.otro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.otro-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* NOTAS RESPONSIVE */
.paquetes-nota {
    background: rgba(0, 168, 204, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary);
    width: 100%;
    max-width: 100%;
}

.paquetes-nota p {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.paquetes-nota i {
    color: var(--secondary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ==========================================================================
   COSTES SECTION RESPONSIVE
   ========================================================================== */

.cost-factors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.factor {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
}

.factor:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.factor-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.factor-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.factor-desc {
    color: var(--medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Calculator Container RESPONSIVE */
.calculator-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    border: 1px solid var(--lightest);
    width: 100%;
    max-width: 100%;
}

.calculator-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calculator-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.calculator-subtitle {
    color: var(--medium);
    margin-bottom: 0;
    font-size: 1rem;
}

.calculator-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.control-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.calculator-select,
.calculator-input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--lightest);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition);
    background: var(--white);
    width: 100%;
    max-width: 100%;
}

.calculator-select:focus,
.calculator-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.visa-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.visa-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--lightest);
    background: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visa-btn:hover {
    border-color: var(--secondary);
    background-color: rgba(0, 168, 204, 0.05);
}

.visa-cost {
    color: var(--light);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.calculator-result {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--secondary);
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.result-label {
    font-size: 0.95rem;
    color: var(--medium);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin: 0.5rem 0;
}

.result-note {
    font-size: 0.875rem;
    color: var(--light);
    margin-bottom: 0;
    font-style: italic;
}

.calculator-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cost-note {
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    width: 100%;
    max-width: 100%;
}

.cost-note p {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cost-note i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.highlight-link {
    color: var(--secondary);
    text-decoration: underline;
    font-weight: 600;
    transition: color var(--transition);
}

.highlight-link:hover {
    color: var(--secondary-dark);
}

/* ==========================================================================
   VISAS SECTION RESPONSIVE
   ========================================================================== */

.visas-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.visa-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.visa-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.visa-image {
    height: 180px;
    overflow: hidden;
}

.visa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visa-card:hover .visa-image img {
    transform: scale(1.1);
}

.visa-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--lightest);
    background: var(--off-white);
}

.visa-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visa-title {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--dark);
    flex-grow: 1;
}

.visa-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.visa-desc {
    color: var(--medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.visa-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visa-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.visa-features i {
    color: #38b2ac;
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.visa-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--lightest);
    background: var(--off-white);
}

.visa-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   BANCA SECTION
   ========================================================================== */

.banca-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.banca-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    width: 100%;
    max-width: 100%;
}

.banca-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.banca-info {
    padding: 0;
    width: 100%;
}

.banca-process {
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
    width: 100%;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-desc {
    color: var(--medium);
    margin-bottom: 0;
    line-height: 1.6;
}

.banca-cta {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary);
    width: 100%;
    max-width: 100%;
}

.banca-cta p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.banca-cta i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.banca-cta .btn {
    width: 100%;
}

.banca-banks {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
}

.bank-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-align: center;
}

.bank-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.bank-logo i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* ==========================================================================
   FAQ SECTION RESPONSIVE
   ========================================================================== */

.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid var(--lightest);
    overflow: hidden;
    transition: all var(--transition);
    width: 100%;
    max-width: 100%;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition);
    background: var(--off-white);
    user-select: none;
    width: 100%;
}

.faq-question:hover {
    background-color: rgba(0, 168, 204, 0.05);
}

.faq-question.active {
    background-color: rgba(0, 168, 204, 0.1);
    border-bottom: 2px solid var(--secondary);
}

.faq-question span {
    flex-grow: 1;
    color: var(--dark);
    font-size: 1rem;
}

.faq-question i {
    color: var(--secondary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding: 1.25rem 1.5rem;
    background: var(--white);
}

.faq-answer p {
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--medium);
    font-size: 0.95rem;
}

/* ==========================================================================
   CONTACTO SECTION RESPONSIVE
   ========================================================================== */

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacto-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.contacto-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--lightest);
    transition: all var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

.contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.contacto-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-content {
    flex-grow: 1;
}

.contacto-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contacto-detail {
    color: var(--medium);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contacto-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.9rem;
}

.contacto-link:hover {
    color: var(--secondary-dark);
}

.contacto-link i {
    font-size: 0.875rem;
}

.contacto-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--lightest);
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-subtitle {
    color: var(--medium);
    margin-bottom: 0;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--lightest);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.form-input.textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--secondary);
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--medium);
    line-height: 1.5;
}

.privacy-link {
    color: var(--secondary);
    text-decoration: underline;
    transition: color var(--transition);
}

.privacy-link:hover {
    color: var(--secondary-dark);
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid #86efac;
    display: block;
}

/* ==========================================================================
   FOOTER RESPONSIVE - HORIZONTAL
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo .logo {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    font-weight: 300;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-list a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-contact .footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact i {
    margin-top: 0.25rem;
    color: var(--secondary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    margin-bottom: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0;
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Pantallas medianas (tablets) */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .banca-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .paquetes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jurisdicciones-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visas-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cost-factors {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-controls {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .banca-banks {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Móviles (768px y menos) */
@media (max-width: 768px) {
    /* Mostrar hero móvil y ocultar desktop */
    .mobile-hero {
        display: flex !important;
    }
    
    .hero-section {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Navigation móvil */
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-glass);
        border-top: 1px solid var(--glass-border);
        z-index: 999;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1rem;
        color: var(--dark);
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-link:hover {
        background: rgba(0, 168, 204, 0.05);
        color: var(--secondary);
    }
    
    .nav-link.active {
        background: rgba(0, 168, 204, 0.1);
        color: var(--secondary);
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero steps para móvil */
    .hero-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    /* Grids para móvil - una columna */
    .paquetes-grid,
    .jurisdicciones-cards,
    .visas-container,
    .cost-factors,
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    /* CORRECCIÓN: Tarjetas destacadas en móvil */
    .paquete-card.destacado {
        transform: scale(1);
        margin-top: 35px; /* ESPACIO EXTRA para el badge "Más Popular" en móvil */
    }
    
    /* CORRECCIÓN: Badge "Más Popular" en móvil */
    .paquete-badge.destacado-badge {
        top: -18px; /* POSICIÓN MÁS ALTA en móvil */
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Otro emirato card */
    .otro-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    /* Notas */
    .paquetes-nota,
    .jurisdiccion-note,
    .cost-note {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Selector de emirato */
    .emirato-btn {
        width: 100%;
        justify-content: center;
    }
    
    .selector-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Banca content */
    .banca-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
    
    .floating-tooltip {
        display: none;
    }
    
    .banca-banks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* CORRECCIÓN: Scroll down en móvil - POSICIÓN MEJORADA */
    .mobile-scroll-down {
        bottom: 80px; /* POSICIÓN MÁS BAJA para evitar superposición */
    }
    
    .mobile-scroll-text {
        font-size: 0.75rem;
    }
    
    .mobile-scroll-down-btn i {
        font-size: 1rem;
    }
    
    /* CORRECCIÓN: Espacio adicional en mobile hero content */
    .mobile-hero-content {
        padding-bottom: 180px; /* MÁS ESPACIO para el scroll down */
    }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .mobile-hero-title {
        font-size: 1.75rem;
    }
    
    .mobile-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1.25rem;
    }
    
    .nav-container {
        height: 56px;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .nav-menu {
        top: 56px;
        padding: 1rem;
    }
    
    .nav-link {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .paquete-precio {
        font-size: 1.75rem;
    }
    
    .jurisdiccion-price {
        font-size: 1.25rem;
    }
    
    .result-amount {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .banca-banks {
        grid-template-columns: 1fr;
    }
    
    /* CORRECCIÓN: Scroll down en móvil pequeño */
    .mobile-scroll-down {
        bottom: 70px;
    }
    
    .mobile-scroll-text {
        font-size: 0.7rem;
    }
    
    .mobile-scroll-down-btn i {
        font-size: 0.9rem;
    }
    
    /* CORRECCIÓN: Badge "Más Popular" en móvil pequeño */
    .paquete-badge.destacado-badge {
        top: -16px;
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    
    /* CORRECCIÓN: Más espacio en mobile hero content para móvil pequeño */
    .mobile-hero-content {
        padding-bottom: 160px;
    }
}

/* Desktop grande (más de 1400px) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .scroll-down-container {
        bottom: 40px;
    }
    
    .scroll-text {
        font-size: 1rem;
    }
    
    .scroll-down-btn i {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s ease forwards; }
.animate-slide-up-delay { animation: slideUp 0.8s ease forwards 0.2s; }
.animate-slide-up-delay-2 { animation: slideUp 0.8s ease forwards 0.4s; }
.animate-slide-up-delay-3 { animation: slideUp 0.8s ease forwards 0.6s; }
.animate-left { animation: slideLeft 0.8s ease forwards; }
.animate-right { animation: slideRight 0.8s ease forwards; }
.animate-bounce { animation: bounce 2s infinite; }

.pulse-effect:hover {
    animation: pulse 0.5s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    text-align: center;
    color: var(--white);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
/* ==========================================================================
   CRYPTO SECTION
   ========================================================================== */

/* ==========================================================================
   CRYPTO SECTION - MEJORADO
   ========================================================================== */

/* Botón Crypto en Hero */
.btn-crypto {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(19, 2, 56, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-crypto:hover {
    background: linear-gradient(135deg, #08040f 0%, #3b147a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 4, 31, 0.4);
    color: var(--white);
}

/* Botón Crypto en Hero Móvil */
.mobile-hero-btn.crypto-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 0.5rem auto;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.mobile-hero-btn.crypto-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Crypto Section - SIN ESPACIOS BLANCOS */
.crypto-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.crypto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8B5CF6, #00a8cc, #8B5CF6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.crypto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Columna izquierda - Info */
.crypto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(139, 92, 246, 0.1);
}

.crypto-intro h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    line-height: 1.2;
}

.crypto-intro > p {
    color: var(--medium);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.crypto-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.crypto-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
}

.crypto-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 92, 246, 0.3);
}

.crypto-feature i {
    font-size: 1.5rem;
    color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.crypto-feature:hover i {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1);
}

.crypto-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.crypto-feature p {
    color: var(--medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Proceso Crypto */
.crypto-process {
    margin-top: 1rem;
}

.crypto-process h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.crypto-process h3::before {
    content: '';
    width: 30px;
    height: 3px;
    background: #8B5CF6;
    border-radius: var(--radius-sm);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--lightest);
    transition: all var(--transition);
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(139, 92, 246, 0.3);
}

.process-step .step-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.step-content p {
    color: var(--medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Columna derecha - Licencias */
.crypto-licenses {
    padding-left: 1.5rem;
}

.licenses-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.15);
}

.licenses-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    line-height: 1.2;
}

.licenses-header p {
    color: var(--medium);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Licencias Grid - 2 columnas en escritorio */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.license-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--lightest);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.license-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
}

.license-icon {
    font-size: 2.25rem;
    color: #8B5CF6;
    margin-bottom: 1.25rem;
    text-align: center;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
    min-height: 3.2rem;
}

.license-desc {
    color: var(--medium);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.5;
    flex-grow: 1;
}

.license-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.license-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium);
    line-height: 1.4;
}

.license-features i {
    color: #38b2ac;
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.license-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: #8B5CF6;
    text-align: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--lightest);
}

/* CTA Crypto */
.crypto-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin: 3rem 0 2rem;
    border: 2px solid rgba(139, 92, 246, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.crypto-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #7C3AED);
}

.cta-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.2;
}

.cta-content p {
    color: var(--medium);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-crypto-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

.btn-crypto-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* Nota Crypto */
.crypto-note {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    border-left: 4px solid #8B5CF6;
    margin-top: 2rem;
}

.crypto-note .note-icon {
    font-size: 1.75rem;
    color: #8B5CF6;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.note-content p {
    margin-bottom: 0;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
}

.note-content strong {
    color: #7C3AED;
}

/* ==========================================================================
   RESPONSIVE CRYPTO SECTION
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .crypto-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .crypto-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(19, 2, 56, 0.1);
        padding-bottom: 2.5rem;
    }
    
    .crypto-licenses {
        padding-left: 0;
    }
    
    .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .crypto-cta {
        padding: 2rem;
    }
}

/* Móvil (576px - 768px) */
@media (max-width: 768px) {
    .crypto-section {
        padding: 4rem 0;
    }
    
    .crypto-content {
        gap: 2.5rem;
    }
    
    .crypto-info {
        padding-bottom: 2rem;
    }
    
    .crypto-intro h3 {
        font-size: 1.5rem;
    }
    
    .crypto-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .crypto-feature i {
        margin: 0 auto;
    }
    
    .crypto-process h3 {
        font-size: 1.4rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .process-step .step-number {
        margin: 0 auto;
    }
    
    .licenses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .license-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .license-title {
        min-height: auto;
        font-size: 1.2rem;
    }
    
    .crypto-cta {
        padding: 1.75rem;
        margin: 2rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-crypto-cta,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .crypto-note {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .crypto-note .note-icon {
        margin: 0 auto;
    }
    
    /* Ajustes específicos para botones del hero en móvil */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-hero-btn.crypto-btn {
        width: 100%;
        max-width: 300px;
        margin: 0.75rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
}

/* Móvil pequeño (hasta 576px) */
@media (max-width: 576px) {
    .crypto-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .crypto-content {
        gap: 2rem;
    }
    
    .crypto-intro h3 {
        font-size: 1.35rem;
    }
    
    .crypto-feature {
        padding: 1.25rem;
    }
    
    .crypto-feature i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .license-card {
        padding: 1.25rem;
    }
    
    .license-icon {
        font-size: 2rem;
        height: 60px;
    }
    
    .license-title {
        font-size: 1.1rem;
    }
    
    .license-price {
        font-size: 1.25rem;
    }
    
    .crypto-cta {
        padding: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .btn-crypto-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .crypto-note {
        padding: 1.25rem;
    }
    
    .note-content p {
        font-size: 0.95rem;
    }
    
    /* Ajustes para títulos de sección */
    .section-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1.25rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Extra pequeño (hasta 400px) */
@media (max-width: 400px) {
    .crypto-section {
        padding: 2.5rem 0;
    }
    
    .crypto-intro h3 {
        font-size: 1.25rem;
    }
    
    .crypto-process h3 {
        font-size: 1.2rem;
    }
    
    .licenses-header h3 {
        font-size: 1.4rem;
    }
    
    .license-features li {
        font-size: 0.85rem;
    }
    
    .btn-crypto-cta {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
    
    .btn-crypto-cta i {
        font-size: 1rem;
    }
}

/* Animaciones para móvil */
@media (max-width: 768px) {
    .crypto-feature,
    .process-step,
    .license-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .crypto-feature:nth-child(1) { animation-delay: 0.1s; }
    .crypto-feature:nth-child(2) { animation-delay: 0.2s; }
    .crypto-feature:nth-child(3) { animation-delay: 0.3s; }
    
    .process-step:nth-child(1) { animation-delay: 0.2s; }
    .process-step:nth-child(2) { animation-delay: 0.3s; }
    .process-step:nth-child(3) { animation-delay: 0.4s; }
    .process-step:nth-child(4) { animation-delay: 0.5s; }
    
    .license-card:nth-child(1) { animation-delay: 0.1s; }
    .license-card:nth-child(2) { animation-delay: 0.2s; }
    .license-card:nth-child(3) { animation-delay: 0.3s; }
    .license-card:nth-child(4) { animation-delay: 0.4s; }
    .license-card:nth-child(5) { animation-delay: 0.5s; }
    .license-card:nth-child(6) { animation-delay: 0.6s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejoras de rendimiento para móvil */
@media (max-width: 768px) {
    .crypto-section::before {
        animation: gradientShiftMobile 4s ease infinite;
    }
    
    @keyframes gradientShiftMobile {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
}

/* Ajustes de altura en móvil para mejor UX */
@media (max-width: 768px) and (orientation: portrait) {
    .crypto-section {
        min-height: auto;
    }
    
    .license-card {
        min-height: auto;
    }
}