/* ============================================
   ATTRACTION LANDING — Tornado Extreme
   ============================================ */

.text-orange {
    background: linear-gradient(180deg, #fbb040 0%, #f5821f 50%, #e8451f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(245, 130, 31, 0.22));
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-gray);
    padding: 14px 0;
    font-size: 14px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--gray);
}

.breadcrumb .current {
    color: var(--dark);
    font-weight: 600;
}

/* Hero */
.attr-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    padding: 100px 0 80px;
}

.attr-hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/home.webp') center/cover;
    z-index: 0;
    transform: scale(1.05);
    animation: subtleZoom 20s ease-in-out infinite alternate;
}

/* AquaFamily Kids — variante familiar/infantil con tonos turquesa */
.attr-hero-bg-aqua {
    background: url('assets/pop.webp') center/cover;
}

.attr-hero-overlay-aqua {
    background:
        linear-gradient(135deg, rgba(40, 130, 200, 0.85) 0%, rgba(20, 80, 160, 0.78) 100%),
        radial-gradient(circle at 70% 50%, rgba(120, 220, 240, 0.35) 0%, transparent 55%) !important;
}

.attr-hero-aqua h1 {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.attr-tag-blue {
    background: rgba(40, 180, 220, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes subtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.attr-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(20, 50, 120, 0.78) 0%, rgba(10, 20, 50, 0.85) 100%),
        radial-gradient(circle at 70% 50%, rgba(245, 130, 31, 0.25) 0%, transparent 50%);
    z-index: 1;
}

.attr-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.attr-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #f5a623 0%, #e8451f 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(245, 130, 31, 0.5);
    animation: pulse 2.5s infinite;
}

.attr-hero h1 {
    font-size: clamp(60px, 11vw, 160px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 24px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.attr-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 500;
}

.attr-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.attr-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.attr-tag-red {
    background: rgba(232, 69, 31, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
}

.attr-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost-large {
    padding: 20px 44px;
    font-size: 16px;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    z-index: 2;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-hint i {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    animation: bounce 2s infinite;
}

/* Stats */
.attr-stats {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.attr-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 130, 31, 0.15) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.attr-stat {
    text-align: center;
    color: var(--white);
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.attr-stat:last-child {
    border-right: none;
}

.attr-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(245, 130, 31, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 24px;
}

.attr-stat-num {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #fbb040 0%, #f5821f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.attr-stat-num span {
    font-size: 22px;
    margin-left: 4px;
    letter-spacing: 0;
}

.attr-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.85;
}

/* Description */
.attr-description {
    padding: 100px 0;
    background: var(--white);
}

.desc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.desc-text .section-tag {
    color: var(--orange);
    margin-bottom: 16px;
}

.desc-text h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.desc-text h2 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.desc-text h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 14px;
    background: rgba(245, 130, 31, 0.3);
    z-index: -1;
}

.desc-text .lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 500;
}

.desc-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 28px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--orange);
    font-size: 18px;
}

.desc-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
    height: 480px;
}

.visual-card {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 22px rgba(15, 30, 60, 0.10);
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.visual-1 {
    grid-row: span 2;
    background-image: linear-gradient(135deg, rgba(20, 50, 120, 0.4), rgba(232, 69, 31, 0.3)), url('assets/home.webp');
}

.visual-2 {
    background-image: linear-gradient(135deg, rgba(245, 130, 31, 0.3), rgba(20, 50, 120, 0.4)), url('assets/3.webp');
    grid-row: span 2;
}

/* Steps */
.attr-steps {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.attr-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.attr-step {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 12px rgba(15, 30, 60, 0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.attr-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(15, 30, 60, 0.09);
}

.attr-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f5a623 0%, #e8451f 100%);
}

.attr-step-num {
    display: inline-block;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(180deg, #f5a623 0%, #e8451f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.attr-step h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.attr-step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Safety */
.attr-safety {
    padding: 80px 0;
    background: var(--white);
}

.safety-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    border-radius: 10px;
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 130, 31, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.safety-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #f5a623 0%, #e8451f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(245, 130, 31, 0.4);
    position: relative;
    z-index: 1;
}

.safety-content {
    position: relative;
    z-index: 1;
}

.safety-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.safety-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.safety-rules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rule {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

.rule i {
    color: var(--orange);
    font-size: 16px;
}

/* Final CTA */
.attr-final-cta {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(20, 50, 120, 0.92) 0%, rgba(232, 69, 31, 0.85) 100%),
        url('assets/3.webp') center/cover;
    text-align: center;
    color: var(--white);
}

.attr-final-cta h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.attr-final-cta p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 36px;
}

.btn-buy-large {
    padding: 22px 56px;
    font-size: 18px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .desc-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .desc-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .attr-stat:nth-child(2) {
        border-right: none;
    }

    .attr-stat-num {
        font-size: 50px;
    }

    .attr-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 40px 28px;
    }

    .safety-icon {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .desc-text h2,
    .attr-final-cta h2 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .attr-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 30px;
    }

    .attr-stat:last-child {
        border-bottom: none;
    }

    .attr-steps-grid {
        grid-template-columns: 1fr;
    }

    .safety-rules {
        grid-template-columns: 1fr;
    }

    .visual-card {
        height: 200px;
    }

    .desc-visual {
        grid-template-rows: auto;
        height: auto;
    }
}
