﻿:root {
    --dark: #0c0c0d !important;
    --dark-2: #17181a !important;
    --accent: #fcdf00 !important;
    --accent-dim: #fcdf00 !important;
    --cream: #f6f5f1 !important;
    --gray: #6f7275 !important;
    --line: #e7e5df !important;
    --radius: 18px !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.0 !important;
    text-transform: none !important;
}

h1 span {
    line-height: inherit!important;
}
a {
    color: inherit;
    text-decoration: none;
}



.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-dim);
    margin-bottom: 14px;
}

    .eyebrow::before {
    }

.btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .25s ease;
    cursor: pointer;
}

.btn-accent {
    background: var(--accent) !important;
    color: var(--dark) !important;
}

    .btn-accent:hover {
        background: var(--accent-dim);
        transform: translateY(-2px);
    }

.btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
    background: transparent;
}

    .btn-outline:hover {
        background: var(--dark);
        color: #fff;
    }

.section {
    padding:100px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

    .section-head p {
        color: var(--gray);
        font-size: 1.05rem;
        margin-top: 14px;
    }


/* HERO */
.hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(180deg, rgba(12,12,13,.25) 0%, rgba(12,12,13,.85) 100%), url('images.ashx?id=886a58100e60f9245e8626c5bc20725c') right top/cover no-repeat;
    color: #fff !important;
}

.hero-content {
    max-width: 760px;
    padding-top: 0px;
    color: #fff !important;
}

    .hero-content .eyebrow {
        color: var(--accent);
    }

        .hero-content .eyebrow::before {
            background: var(--accent);
        }

    .hero-content h1 {
        font-size: clamp(2.3rem, 6.5vw, 5.2rem) !important;
        margin-bottom: 22px !important;
    }

    .hero-content p {
        font-size: 1.0rem !important;
        color: rgba(255,255,255,.85) !important;
        max-width: 560px !important;
        margin-bottom: 20px !important;
    }

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .hero-scroll .line {
        width: 1px;
        height: 34px;
        background: rgba(255,255,255,.4);
        animation: scrollpulse 1.8s infinite;
    }

@keyframes scrollpulse {
    0%,100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

/* INTRO */
.intro {
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

    .intro-grid h2 {
        font-size: clamp(2rem,4vw,2.8rem) !important;
        margin-bottom: 20px !important;
    }

    .intro-grid p {
        color: var(--gray) !important;
        font-size: 1.05rem !important;
    }

.intro-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    line-height: 40px;
}

    .intro-stats div strong {
        display: block !important;
        font-family: 'Barlow' !important;
        font-size: 2.4rem !important;
        color: var(--dark) !important;
    }

    .intro-stats div span {
        font-size: .78rem !important;
        color: var(--gray) !important;
        text-transform: uppercase !important;
        letter-spacing: .5px !important;
    }

.intro-visual {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: url('images.ashx?id=47f451062f31223667bff37a68ae413b') top center/cover;
}

.intro-Preguntas {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: url('6.jpg') top center/cover;
}

/* WHY - cards */
.why {
    background: linear-gradient(180deg, rgba(12,12,13,.0) 0%, rgba(12,12,13,.0) 100%), url('images.ashx?id=80e67b41823275bdf3f92090a4c25383') right top/cover no-repeat;
    color: #fff;
}

    .why .section-head p {
        color: rgba(255,255,255,.6) !important;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 36px 30px;
    border: 1px solid rgba(255,255,255,.06);
}

    .why-card .num {
        font-family: 'Barlow';
        font-size: 2.2rem;
        color: var(--accent);
        margin-bottom: 18px;
        display: block;
    }

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .icon-circle svg {
        stroke: var(--dark);
    }

.why-card h3 {
    font-size: 1.35rem !important;
    margin-bottom: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.why-card p, .why-card li {
    color: rgba(255,255,255,.65) !important;
    font-size: .95rem !important;
}

.why-card ul {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
}

.why-card li::before {
    content: "— ";
    color: var(--accent);
}

/* METODOLOGIA - timeline */
.method {
    background: var(--cream);
}

.method-track {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
    margin-top: 8px;
}

.method-day {
    background: #fff;
    border-radius: 14px;
    padding: 26px 20px;
    border: 1px solid var(--line);
    text-align: left;
    position: relative;
}

    .method-day .d-num {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--dark);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Barlow';
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .method-day h3 {
        font-size: 1rem !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        margin-bottom: 6px !important;
    }

    .method-day p {
        font-size: .85rem !important;
        color: var(--gray) !important;
    }

/* PLANIFICACION - accordion */
.plan {
    background: #fff;
}

.acc-body li {
    list-style-type: none; /* Quita el punto por defecto de la lista */
    position: relative;
    padding-left: 30px; /* Deja espacio para que entre el icono */
    margin-bottom: 8px; /* Espacio entre los elementos de la lista */
}

    .acc-body li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0; /* Puedes ajustar esto para alinear perfectamente con tu texto */
        width: 25px;
        height: 25px;
        margin-top: 3px; /* El margen que tenías dentro del SVG */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 12.5l2.5 2.5L16 9.5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
    }

.accordion {
    border-top: 1px solid var(--line);
}

.acc-item {
    border-bottom: 1px solid var(--line);
}

.acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 4px;
    cursor: pointer;
}

    .acc-head:hover {
        background: #e9f5fd
    }

    .acc-head h3 {
        font-size: 1.4rem !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }

    .acc-head .time {
        font-size: .9rem;
        color: var(--gray);
        font-weight: 600;
    }

.acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    transition: .25s ease;
}

    .acc-icon svg {
        transition: .25s ease;
    }

.acc-item.open .acc-icon {
    background: var(--dark);
}

    .acc-item.open .acc-icon svg {
        stroke: var(--accent);
        transform: rotate(45deg);
    }

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

    .acc-body ul {
        list-style: none;
        padding: 0 4px 26px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }


/* INCLUYE - grid */
.includes {
    background: var(--cream);
}

.inc-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.inc-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    border: 1px solid var(--line);
}

    .inc-card h3 {
        font-size: 1.1rem;
        text-transform: none;
        letter-spacing: 0;
        margin-bottom: 14px;
    }

    .inc-card ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: .88rem;
        color: var(--gray);
    }

    .inc-card li::before {
    }

.inc-icon {
    margin-bottom: 16px;
}

    .inc-icon svg {
        stroke: #bf0411;
    }

.method-day .d-icon svg {
    stroke: var(--accent);
}

/* CULLERA banner */
.cullera {
    background: linear-gradient(180deg, rgba(12,12,13,.35), rgba(12,12,13,.75)), url('images.ashx?id=a9eefc8f6aa8f1c8920a2e7c6b7f7d81') center/cover;
    color: #fff;
    text-align: center;
}

    .cullera .container {
        max-width: 500px;
    }

    .cullera h2 {
        font-size: clamp(2.2rem,5vw,3.4rem) !important;
        margin-bottom: 18px !important;
    }

.cullera-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

    .cullera-tags span {
        border: 1px solid rgba(255,255,255,.4);
        border-radius: 999px;
        padding: 8px 18px;
        font-size: .8rem;
    }

/* FAQ */
.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
}

/* CTA / RESERVA */
.reserva {
    background: var(--dark);
    color: #fff;
}

.reserva-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.price-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(255,255,255,.08);
}

    .price-card .amount {
        font-family: 'Barlow';
        font-size: 3.2rem;
        color: var(--accent);
    }

        .price-card .amount small {
            font-family: 'Barlow';
            font-size: 1rem;
            color: rgba(255,255,255,.6);
        }

.steps {
    list-style: none;
    counter-reset: step;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .steps li {
        counter-increment: step;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        color: rgba(255,255,255,.75);
        font-size: .95rem;
    }

        .steps li::before {
            content: counter(step);
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: .8rem;
        }



@media (max-width: 900px) {
    .intro-grid, .reserva-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .method-track {
        grid-template-columns: repeat(2,1fr);
    }

    .inc-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    header.nav ul {
        display: none;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        background: linear-gradient(180deg, rgba(12,12,13,.25) 0%, rgba(12,12,13,.85) 100%), url('images.ashx?id=886a58100e60f9245e8626c5bc20725c') right -100px top/cover no-repeat
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(.96);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 650px) {
    .why {
        background: url('images.ashx?id=80e67b41823275bdf3f92090a4c25383') right -400px top/cover no-repeat
    }

    .inc-grid {
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 500px) {
    .hero {
        background: linear-gradient(180deg, rgba(12,12,13,.25) 0%, rgba(12,12,13,.85) 100%), url('images.ashx?id=886a58100e60f9245e8626c5bc20725c') right -170px top/cover no-repeat
    }

    .why {
        background: url('images.ashx?id=80e67b41823275bdf3f92090a4c25383') right -400px top/cover no-repeat
    }
}

@media (max-width: 400px) {
    .hero {
        background: linear-gradient(180deg, rgba(12,12,13,.25) 0%, rgba(12,12,13,.85) 100%), url('images.ashx?id=886a58100e60f9245e8626c5bc20725c') right -240px top/cover no-repeat
    }

    .why {
        background: url('images.ashx?id=80e67b41823275bdf3f92090a4c25383') right -470px top/cover no-repeat
    }
}

@media (max-width: 340px) {
    .hero {
        background: linear-gradient(180deg, rgba(12,12,13,.25) 0%, rgba(12,12,13,.85) 100%), url('images.ashx?id=886a58100e60f9245e8626c5bc20725c') right -340px top /cover no-repeat
    }

    .why {
        background: url('images.ashx?id=80e67b41823275bdf3f92090a4c25383') right -570px top/cover no-repeat
    }
}

.slider,
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 550px;
    /* height: 100vh; */ /* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: White;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}

@media all and (max-width:790px) {
    .slider,
    .slider > div {
        height: 360px;
    }

    .imagePadding {
        padding: 10px
    }
}

.slider > div {
    position: absolute;
}

.slider > i {
    color: White;
    position: absolute;
    font-size: 60px;
    margin: 20px;
    top: 40%;
    text-shadow: 0 10px 2px #90b333;
    transition: .3s;
    width: 30px;
    padding: 10px 13px;
    background: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    line-height: 0;
    box-sizing: content-box;
    border-radius: 50px;
    z-index: 4;
}

    .slider > i svg {
        margin-top: 3px;
    }

.slider > .left {
    left: -100px;
}

.slider > .right {
    right: -100px;
}

.slider:hover > .left {
    left: 0;
}

.slider:hover > .right {
    right: 0;
}

.slider > i:hover {
    background: rgba(255,255,255,0.8);
    transform: translateX(-2px);
}

.slider > i.right:hover {
    transform: translateX(2px);
}

.slider > i.right:active,
.slider > i.left:active {
    transform: translateY(1px);
}

.slider:hover > div {
    transform: scale(1.01);
}

.hoverZoomOff:hover > div {
    transform: scale(1);
}

.slider > ul {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 4;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

    .slider > ul > li {
        padding: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        list-style: none;
        float: left;
        margin: 5px 5px 0;
        cursor: pointer;
        border: 1px solid White;
        -moz-transition: .3s;
        -o-transition: .3s;
        -webkit-transition: .3s;
        transition: .3s;
    }

    .slider > ul > .showli {
        background-color: White;
        -moz-animation: boing .5s forwards;
        -o-animation: boing .5s forwards;
        -webkit-animation: boing .5s forwards;
        animation: boing .5s forwards;
    }

    .slider > ul > li:hover {
        background-color: White;
    }

.slider > .show {
    z-index: 1;
}

.hideDots > ul {
    display: none;
}

.showArrows > .left {
    left: 0;
}

.showArrows > .right {
    right: 0;
}

.titleBar {
    z-index: 2;
    display: inline-block;
    background: rgba(0,0,0,.5);
    position: absolute;
    width: 100%;
    bottom: 0;
    transform: translateY(100%);
    padding: 20px 30px;
    transition: .3s;
    color: #fff;
}

    .titleBar * {
        transform: translate(-20px, 30px);
        transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
        opacity: 0;
    }

.titleBarTop .titleBar * {
    transform: translate(-20px, -30px);
}

.slider:hover .titleBar,
.slider:hover .titleBar * {
    transform: translate(0);
    opacity: 1;
}

.titleBarTop .titleBar {
    top: 0;
    bottom: initial;
    transform: translateY(-100%);
}

.slider > div span {
    display: block;
    background: rgba(0,0,0,.5);
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 0;
    width: 100%;
}


@keyframes boing {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* -------------------------------------- */
