@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&family=Poppins:wght@500;600;700;800&display=swap");

:root {
    --wine-950: #2d1822;
    --wine-900: #432333;
    --wine-800: #583247;
    --rose-700: #a54d75;
    --rose-600: #b85c86;
    --rose-500: #ca7599;
    --rose-300: #e5b2c8;
    --gold-600: #c68f68;
    --gold-400: #e4b88f;
    --violet: #806091;
    --white: #ffffff;
    --cream: #fffaf7;
    --background: #faf5f7;
    --surface: #ffffff;
    --border: #eadde3;
    --text: #3a2631;
    --text-soft: #7b6873;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-ui: "Poppins", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --shadow: 0 20px 55px rgba(69, 34, 51, 0.11);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.section-label,
.eyebrow {
    margin-bottom: 10px;
    color: var(--rose-600);
    font-family: var(--font-ui);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* DEMO */

.demo-banner {
    position: relative;
    z-index: 1200;
    display: grid;
    min-height: 42px;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 7px 22px;
    background:
        linear-gradient(
            90deg,
            var(--rose-700),
            var(--gold-600)
        );
    color: var(--white);
    font-size: 0.78rem;
}

.demo-banner strong {
    letter-spacing: 0.08em;
}

.demo-banner span {
    opacity: 0.87;
}

.demo-banner a {
    font-weight: 800;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(45,24,34,.95);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: grid;
    min-height: 82px;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

.brand-symbol {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--rose-500),
            var(--gold-400)
        );
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.brand small {
    color: #d3bdc8;
    font-size: .65rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: #d7c8cf;
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 600;
    transition: color 180ms ease;
}

nav a:hover {
    color: var(--white);
}

.header-cta,
.button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    border: 0;
    border-radius: 99px;
    font-family: var(--font-ui);
    font-weight: 800;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.header-cta,
.button.primary {
    background: var(--rose-600);
    color: var(--white);
}

.header-cta:hover,
.button.primary:hover {
    box-shadow: 0 14px 30px rgba(184,92,134,.28);
    transform: translateY(-3px);
}

.mobile-menu {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: var(--white);
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(202,117,153,.2),
            transparent 34%
        ),
        linear-gradient(
            90deg,
            #2d1822 0%,
            #432333 50%,
            #70435a 100%
        );
}

.hero-grid {
    display: grid;
    min-height: 680px;
    grid-template-columns:
        minmax(0,.92fr)
        minmax(500px,1.08fr);
    gap: 45px;
    align-items: center;
    padding-top: 65px;
    padding-bottom: 65px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero .eyebrow {
    color: var(--gold-400);
}

.hero h1 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(3rem,5vw,4.8rem);
    line-height: 1.02;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 28px;
    color: #dfd0d7;
    font-size: 1.03rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.button.secondary {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.button.secondary:hover {
    background: rgba(255,255,255,.11);
    transform: translateY(-3px);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    color: #cbb9c2;
    font-size: .73rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-visual img {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 850px;
    max-width: none;
    transform: translate(-50%,-50%);
    filter: drop-shadow(0 28px 65px rgba(0,0,0,.24));
    animation: floatVisual 6s ease-in-out infinite;
}

@keyframes floatVisual {
    0%,100% { transform: translate(-50%,-50%); }
    50% { transform: translate(-50%,calc(-50% - 9px)); }
}


/* TRUST */

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.trust-grid article {
    padding: 24px 22px;
    border-right: 1px solid var(--border);
}

.trust-grid article:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 3px;
    font-family: var(--font-heading);
    font-size: .93rem;
}

.trust-grid span {
    color: var(--text-soft);
    font-size: .72rem;
}


/* HEADINGS */

.section-heading {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr);
    gap: 55px;
    align-items: end;
    margin-bottom: 48px;
}

.section-heading h2,
.schedule-content h2 {
    margin-bottom: 14px;
    font-size: clamp(2.15rem,4vw,3.25rem);
    line-height: 1.12;
}

.section-heading > p {
    margin-bottom: 4px;
}


/* SERVICES */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 23px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(69,34,51,.07);
    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.service-card:hover {
    border-color: rgba(184,92,134,.4);
    box-shadow: 0 26px 55px rgba(184,92,134,.15);
    transform: translateY(-9px);
}

.service-card.gold:hover {
    border-color: rgba(198,143,104,.45);
}

.service-card.violet:hover {
    border-color: rgba(128,96,145,.4);
}

.service-card > img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 450ms ease;
}

.service-card:hover > img {
    transform: scale(1.04);
}

.service-content {
    padding: 27px;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

.service-meta span {
    color: var(--rose-600);
    font-family: var(--font-ui);
    font-size: .76rem;
    font-weight: 800;
}

.service-meta small {
    color: var(--text-soft);
    font-size: .7rem;
}

.service-card.gold .service-meta span,
.service-card.gold .service-link {
    color: var(--gold-600);
}

.service-card.violet .service-meta span,
.service-card.violet .service-link {
    color: var(--violet);
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    min-height: 78px;
    margin-bottom: 21px;
    color: var(--text-soft);
    font-size: .87rem;
}

.service-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--rose-600);
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 800;
}


/* TEAM */

.team {
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}

.team-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 12px 32px rgba(69,34,51,.06);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.team-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.avatar {
    display: inline-flex;
    width: 98px;
    height: 98px;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 50%;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.avatar-one {
    background: linear-gradient(145deg,var(--rose-600),var(--rose-300));
}

.avatar-two {
    background: linear-gradient(145deg,var(--gold-600),var(--gold-400));
}

.avatar-three {
    background: linear-gradient(145deg,var(--violet),#b29cc0);
}

.team-card h3 {
    margin-bottom: 6px;
}

.team-card p {
    margin-bottom: 12px;
    color: var(--text-soft);
    font-size: .83rem;
}

.team-card > span {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 99px;
    background: #f8eef2;
    color: var(--rose-600);
    font-size: .68rem;
    font-weight: 800;
}


/* SCHEDULE */

.schedule {
    background:
        linear-gradient(
            145deg,
            #fffaf7,
            #f7edf1
        );
}

.schedule-grid {
    display: grid;
    grid-template-columns: minmax(0,.85fr) minmax(430px,1.15fr);
    gap: 70px;
    align-items: center;
}

.schedule-content > p:not(.section-label) {
    color: var(--text-soft);
}

.schedule-content ol {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.schedule-content li {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
    font-weight: 600;
}

.schedule-content li span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rose-600);
    color: var(--white);
    font-size: .68rem;
    font-weight: 800;
}

.schedule-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.schedule-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.schedule-card-top small,
.schedule-card-top strong {
    display: block;
}

.schedule-card-top small {
    color: var(--text-soft);
    font-size: .68rem;
}

.schedule-card-top strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.schedule-card-top > span {
    color: var(--rose-600);
    font-size: .68rem;
    font-weight: 800;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.date-option {
    min-height: 72px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fffafb;
    color: var(--text);
}

.date-option small,
.date-option strong {
    display: block;
}

.date-option small {
    margin-bottom: 4px;
    color: var(--text-soft);
    font-size: .62rem;
}

.date-option strong {
    font-family: var(--font-heading);
}

.date-option.active,
.date-option:hover {
    border-color: var(--rose-600);
    background: var(--rose-600);
    color: var(--white);
}

.date-option.active small,
.date-option:hover small {
    color: rgba(255,255,255,.8);
}

.time-label {
    margin-bottom: 10px;
    font-size: .76rem;
    font-weight: 800;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
    margin-bottom: 24px;
}

.time-option {
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    font-size: .75rem;
    font-weight: 700;
}

.time-option:hover,
.time-option.selected {
    border-color: var(--rose-600);
    background: #f9edf2;
    color: var(--rose-700);
}

.button.full {
    width: 100%;
}


/* BENEFITS */

.benefits {
    background: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
}

.benefit-grid article {
    padding: 27px 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff9fb
        );
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.benefit-grid article:hover {
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.benefit-grid span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #f7e7ee;
    color: var(--rose-600);
    font-size: .68rem;
    font-weight: 800;
}

.benefit-grid h3 {
    margin-bottom: 9px;
}

.benefit-grid p {
    margin: 0;
    color: var(--text-soft);
    font-size: .82rem;
}


/* CTA */

.final-cta {
    padding: 85px 0;
    background:
        linear-gradient(
            120deg,
            var(--wine-900),
            var(--rose-700) 58%,
            var(--gold-600)
        );
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta .section-label {
    color: var(--gold-400);
}

.final-cta h2 {
    max-width: 720px;
    margin-bottom: 11px;
    color: var(--white);
    font-size: clamp(2.2rem,4vw,3.2rem);
}

.final-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.82);
}

.button.white {
    flex-shrink: 0;
    background: var(--white);
    color: var(--rose-700);
}


/* FOOTER */

footer {
    padding: 55px 0 22px;
    background: var(--wine-950);
    color: #d2c0c9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 35px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid strong {
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-heading);
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
    margin: 0 0 6px;
    font-size: .78rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .72rem;
}

.footer-bottom a {
    color: var(--gold-400);
}


/* FLOAT */

.floating-booking {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 850;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--rose-600);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(69,34,51,.24);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 220ms ease;
}

.floating-booking:hover {
    transform: translateY(-4px) scale(1.05);
}


/* MODAL */

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    place-items: center;
    overflow-y: auto;
    padding: 20px;
    background: rgba(45,24,34,.76);
    backdrop-filter: blur(7px);
}

.booking-modal.is-open {
    display: grid;
}

.booking-card {
    position: relative;
    width: min(100%,560px);
    padding: 36px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.modal-close {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f6edf1;
    color: var(--text-soft);
    font-size: 1.2rem;
}

.booking-card h2 {
    margin-bottom: 8px;
    font-size: 2rem;
}

.booking-intro {
    margin-bottom: 22px;
    color: var(--text-soft);
    font-size: .86rem;
}

.booking-card form {
    display: grid;
    gap: 15px;
}

.booking-card label {
    display: grid;
    gap: 6px;
    color: var(--text);
    font-size: .75rem;
    font-weight: 800;
}

.booking-card input,
.booking-card select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.booking-result {
    margin-top: 20px;
    padding: 17px;
    border-radius: 14px;
    background: #faf2f5;
}

.booking-result span,
.booking-result strong {
    display: block;
}

.booking-result span {
    margin-bottom: 5px;
    color: var(--text-soft);
    font-size: .67rem;
}

.booking-result strong {
    color: var(--rose-700);
    font-size: .81rem;
}

.booking-result p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: .72rem;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    nav {
        gap: 15px;
    }

    .hero-grid {
        grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr);
    }

    .hero-visual img {
        width: 760px;
    }

    .services-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

}


@media (max-width: 860px) {

    .demo-banner {
        grid-template-columns: 1fr auto;
    }

    .demo-banner span {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .mobile-menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        position: fixed;
        top: 124px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        background: rgba(45,24,34,.99);
        box-shadow: 0 20px 50px rgba(0,0,0,.22);
    }

    nav.is-open {
        display: flex;
    }

    nav a {
        padding: 14px 8px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 65px;
        padding-bottom: 30px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-visual img {
        left: 50%;
        width: 760px;
    }

    .trust-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .trust-grid article:nth-child(2) {
        border-right: 0;
    }

    .trust-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .section-heading,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 620px) {

    .container {
        width: min(100% - 28px,1180px);
    }

    .section {
        padding: 75px 0;
    }

    .demo-banner {
        padding-inline: 12px;
        font-size: .66rem;
    }

    .hero h1 {
        font-size: clamp(2.65rem,12vw,3.7rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 315px;
    }

    .hero-visual img {
        width: 610px;
    }

    .trust-grid,
    .services-grid,
    .team-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-grid article:last-child {
        border-bottom: 0;
    }

    .date-grid {
        grid-template-columns: repeat(5,1fr);
        gap: 5px;
    }

    .date-option {
        min-height: 64px;
    }

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

    .schedule-card {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .final-cta {
        padding: 70px 0;
    }

    .final-cta .button {
        width: 100%;
    }

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

    .booking-card {
        padding: 32px 22px 24px;
    }

}
/* ==========================================================
   PASO 13 · MEJORAS TÁCTILES EN MÓVIL
========================================================== */

@media (max-width: 620px) {

    .mobile-menu {
        width: 44px;
        height: 44px;
    }

    .service-link,
    .time-option {
        min-height: 44px;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        padding-block: 8px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

}

@media (max-width: 430px) {

    .brand small {
        display: none;
    }

    .date-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

}
