/* ================= HERO SECTION ================= */

/* ================= CTA BUTTON SECTION ================= */
.cta-button-section {
    background: var(--bg-light);
    padding: 6px 0;
    text-align: center;
}
/* ================= VARIABLES ================= */
:root {
    /* Paleta estilo Alpha Protocol */
    --primary-blue-dark: #000000;
    --primary-blue: #000000;
    --primary-blue-light: #000000;
    
    --dark-secondary: #000000;
    --dark-tertiary: #0f0f1e;

    --bg-light: #ffffff;
    --surface-light: #f9fafb;
    --text-dark: #1f2937;
    --text-secondary: #000000;
    --border-light: #e5e7eb;
    
    --gold: #ffffff;
    --gold-light: #000000;
}

/* ================= BASE ================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================= HERO SECTION ================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 110, 191, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.logo-img {
    max-width: 200px;
    height: auto;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(1000deg, #ffffff, #c9c9c991);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d1d5db;
}


/* ================= BUTTONS ================= */
.btn-gold {
    background: linear-gradient(135deg, #6e6666 0%, #ffffff 100%);
    color: #000000;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(43, 43, 43, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg,  #ffffff 0%, #6e6666 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.6);
    color: #1d0f44;
}


.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.4);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.6);
}

/* ================= SECTIONS ================= */
.reservation-section {
    background: #ffffff;
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    color: var(--gold);
}


/* ================= ABOUT SECTION ================= */
.about-section {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 80px 0;
}

.about-image {
    border-radius: 20px;
   
    width: 100%;
    max-width: 400px;
}

.about-label {
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffffe8;
}

/* ================= FEATURES SECTION ================= */
.features-section {
    background: #ffffff;
    padding: 80px 0;
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid #000000;
    height: 100%;
    color: var(--border-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #000000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    border-radius: 50%;
}

.feature-title {
    color: var(--border-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ================= FINAL CTA ================= */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-feature svg {
    flex-shrink: 0;
    color: var(--primary-blue-dark);
    background: #f0f4f8;
    padding: 4px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-guarantee {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    opacity: 0.03;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

/* ================= FOOTER ================= */
.footer {
    background: #ffffff;
    padding: 60px 0 30px;
}

.footer-logo {
    max-width: 200px;
}
.social-icon{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #00a2ff;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-iconn{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #ff0000;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-iconnn{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #0004ff;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-iconnnn{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #003cff;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-iconnnn{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    margin: 0 10px;
}
.social-iconnnnn{
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #00ff0d;
    font-size: 1.5rem;
    margin: 0 10px;
}



.copyright {
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-gold {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .final-cta {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .btn-cta-primary {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .cta-features {
        gap: 12px;
    }
}

.video-wrapper {
  position: relative;
  max-width: 800px;
}

/* CTA sobre el video */
.video-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background:linear-gradient(135deg, #133d73 0%, #125ac0 100%);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* CTA debajo del video */
.video-btn1 {
  position: relative; /* no absolute */
  margin-top: 16px;
  background:linear-gradient(135deg, #133d73 0%, #125ac0 100%);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-btn1.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

video {
  width: 100%;
  border-radius: 12px;
}

/* Mobile: el CTA del video al centro */
@media (max-width: 768px) {
  .video-btn {
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(10px);
  }

  .video-btn.show {
    transform: translateX(-50%) translateY(0);
  }
}
