/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores según el brand guide */
    --primary-blue: #2B4C7E;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --accent-orange: #FF6B35;
    --success-green: #28A745;
    --border-color: #E0E0E0;
    
    /* Tipografía - Amarna según el brand guide */
    --font-family: 'Amarante', serif;
    
    /* Espaciado */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
}

/* Estilos base */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-accept:hover {
    background: var(--light-gray);
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-content h2 {
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 30px;
    margin: 0;
    border-radius: 10px 10px 0 0;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: var(--primary-blue);
    margin: 20px 0 10px 0;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    opacity: 0.7;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Animations */
.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* vídeo al fondo */
    filter: brightness(0.6) contrast(1.2);
}

.hero-content {
    position: relative;
    z-index: 1; /* contenido sobre el vídeo */
    margin-top: 120px;
    max-width: 1000px;
    width: 100%;
}
        
    
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-launch {
    position: relative;
    z-index: 2; /* aseguramos que está encima del vídeo */
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 3rem auto;
    max-width: 600px;
}

.hero-launch h3 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hero-launch .offer {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    position: relative;
    z-index: 2; /* el botón también encima */
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-orange);
}
.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-gray) 50%, #e9ecef 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(43, 76, 126, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.about .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .about .steps {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 76, 126, 0.05);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(43, 76, 126, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.step h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-dark);
}

.profiles-and-reservations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.profiles-section {
    margin: 0;
}

.reservations-section {
    margin: 0;
}

.profiles-section .feature-subsection,
.reservations-section .feature-subsection {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(43, 76, 126, 0.05);
    height: 100%;
}

.profiles-section .feature-subsection h4,
.reservations-section .feature-subsection h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.profiles-section ul,
.reservations-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.profiles-section li,
.reservations-section li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.profiles-section .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.reservations-section .check {
    color: var(--success-green);
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.profiles-section .highlight-text {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    border-left: 4px solid var(--accent-orange);
    text-align: center;
    margin: 0;
}

.reservations-section .reservation-options {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
}

.features {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

.feature {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(43, 76, 126, 0.05);
}

.feature-subsection {
    margin-bottom: 2rem;
}

.features .feature-subsection h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.feature .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature .check {
    color: var(--success-green);
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-text {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    margin-top: 1rem;
    border-left: 4px solid var(--accent-orange);
}

.reservation-options {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.reservation-options li {
    margin-bottom: 0.8rem;
}

.feature-highlight {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
}

/* How it Works */
.how-it-works {
    background: var(--light-gray);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.step h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ux-simplified {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ux-simplified h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.ux-simplified ol {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.ux-simplified li {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    text-align: center;
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(43, 76, 126, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.founder-story {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.founder-info h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.founder-info blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
    margin: 0;
}

.verification-system {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.verification-system h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.story .cta-button {
    display: inline-block;
    margin: 0 auto;
}

/* Incentive Section */
.incentive {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 50%, var(--light-gray) 100%);
    text-align: center;
    position: relative;
}

.incentive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.incentive-content {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.incentive-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefits-list li {
    font-size: 1.2rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Registration Form */
.register {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
}

.register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(43, 76, 126, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-group,
.radio-group {
    display: grid;
    gap: 1rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover,
.radio-label:hover {
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    display: none;
}

.checkbox-custom,
.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-color);
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-custom {
    border-radius: 6px;
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    transform: scale(1.1);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
}

.form-privacy {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--success-green);
}

.form-privacy p {
    margin: 0;
    color: var(--text-dark);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-gray) 50%, #e9ecef 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(-45deg, transparent 0%, rgba(40, 167, 69, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial cite {
    color: var(--primary-blue);
    font-weight: 600;
}

.comments-section {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comments-section h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.comments-form .form-group {
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-welcome {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer-welcome em {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Success/Error Messages */
.message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
      .hero {
        min-height: 100vh;
        padding: 100px 0 60px 0;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        filter: brightness(0.6) contrast(1.2);
        /* Asegurar que el video se muestre en móviles */
        display: block !important;
    }
    
    .hero-content {
        margin-top: 60px;
        padding: 0 20px;
    }
      .hero-launch {
        margin: 2rem auto;
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-launch h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
     
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 200px;
        text-align: center;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: var(--light-gray);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .profiles-and-reservations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px 0;
    }
    
    .hero-video {
        /* Mantener video en móviles pequeños */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        z-index: 0;
        filter: brightness(0.6) contrast(1.2);
    }
    
    .hero-content {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-launch,
    .feature,
    .verification-system {
        padding: 2rem 1.5rem;
    }
    
    .about .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
}