/**
 * ============================================
 * CONNEX HUB - STYLESHEET
 * ============================================
 * 
 * Estilos principais da landing page.
 * Design clean e sofisticado com gradientes modernos.
 * ============================================
 */

/* ============================================
   VARIÁVEIS CSS - CONNEX HUB BRAND COLORS
   ============================================ */
:root {
    /* Cores da Marca Connex Hub */
    --gold: #B69336;              /* Dourado principal */
    --gold-light: #D4B85A;        /* Dourado claro (hover) */
    --gold-dark: #9A7A2A;         /* Dourado escuro */
    --dark-blue: #0C1014;         /* Azul escuro principal */
    --dark-blue-light: #1A1F26;    /* Azul escuro claro */
    
    /* Cores funcionais */
    --primary-color: #B69336;      /* Dourado como cor primária */
    --primary-dark: #9A7A2A;       /* Dourado escuro */
    --primary-light: #D4B85A;      /* Dourado claro */
    --secondary-color: #0C1014;    /* Azul escuro como secundária */
    --accent-color: #B69336;       /* Accent em dourado */
    
    /* Cores de texto */
    --text-dark: #0C1014;          /* Texto escuro (azul escuro) */
    --text-light: #6B7280;          /* Texto claro/cinza */
    --text-white: #ffffff;          /* Texto branco */
    
    /* Backgrounds */
    --bg-light: #D2D2D2;           /* Background cinza claro */
    --bg-white: #D2D2D2;           /* Background cinza (substitui branco) */
    --bg-dark: #0C1014;            /* Background escuro */
    
    /* Bordas e divisores */
    --border-color: #E5E7EB;       /* Cor de borda */
    --border-gold: rgba(182, 147, 54, 0.3); /* Borda dourada sutil */
    
    /* Estados */
    --success-color: #10B981;      /* Verde sucesso */
    --error-color: #EF4444;        /* Vermelho erro */
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(12, 16, 20, 0.1);
    --shadow-md: 0 4px 6px rgba(12, 16, 20, 0.1);
    --shadow-lg: 0 10px 25px rgba(12, 16, 20, 0.15);
    --shadow-xl: 0 20px 40px rgba(12, 16, 20, 0.2);
    --shadow-gold: 0 4px 15px rgba(182, 147, 54, 0.3); /* Sombra dourada */
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo {
    height: auto;
    width: 70%;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    position: relative;
}

.lang-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lang-button:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.4rem;
    list-style: none;
    margin: 0;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 1001;
}

.lang-menu.open {
    display: block;
}

.lang-option {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lang-option:hover,
.lang-option.active {
    background: rgba(182, 147, 54, 0.12);
    color: var(--gold-dark);
}

.lang-flag {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 3px;
    object-fit: cover;
}

.lang-label {
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../img/dubai/bkg.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 20px 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-blue);
    box-shadow: var(--shadow-gold);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--dark-blue);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.package-card {
    background: #E8E8E8;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-currency {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.package-currency-selector {
    margin-bottom: 1rem;
    text-align: center;
}

.currency-select {
    width: 100%;
    max-width: 250px;
    padding: 0.75rem 1rem;
    padding-right: 3rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    background: var(--bg-white);
    border: 2px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    appearance: none;
    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 fill='%23B69336' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.currency-select:hover {
    border-color: var(--dark-blue);
    box-shadow: 0 2px 8px rgba(182, 147, 54, 0.2);
}

.currency-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(182, 147, 54, 0.1);
}

.package-duration {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.package-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    flex-shrink: 0;
}

.package-features {
    list-style: none;
    margin-bottom: auto;
    flex-grow: 1;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.package-button {
    width: 100%;
    margin-top: 2rem;
}

/* ============================================
   TIMELINE / GALLERY SECTION
   ============================================ */
.timeline {
    background: var(--bg-white);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
    background: var(--bg-light);
    cursor: pointer;
}

.timeline-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.timeline-item:hover .timeline-item-content {
    background: linear-gradient(to top, rgba(182, 147, 54, 0.95), rgba(182, 147, 54, 0.7));
}

.timeline-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-item:hover img {
    transform: scale(1.1);
}

.timeline-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    padding: 1.5rem;
    color: white;
    transition: var(--transition);
}

.timeline-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-item-description {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* ============================================
   ROADMAP / ROUTE SECTION - HORIZONTAL TIMELINE
   ============================================ */
.roadmap {
    background: var(--bg-white);
    padding: 80px 0;
}

.roadmap .container {
    display: flex;
    flex-direction: column;
}

.roadmap .section-header {
    position: sticky;
    top: 70px;
    background: var(--bg-white);
    z-index: 10;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.roadmap-timeline-wrapper {
    padding: 0 20px 20px;
    width: 100%;
}

.roadmap-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0 40px;
    width: 100%;
    gap: 0.5rem;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--dark-blue));
    z-index: 1;
    border-radius: 2px;
}

.roadmap-step {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    height: 100%;
}

.roadmap-node {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(182, 147, 54, 0.4);
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    transition: var(--transition);
    flex-shrink: 0;
}

.roadmap-node:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(182, 147, 54, 0.6);
}

.roadmap-day {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

.roadmap-date {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-top: 0.2rem;
}

.roadmap-card {
    background: #f0f0f0;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f0f0f0;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.roadmap-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    text-align: center;
    flex-shrink: 0;
}

.roadmap-card-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.roadmap-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.roadmap-card-list li {
    font-size: 0.75rem;
    color: var(--text-dark);
    padding: 0.4rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.roadmap-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.feature-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-light);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-light);
}

/* ============================================
   FORM
   ============================================ */
.registration-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.address-fields {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(182, 147, 54, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(182, 147, 54, 0.2);
}

.payment-methods-placeholder {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(182, 147, 54, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   PHONE INPUT WRAPPER
   ============================================ */
.phone-input-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    overflow: visible;
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(182, 147, 54, 0.1);
}

.phone-ddi-select {
    position: relative;
    width: 130px;
    min-width: 130px;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: stretch;
}

.phone-ddi-button {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    font-weight: 600;
    cursor: pointer;
    color: inherit;
}

.phone-ddi-button:focus {
    outline: none;
    box-shadow: none;
}

.phone-ddi-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    max-height: 260px;
    overflow-y: auto;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 6px;
    padding: 6px 0;
    z-index: 20;
    display: none;
}

.phone-ddi-menu.open {
    display: block;
}

.phone-ddi-option {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: inherit;
}

.phone-ddi-option:hover {
    background: rgba(0, 0, 0, 0.04);
}

.phone-ddi-option .ddi-label {
    flex: 1;
    text-align: left;
}

.ddi-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.phone-number {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    padding-left: 12px !important;
}

.phone-number:focus {
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .phone-ddi-select {
        width: 120px;
        min-width: 120px;
    }
    
    .phone-ddi-button {
        font-size: 0.9rem;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .phone-ddi-select {
        width: 110px;
        min-width: 110px;
    }
    
    .phone-ddi-button {
        font-size: 0.85rem;
        padding: 0 6px;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method-item {
    position: relative;
}

.payment-method-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    background: var(--bg-white);
}

.payment-method-input:checked + .payment-method-label {
    border-color: var(--gold);
    background: rgba(182, 147, 54, 0.05);
    box-shadow: 0 0 0 3px rgba(182, 147, 54, 0.1);
}

.payment-method-label:hover {
    border-color: var(--gold);
}

.payment-method-name {
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.crypto-selection {
    margin-top: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--success-color);
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-message {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1441px) {
    /* Monitores grandes */
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    /* Desktops */
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablets */
    .container {
        padding: 0 16px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-step {
        flex: 0 0 calc(50% - 1rem);
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .packages {
        padding-bottom: calc(180px + env(safe-area-inset-bottom, 0px));
    }

    .package-button {
        margin-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .roadmap-timeline-wrapper {
        padding: 0 10px 20px;
    }
    
    .roadmap-timeline {
        flex-wrap: wrap;
        justify-content: center;
        padding: 40px 0;
        gap: 1.5rem;
    }
    
    .roadmap-line {
        display: none;
    }
    
    .roadmap-step {
        flex: 0 0 calc(50% - 1rem);
        min-width: 200px;
        max-width: 300px;
    }
    
    .roadmap-node {
        width: 60px;
        height: 60px;
    }
    
    .roadmap-card {
        margin-top: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .registration-form {
        padding: 1.5rem;
    }
}

