:root {
    /* Paleta INTEGRA - Teal + Amarillo/Dorado */
    --teal-primary: #0D6E7A;
    --teal-dark: #094E58;
    --teal-medium: #1A8C9C;
    --teal-light: #3AB5C5;
    --teal-pale: #D0EFF3;

    --yellow-primary: #F5C518;
    --yellow-dark: #D4A017;
    --yellow-light: #FFDF5C;

    --cyan-accent: #00C3D4;
    --green-accent: #2DC6A0;

    --white: #FFFFFF;
    --off-white: #F4FBFC;
    --gray-light: #EEF7F9;
    --gray-text: #4A6470;
    --dark: #0A2E35;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #0D6E7A 0%, #1A8C9C 100%);
    --gradient-hero: linear-gradient(135deg, rgba(9, 78, 88, 0.92) 0%, rgba(13, 110, 122, 0.88) 60%, rgba(0, 195, 212, 0.7) 100%);
    --gradient-yellow: linear-gradient(135deg, #F5C518 0%, #D4A017 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #D0EFF3 100%);
    --gradient-dark: linear-gradient(135deg, #0A2E35 0%, #0D6E7A 100%);
    --gradient-premium: linear-gradient(135deg, #094E58 0%, #F5C518 100%);
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--dark);
}

/* ============================================
   NAVBAR
============================================ */
.navbar-custom {
    background: var(--gradient-primary) !important;
    padding: 0.8rem 0;
    box-shadow: 0 4px 24px rgba(13, 110, 122, 0.35);
    transition: all 0.35s ease;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#logo img {
    max-height: 52px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

#logo img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    margin: 0 4px;
    padding: 7px 14px !important;
    border-radius: 50px;
}

.navbar-nav .nav-link:hover {
    background: rgba(245, 197, 24, 0.25);
    color: var(--yellow-light) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background: var(--yellow-primary);
    color: var(--teal-dark) !important;
    font-weight: 600;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    background: var(--gradient-hero),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 195, 212, 0.18), transparent 55%),
                radial-gradient(circle at 20% 80%, rgba(245, 197, 24, 0.12), transparent 50%);
    pointer-events: none;
}

/* Decorative medical cross */
.hero-section::after {
    content: '+';
    position: absolute;
    top: 12%;
    right: 8%;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(245, 197, 24, 0.1);
    line-height: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 1rem;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--gradient-yellow);
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--yellow-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-date i { color: var(--yellow-primary); }

.hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    opacity: 0.92;
}

.hero-meta-item i {
    color: var(--cyan-accent);
    font-size: 1rem;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-yellow);
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(245, 197, 24, 0.55);
    color: var(--teal-dark);
}

/* ============================================
   SOCIAL LINKS
============================================ */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.social-links a:hover {
    background: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: var(--teal-dark);
    transform: translateY(-3px);
}

/* ============================================
   COUNTDOWN SECTION
============================================ */
.countdown-section {
    background: var(--gradient-dark);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 195, 212, 0.06);
    pointer-events: none;
}

.countdown-section h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.92;
    margin-bottom: 2.5rem;
}

.countdown-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    border: 1px solid rgba(0, 195, 212, 0.25);
    margin: 0 8px;
    position: relative;
}

.countdown-box::after {
    content: ':';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-60%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow-primary);
    opacity: 0.7;
}

.countdown-box:last-child::after { display: none; }

.countdown-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--yellow-primary);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ============================================
   SECTION TITLES
============================================ */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--teal-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background: var(--gradient-yellow);
    border-radius: 4px;
    margin: 12px auto 0;
}

/* ============================================
   ABOUT SECTION
============================================ */
#about {
    background: var(--off-white);
    padding: 80px 0;
}

.card-custom {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(13, 110, 122, 0.1);
    transition: all 0.35s ease;
    background: white;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(13, 110, 122, 0.18);
}

.card-custom .card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-custom .card-body h4.accent-teal { color: var(--teal-primary); }
.card-custom .card-body h4.accent-yellow { color: var(--yellow-dark); }

.card-custom .card-body ul {
    list-style: none;
    padding: 0;
}

.card-custom .card-body ul li {
    padding: 6px 0;
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.93rem;
    color: var(--gray-text);
}

.card-custom .card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-light);
    font-weight: 700;
}

/* ============================================
   SPEAKERS SECTION
============================================ */
#speakers {
    background: var(--gray-light);
    padding: 80px 0;
}

.speaker-card {
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.speaker-card::before {
    content: '';
    display: block;
    height: 5px;
    background: var(--gradient-primary);
}

.speaker-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--teal-pale);
    margin: 1.2rem auto 0.8rem;
    transition: border-color 0.3s;
}

.speaker-card:hover .speaker-img {
    border-color: var(--yellow-primary);
}

.speaker-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 0.6rem;
}

.btn-outline-primary.btn-sm {
    border-color: var(--teal-primary);
    color: var(--teal-primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 18px;
    transition: all 0.25s;
}

.btn-outline-primary.btn-sm:hover {
    background: var(--teal-primary);
    color: white;
}

/* ============================================
   PROGRAM SECTION
============================================ */
.program-section {
    background: var(--white);
    padding: 80px 0;
}

.program-subtitle {
    color: var(--gray-text);
    font-size: 1rem;
}

.program-tabs-container {
    margin-bottom: 2.5rem;
}

.program-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--gray-light);
    border-radius: 50px;
    padding: 8px;
    margin: 0 auto 2rem;
    max-width: 700px;
}

.program-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    color: var(--teal-primary);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.program-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 110, 122, 0.3);
}

.tab-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.tab-content-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tab-day {
    font-weight: 700;
    font-size: 0.9rem;
}

.tab-date {
    font-size: 0.72rem;
    opacity: 0.8;
}

.program-day-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(13, 110, 122, 0.1);
}

.program-day-header {
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    color: white;
}

.program-day-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.day-badge {
    display: inline-block;
    background: rgba(245, 197, 24, 0.25);
    border: 1px solid var(--yellow-primary);
    color: var(--yellow-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 50px;
    margin-top: 6px;
    letter-spacing: 0.06em;
}

.closing-badge { background: rgba(255,255,255,0.15); }

.program-day-body {
    padding: 2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal-pale), var(--teal-light), var(--teal-pale));
}

.timeline-item {
    position: relative;
    padding: 0 0 1.5rem 24px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background: var(--gradient-primary);
    color: white;
    z-index: 1;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(13, 110, 122, 0.25);
}

.speaker-marker { background: linear-gradient(135deg, var(--teal-medium), var(--teal-light)); }
.workshop-marker { background: var(--gradient-yellow); color: var(--teal-dark); }
.break-marker {
    background: white;
    border: 2px solid var(--teal-pale);
    color: var(--gray-text);
}

.timeline-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal-medium);
    letter-spacing: 0.06em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.timeline-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.timeline-description {
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.55;
}

.timeline-tags {
    margin-top: 6px;
}

.tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    margin: 2px;
}

.workshop-tag {
    background: rgba(245, 197, 24, 0.2);
    color: var(--yellow-dark);
}

.featured-event .timeline-content {
    background: linear-gradient(135deg, rgba(13, 110, 122, 0.06), rgba(0, 195, 212, 0.05));
    border-left: 3px solid var(--teal-primary);
    border-radius: 0 12px 12px 0;
    padding: 10px 14px;
}

.featured-event .timeline-title {
    color: var(--teal-dark);
    font-size: 1rem;
}

.break-item .timeline-content {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 8px 14px;
}

.break-item .timeline-title {
    color: var(--gray-text);
    font-size: 0.85rem;
}

.workshop-item .timeline-content {
    border-left: 3px solid var(--yellow-primary);
    padding-left: 10px;
}

/* ============================================
   VENUE SECTION
============================================ */
#venue {
    background: var(--off-white);
    padding: 80px 0;
}

.venue-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(13, 110, 122, 0.12);
    background: white;
}

.venue-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.venue-card .card-body {
    padding: 1.8rem;
}

.venue-card h4 {
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.venue-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 1rem;
}

.venue-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-text);
}

.venue-service-item i {
    color: var(--teal-medium);
    width: 16px;
    text-align: center;
}

/* ============================================
   ACCESS PASS / CARNET SECTION
============================================ */
.access-pass-section {
    background: var(--off-white);
    padding: 80px 0;
}

.access-subtitle {
    color: var(--gray-text);
    font-size: 1rem;
}

.access-pass-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13, 110, 122, 0.14);
    border: 1px solid var(--teal-pale);
}

.pass-header {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.pass-header::before {
    content: '+';
    position: absolute;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    right: -2rem;
    top: -3rem;
    line-height: 1;
}

.pass-icon-container {
    margin-bottom: 1rem;
}

.pass-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-yellow);
    color: var(--teal-dark);
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
}

.pass-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.pass-header p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.current-phase-banner {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.phase-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 197, 24, 0.2);
    border: 1px solid var(--yellow-primary);
    color: var(--yellow-light);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.08em;
}

.phase-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: white;
}

.price-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow-primary);
}

.price-currency {
    font-size: 0.85rem;
    opacity: 0.8;
}

.countdown-container {
    background: var(--dark);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    opacity: 0.85;
    margin-bottom: 8px;
}

.countdown-header i { color: var(--yellow-primary); }

.countdown-text {
    font-size: 0.78rem;
    opacity: 0.65;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.countdown-unit {
    text-align: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 72px;
}

.countdown-value {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--yellow-primary);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-top: 3px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow-primary);
    opacity: 0.5;
    margin-bottom: 12px;
}

.countdown-deadline {
    font-size: 0.8rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.countdown-deadline i { color: var(--yellow-primary); }

/* Pass content cards */
.pass-content {
    padding: 2rem;
}

.includes-card,
.important-info-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.includes-card h4,
.important-info-card h4 {
    color: var(--teal-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.includes-card h4 i { color: var(--green-accent); }
.important-info-card h4 i { color: var(--teal-medium); }

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--teal-pale);
    font-size: 0.88rem;
}

.includes-list li:last-child { border-bottom: none; }

.includes-list li i {
    color: var(--teal-medium);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.includes-list li strong {
    display: block;
    color: var(--dark);
    font-size: 0.88rem;
}

.includes-list li span {
    font-size: 0.78rem;
    color: var(--gray-text);
}

.info-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--teal-pale);
    font-size: 0.88rem;
}

.info-item:last-child { border-bottom: none; }

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-dark);
}

.success-item .info-icon {
    background: rgba(44, 198, 160, 0.15);
    color: var(--green-accent);
}

.info-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 2px;
}

.info-content p {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

.cta-button-container {
    margin-top: 1.5rem;
}

.btn-access-pass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(13, 110, 122, 0.35);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-access-pass:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(13, 110, 122, 0.45);
    color: white;
}

.btn-price {
    background: rgba(245, 197, 24, 0.25);
    border: 1px solid var(--yellow-primary);
    color: var(--yellow-light);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.82rem;
}

/* Phases Table */
.phases-table-container {
    padding: 1.5rem 2rem 2rem;
    background: var(--gray-light);
}

.phases-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phases-title i { color: var(--teal-medium); }

.phases-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(13, 110, 122, 0.08);
}

.phases-table thead tr {
    background: var(--gradient-primary);
    color: white;
}

.phases-table th {
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.phases-table td {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-text);
}

.phase-active td { background: rgba(13, 110, 122, 0.04); }

.phase-number {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-dark);
}

.phase-number i { color: var(--yellow-primary); }

.price-cell {
    font-weight: 700;
    color: var(--teal-dark);
    font-size: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.active-badge {
    background: rgba(13, 110, 122, 0.1);
    color: var(--teal-dark);
    border: 1px solid var(--teal-light);
}

.upcoming-badge {
    background: rgba(245, 197, 24, 0.12);
    color: var(--yellow-dark);
    border: 1px solid var(--yellow-primary);
}

.expired-badge {
    background: #f0f0f0;
    color: #888;
    border: 1px solid #ddd;
}

.savings-alert {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--teal-dark);
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.savings-alert i { color: var(--yellow-dark); }

/* ============================================
   WORKSHOPS SECTION
============================================ */
.workshops-section {
    background: var(--white);
    padding: 80px 0;
}

.workshops-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13, 110, 122, 0.12);
}

.workshops-header {
    background: var(--gradient-yellow);
    padding: 1.5rem 2rem;
}

.workshops-header h3 {
    color: var(--teal-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.workshops-badge {
    display: inline-block;
    background: rgba(13, 110, 122, 0.15);
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 50px;
    margin-top: 6px;
    letter-spacing: 0.08em;
}

.workshop-includes-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem;
}

.workshop-includes-card h4 {
    color: var(--teal-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.workshop-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.workshop-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-text);
    border-bottom: 1px solid var(--teal-pale);
}

.workshop-feature-list li:last-child { border-bottom: none; }

.workshop-feature-list li i {
    color: var(--green-accent);
    font-size: 1rem;
}

.workshop-price-tag {
    background: var(--gradient-primary);
    color: white;
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    margin-top: 1rem;
}

.workshop-price-tag .w-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--yellow-primary);
    line-height: 1;
}

.workshop-price-tag .w-price-label {
    font-size: 0.78rem;
    opacity: 0.8;
    display: block;
    margin-top: 3px;
}

.btn-workshop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-yellow);
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-workshop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.5);
    color: var(--teal-dark);
}

.workshops-notes {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--teal-pale);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 240px;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.note-item i {
    color: var(--teal-medium);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.note-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 2px;
}

.note-item p { margin: 0; }

.program-link-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 2rem;
    display: inline-block;
    text-align: center;
    max-width: 400px;
}

.program-link-card i {
    font-size: 2rem;
    color: var(--teal-medium);
    margin-bottom: 0.8rem;
}

.program-link-card h5 {
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.program-link-card p {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--teal-primary);
    color: var(--teal-primary);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline-custom:hover {
    background: var(--teal-primary);
    color: white;
}

/* ============================================
   PACKAGES SECTION
============================================ */
.packages-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.packages-subtitle {
    color: var(--gray-text);
}

.package-type-section {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(13, 110, 122, 0.1);
    background: white;
}

.package-type-header {
    background: var(--gradient-primary);
    padding: 1.8rem 2rem;
    color: white;
}

.premium-header {
    background: var(--gradient-dark);
}

.package-type-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-type-badge i {
    font-size: 1.5rem;
    color: var(--yellow-primary);
}

.package-type-badge h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.basic-badge i { color: var(--yellow-light); }
.premium-badge i { color: var(--yellow-primary); }

.vip-label {
    background: var(--yellow-primary);
    color: var(--teal-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 0.1em;
}

.package-type-description {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.9rem;
}

.package-content {
    padding: 2rem;
}

.features-card,
.pricing-options-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.premium-features {
    background: linear-gradient(135deg, rgba(9, 78, 88, 0.04), rgba(0, 195, 212, 0.04));
    border: 1px solid var(--teal-pale);
}

.features-title {
    color: var(--teal-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.premium-title { color: var(--teal-dark); }

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--teal-pale);
    font-size: 0.88rem;
}

.features-list li:last-child { border-bottom: none; }

.features-list li i {
    color: var(--teal-medium);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.premium-list li i { color: var(--yellow-dark); }

.features-list li strong {
    display: block;
    color: var(--dark);
    font-size: 0.88rem;
}

.features-list li span {
    font-size: 0.78rem;
    color: var(--gray-text);
}

.pricing-title {
    color: var(--teal-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-title i { color: var(--yellow-dark); }

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1.5px solid var(--teal-pale);
    transition: all 0.25s;
}

.pricing-option:hover {
    border-color: var(--teal-light);
    box-shadow: 0 3px 12px rgba(13, 110, 122, 0.1);
}

.featured-option {
    border-color: var(--teal-primary);
    background: linear-gradient(135deg, rgba(13, 110, 122, 0.04), rgba(0, 195, 212, 0.03));
}

.best-value {
    border-color: var(--yellow-primary);
    background: rgba(245, 197, 24, 0.04);
}

.pricing-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-dark);
    font-size: 0.95rem;
}

.featured-option .pricing-option-icon {
    background: var(--gradient-primary);
    color: white;
}

.best-value .pricing-option-icon {
    background: var(--gradient-yellow);
    color: var(--teal-dark);
}

.pricing-option-info {
    flex: 1;
}

.pricing-option-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px;
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin: 0;
}

.pricing-option-price {
    text-align: right;
}

.pricing-option-price .price-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dark);
}

.pricing-option-price .price-currency {
    font-size: 0.7rem;
    color: var(--gray-text);
    margin-left: 2px;
}

.packages-info {
    background: linear-gradient(135deg, rgba(13, 110, 122, 0.08), rgba(0, 195, 212, 0.06));
    border: 1px solid var(--teal-pale);
    color: var(--teal-dark);
    border-radius: 14px;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
}

/* Group Benefits */
.group-benefits-section {
    background: var(--dark);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.group-benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 195, 212, 0.08), transparent 50%);
    pointer-events: none;
}

.group-benefit-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0, 195, 212, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.group-benefit-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.group-benefit-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--yellow-primary);
    line-height: 1;
}

.group-benefit-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    margin-bottom: 8px;
}

.group-benefit-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

#gallery-tabs .nav-link {
    border-radius: 50px;
    color: var(--teal-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    transition: all 0.25s;
    border: 1.5px solid var(--teal-pale);
    margin: 3px;
}

#gallery-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(9, 78, 88, 0.85));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 1.3rem;
}

/* ============================================
   CONTACT SECTION
============================================ */
#contact {
    background: var(--off-white);
    padding: 80px 0;
}

.contact-info {
    background: var(--gradient-dark);
    color: white;
    padding: 3rem;
    border-radius: 24px;
}

.contact-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info h4 i { color: var(--yellow-primary); }

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-info p i {
    color: var(--cyan-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info .social-links a {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}

/* Steps (Pasos) section */
.steps-section {
    background: var(--white);
    padding: 80px 0;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--teal-pale);
    box-shadow: 0 3px 14px rgba(13, 110, 122, 0.07);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateX(5px);
    border-color: var(--teal-light);
    box-shadow: 0 6px 22px rgba(13, 110, 122, 0.13);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 110, 122, 0.3);
}

.step-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

/* Payment section */
.payment-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.payment-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13, 110, 122, 0.2);
    color: white;
    padding: 0;
}

.payment-card-inner {
    background: rgba(255,255,255,0.06);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 1.5rem;
}

.payment-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 0.9rem;
}

.payment-field:last-child { border-bottom: none; }

.payment-field-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.payment-field-value {
    font-weight: 700;
    font-size: 1rem;
}

.payment-note {
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.4);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.82rem;
    text-align: center;
    margin: 1rem 1.5rem;
    color: var(--yellow-light);
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 30px;
}

footer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

footer h5 i { color: var(--yellow-primary); }

footer p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
}

footer .social-links a {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 1.5rem 0;
}

/* ============================================
   MODAL
============================================ */
.modal-header {
    background: var(--gradient-primary) !important;
    color: white;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

/* ============================================
   ANIMATIONS
============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.6s ease;
}

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

/* ============================================
   GENERAL BUTTONS
============================================ */
.btn-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(13, 110, 122, 0.3);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 110, 122, 0.45);
    color: white;
}

/* ============================================
   NOTE CARD (comparison note)
============================================ */
.note-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--teal-pale);
}

.note-card i {
    font-size: 1.5rem;
    color: var(--yellow-dark);
    margin-bottom: 0.5rem;
}

.note-card h5 {
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.note-card p {
    font-size: 0.88rem;
    color: var(--gray-text);
    margin: 0;
}

.note-card a { color: var(--teal-medium); font-weight: 600; }

/* Event finished message */
.event-finished-message {
    text-align: center;
    padding: 50px 30px;
    background: rgba(44, 198, 160, 0.08);
    border-radius: 20px;
    color: white;
}

.event-finished-message i {
    font-size: 4rem;
    color: var(--green-accent);
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   TOURS SECTION
============================================ */
.tours-section {
    background: var(--off-white);
    padding: 80px 0;
}

.tour-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(13, 110, 122, 0.1);
    background: white;
    transition: all 0.35s;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(13, 110, 122, 0.18);
}

.tour-card-img {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.tour-card-body {
    padding: 1.5rem;
}

.tour-card-body h5 {
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tour-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.tour-itinerary-box {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.tour-time-block {
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.2rem 1.8rem;
    text-align: center;
    min-width: 170px;
}

.tour-time {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--yellow-primary);
    line-height: 1;
}

.tour-time-label {
    font-size: 0.72rem;
    opacity: 0.7;
    margin-top: 3px;
    letter-spacing: 0.06em;
}

.tour-description {
    flex: 1;
    min-width: 200px;
}

.tour-description p {
    font-size: 0.88rem;
    line-height: 1.65;
    opacity: 0.85;
    margin: 0;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .hero-section { background-attachment: scroll; }
    
    .current-phase-banner { flex-direction: column; text-align: center; }
    .countdown-unit { min-width: 55px; padding: 8px 10px; }
    .countdown-value { font-size: 1.5rem; }
    
    .program-tabs { max-width: 100%; }
    .program-day-body { padding: 1.2rem; }
    
    .pricing-grid { gap: 8px; }
    .package-content { padding: 1.2rem; }
    
    .contact-info { padding: 1.8rem; }
    .pass-content { padding: 1.2rem; }
    .phases-table-container { padding: 1rem; }
    .workshops-notes { padding: 1rem; }
    
    .tour-itinerary-box { flex-direction: column; gap: 1rem; }
    
    .venue-services { grid-template-columns: 1fr; }
    
    footer .text-md-end { text-align: left !important; margin-top: 1.5rem; }
    footer .social-links { justify-content: flex-start; }
}

@media (max-width: 576px) {
    .countdown-box { margin: 0 2px; padding: 1rem 0.5rem; }
    .countdown-box::after { right: -10px; font-size: 1.5rem; }
    .hero-section::after { display: none; }
    .phases-table th, .phases-table td { padding: 8px 10px; font-size: 0.78rem; }
}

/* ============================================
   FLOATING PARTICLES (médicos/cruces) 
============================================ */
#floating-hearts-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    animation: floatUp 9s ease-out forwards;
    opacity: 0.65;
    font-size: 1.2rem;
}

.floating-heart.small { font-size: 0.9rem; opacity: 0.4; }
.floating-heart.medium { font-size: 1.4rem; opacity: 0.55; }
.floating-heart.large { font-size: 1.9rem; opacity: 0.35; }

/* Override heart colors with medical teal/yellow */
.floating-heart.color-1 { color: var(--teal-light); }
.floating-heart.color-2 { color: var(--yellow-primary); }
.floating-heart.color-3 { color: var(--cyan-accent); }
.floating-heart.color-4 { color: var(--green-accent); }
.floating-heart.color-5 { color: var(--teal-pale); }

@keyframes floatUp {
    0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-100vh) scale(0.5) rotate(30deg); opacity: 0; }
}

@keyframes sway {
    0%, 100% { margin-left: 0; }
    50% { margin-left: 20px; }
}

.floating-heart.sway { animation: floatUp 9s ease-out forwards, sway 3s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .floating-heart { display: none; }
    .hero-section { background-attachment: scroll; }
}