.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-carousel {
    width: 100%;
    height: 580px;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,.15), rgba(26,26,46,.55));
}

.carousel-overlay-text {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.carousel-overlay-text h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    text-shadow: 2px 4px 16px rgba(0,0,0,.5);
    margin-bottom: 8px;
}

.carousel-overlay-text h1 span {
    color: var(--yellow);
}

.carousel-overlay-text p {
    color: rgba(255,255,255,.9);
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 1px 2px 8px rgba(0,0,0,.4);
}

.carousel-indicators {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .3s;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--yellow);
    transform: scale(1.3);
    border-color: var(--purple);
}

.action-strip {
    background: var(--dark);
    padding: 28px 0;
}

.action-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-action-wsp,
.btn-action-planes {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .3s;
}

.btn-action-wsp {
    background: #25D366;
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    border: 2px solid rgba(255,255,255,.2);
}

.btn-action-planes {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(255,217,61,.35);
}

.btn-action-wsp:hover,
.btn-action-planes:hover {
    transform: translateY(-3px);
}

.stats-section,
.services-section,
.testi-section {
    background: white;
    padding: 70px 0;
}

.stats-section {
    padding: 50px 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-card {
    background: var(--bg);
    border-radius: 22px;
    padding: 28px 16px;
    border-top: 4px solid var(--purple);
    transition: transform .3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:nth-child(2) { border-color: var(--pink); }
.stat-card:nth-child(3) { border-color: var(--teal); }
.stat-card:nth-child(4) { border-color: var(--yellow); }

.stat-num {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: var(--dark);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: .92rem;
    color: var(--text);
    font-weight: 800;
}

.divider-bar {
    width: 100%;
    height: 10px;
    background: var(--yellow);
    box-shadow: 0 4px 0 var(--purple), 0 6px 12px rgba(0,0,0,.1);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.15;
}

.section-title .hl {
    color: var(--purple);
}

.section-sub {
    color: var(--text);
    font-size: 1.02rem;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .35s;
    text-decoration: none;
    display: block;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(123,47,190,.2);
    border-color: var(--purple);
}

.sc-top {
    padding: 36px 28px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) .sc-top {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.service-card:nth-child(2) .sc-top {
    background: linear-gradient(135deg, var(--orange), #FF9800);
}

.service-card:nth-child(3) .sc-top {
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.sc-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin: 0 auto 16px;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.sc-top h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.sc-top p {
    font-size: .9rem;
    opacity: .9;
    line-height: 1.5;
}

.sc-body {
    background: white;
    padding: 22px 28px;
}

.sc-body p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 18px;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple);
    font-weight: 900;
    font-size: .92rem;
    text-decoration: none;
}

.features-section,
.contact-section {
    background: var(--bg);
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--purple);
    transition: transform .3s;
}

.feature-card:hover {
    transform: translateY(-7px);
}

.feature-card:nth-child(2) { border-color: var(--pink); }
.feature-card:nth-child(3) { border-color: var(--teal); }
.feature-card:nth-child(4) { border-color: var(--yellow); }

.feat-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
}

.feat-icon.p { background: linear-gradient(135deg, var(--purple), #9C4FD4); }
.feat-icon.pk { background: linear-gradient(135deg, var(--pink), #ff80c0); }
.feat-icon.t { background: linear-gradient(135deg, var(--teal), #00e5cc); }
.feat-icon.y { background: linear-gradient(135deg, var(--orange), var(--yellow)); }

.feature-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.55;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testi-card {
    background: var(--bg);
    border-radius: 22px;
    padding: 28px;
    border-left: 4px solid var(--purple);
    transition: transform .3s;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-stars {
    color: #FFD93D;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testi-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 14px;
    font-size: .96rem;
}

.testi-autor {
    font-weight: 900;
    color: var(--purple);
    font-size: .88rem;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0eaf8;
}

.contact-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ci-text strong {
    display: block;
    font-size: .8rem;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.ci-text span {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 800;
}

.btn-llegar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple);
    color: white;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    margin-top: 24px;
    transition: all .3s;
    border: 2px solid var(--yellow);
}

.btn-llegar:hover {
    background: var(--pink);
    transform: translateY(-3px);
}

.map-embed {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 360px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    display: block;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark), #2D1B69);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 20px 48px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(37,211,102,.4);
    transition: all .3s;
    border: 3px solid rgba(255,255,255,.2);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

@media (max-width: 992px) {
    .stats-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .testi-grid,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .services-grid {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
    }

    .carousel-overlay-text h1 {
        font-size: 1.9rem;
    }

    .carousel-overlay-text p {
        font-size: 1rem;
    }

    .action-inner {
        flex-direction: column;
    }

    .btn-action-wsp,
    .btn-action-planes {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 300px;
    }

    .stats-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}