/* =====================================================
   ZEUS PSICOLOGÍA — PREMIUM REDESIGN v2.0
   Cinematic Hero + Expandable Cards with Glassmorphism
   ===================================================== */

:root {
    --psico-gold: #AE7433;
    --psico-gold-light: #C9954D;
    --psico-gold-dark: #8B5A26;
    --psico-cream: #F7F5F2;
    --psico-dark: #1a1a1a;
}

/* =====================================================
   HERO — FULL SCREEN CINEMATIC
   ===================================================== */
.psico-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.psico-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.psico-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.45) contrast(1.1) saturate(0.9);
    will-change: transform;
}

@media (max-width: 768px) {
    .psico-hero__img {
        object-position: center 35% !important;
        filter: brightness(0.6) contrast(1.05) !important;
    }

    .psico-hero__title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.01em !important;
    }

    .psico-hero__badge {
        font-size: 0.75rem !important;
        padding: 10px 20px !important;
        margin-bottom: 24px !important;
        letter-spacing: 0.1em !important;
    }

    .psico-hero__tagline {
        font-size: 1.1rem !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        line-height: 1.5 !important;
        font-weight: 300 !important;
    }
}

@media (max-width: 480px) {
    .psico-hero {
        min-height: 500px;
    }

    .psico-hero__img {
        object-position: center 35% !important;
    }

    .psico-hero__title {
        font-size: 2rem !important;
    }

    .psico-hero__badge {
        display: none;
    }

    .psico-hero__tagline {
        font-size: 1rem !important;
    }
}

.psico-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.15) 40%, rgba(10, 10, 10, 0.85) 100%),
        linear-gradient(90deg, rgba(174, 116, 51, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.psico-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 6%;
    margin: 0 auto;
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
}

.psico-hero__badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #AE7433;
    margin-bottom: 36px;
    padding: 12px 30px;
    border: 2px solid #AE7433;
    background: rgba(174, 116, 51, 0.08);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(12px);
}

.psico-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.psico-hero__line {
    display: block;
    overflow: hidden;
}

.psico-hero__word {
    display: inline-block;
    transform: translateY(110%);
}

.psico-hero__line em {
    font-style: normal;
    font-weight: 900;
    color: #C9954D;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(201, 149, 77, 0.4), 0 0 80px rgba(174, 116, 51, 0.15);
}

.psico-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(10px);
}

.psico-hero__rule {
    display: none;
    width: 50px;
    height: 2px;
    background: #AE7433;
    flex-shrink: 0;
}

.psico-hero__tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 480px) {
    .psico-hero__tagline {
        font-size: 0.6rem !important;
        letter-spacing: 0.15em !important;
    }
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.psico-services {
    padding: clamp(80px, 10vw, 120px) 0;
    background: #F2E8DC;
}

.psico-services__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(50px, 7vw, 70px);
    padding: 0 6%;
}

.psico-services__eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #AE7433;
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.psico-services__eyebrow::before,
.psico-services__eyebrow::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #AE7433;
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.6;
}

.psico-services__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #2a1f14;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-style: italic;
}

.psico-services__heading em {
    font-style: normal;
    color: #AE7433;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.6em;
    display: block;
    letter-spacing: 0.15em;
    margin-top: 10px;
}

.psico-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

@media (min-width: 768px) {
    .psico-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* =====================================================
   CARD STYLES - PREMIUM WITH DEPTH
   ===================================================== */
.psico-card {
    position: relative;
    background: #F2E8DC;
    border-radius: 16px;
    border: 1px solid rgba(174, 116, 51, 0.15);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

/* Inner golden frame */
.psico-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(174, 116, 51, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s ease;
}

/* Luxury shine effect */
.psico-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 15;
}

.psico-card:hover::before {
    border-color: rgba(174, 116, 51, 0.4);
    inset: 6px;
}

.psico-card:hover::after {
    left: 100%;
}

.psico-card:hover {
    transform: translateY(-8px);
    border-color: rgba(174, 116, 51, 0.4);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(174, 116, 51, 0.1);
}

/* VISUALS - Elegant frame */
.psico-card__visual {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-bottom: 2px solid rgba(174, 116, 51, 0.15);
}

.psico-card__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.psico-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(1.1) contrast(1.05) saturate(1);
}

/* Elegant vignette overlay */
.psico-card__img-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(180deg, rgba(174, 116, 51, 0.1) 0%, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.psico-card:hover .psico-card__img-overlay {
    opacity: 0.85;
}

/* Elegant watermark number */
.psico-card__num {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    z-index: 3;
    letter-spacing: 0.02em;
    line-height: 1;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(174, 116, 51, 0.4);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.psico-card:hover .psico-card__num {
    color: rgba(174, 116, 51, 0.35);
    text-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(174, 116, 51, 0.6),
        0 0 50px rgba(174, 116, 51, 0.3);
    transform: scale(1.1);
}

.psico-card:hover .psico-card__img-wrap img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
}

/* BODY - Elegant padding */
.psico-card__body {
    padding: 32px 28px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #F2E8DC;
}

.psico-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8em;
    padding-bottom: 0.8em;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
}

/* Elegant underline with depth */
.psico-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(174, 116, 51, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.psico-card:hover .psico-card__title {
    color: #AE7433;
}

.psico-card:hover .psico-card__title::after {
    width: 100%;
    box-shadow:
        0 2px 12px rgba(174, 116, 51, 0.4),
        0 4px 24px rgba(174, 116, 51, 0.3);
}

.psico-card__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.psico-card:hover .psico-card__desc {
    color: #333;
}

/* EXPAND BUTTON - Elegant & Bordered */
.psico-card__btn-expand {
    margin-top: auto;
    background: transparent;
    border: 2px solid #AE7433;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #AE7433;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(174, 116, 51, 0.15),
        inset 0 1px 0 rgba(174, 116, 51, 0.1);
}

.psico-card__btn-expand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(174, 116, 51, 0.1) 0%, rgba(201, 154, 77, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.psico-card__btn-expand:hover::before {
    opacity: 1;
}

.psico-card__btn-expand:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: #AE7433;
    box-shadow:
        0 4px 16px rgba(174, 116, 51, 0.3),
        0 8px 32px rgba(174, 116, 51, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.psico-card__btn-expand:focus-visible,
.psico-card__btn-close:focus-visible,
.psico-card__btn-close-x:focus-visible {
    outline: 2px solid #AE7433;
    outline-offset: 3px;
}

.psico-card__btn-expand .btn-text,
.psico-card__btn-expand .btn-icon {
    position: relative;
    z-index: 1;
}

.psico-card__btn-expand .btn-icon {
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    line-height: 1;
}

.psico-card__btn-expand:hover .btn-icon {
    transform: rotate(90deg);
}

/* =====================================================
   EXPANDED STATE - PREMIUM DARK MODAL
   ===================================================== */
.psico-card.is-expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    margin: 0;
    border-radius: 0;
    cursor: default;

    /* Dark Premium Gradient - SOLID for clean look */
    background: #1a1612;
    color: #fff;
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
    box-shadow: none;
}

/* Left: Visuals & Title */
.psico-card.is-expanded .psico-card__content {
    background: transparent;
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.psico-card.is-expanded .psico-card__visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
    filter: none;
    transition: opacity 1s ease;
    border-bottom: none;
}

.psico-card.is-expanded .psico-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.psico-card.is-expanded .psico-card__img-wrap {
    height: 100%;
}

.psico-card.is-expanded .psico-card__body {
    z-index: 10;
    background: transparent;
    padding: 0;
    justify-content: flex-end;
}

.psico-card.is-expanded .psico-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    line-height: 0.9;
}

.psico-card.is-expanded .psico-card__title::after {
    display: none;
}

.psico-card.is-expanded .psico-card__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-weight: 300;
    line-height: 1.7;
}

.psico-card.is-expanded .psico-card__num {
    font-size: 12rem;
    opacity: 0.03;
    top: -20px;
    left: -20px;
    bottom: auto;
    right: auto;
    font-weight: 700;
}

.psico-card.is-expanded .psico-card__img-wrap img {
    filter: brightness(1.35) contrast(1.05) saturate(1.15);
}

.psico-card.is-expanded .psico-card__btn-expand {
    display: none;
}

/* Right: Details & Pricing */
.psico-card__details {
    display: none;
}

.psico-card.is-expanded .psico-card__details {
    display: block;
    padding: 80px 80px;
    overflow-y: auto;
    background: #1a1612;
    position: relative;
}

.psico-card.is-expanded .details-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}

.details-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #AE7433;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(174, 116, 51, 0.2);
}

.details-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-col li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.details-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #AE7433;
    border-radius: 50%;
}

/* Quote Block */
.details-quote {
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 28px;
    padding: 24px 30px;
    background: rgba(174, 116, 51, 0.06);
    border-left: 3px solid #AE7433;
    border-radius: 0 6px 6px 0;
}

.details-quote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.details-quote strong {
    color: #AE7433;
    font-weight: 700;
}

/* FAQ Accordion */
.details-faq {
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 28px;
}

.details-faq__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #AE7433;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(174, 116, 51, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.faq-item summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 700;
    color: #AE7433;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: #AE7433;
}

.faq-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    padding: 0 0 18px;
    margin: 0;
}

/* Pricing */
.details-pricing {
    display: none;
    /* REMOVED AS REQUESTED */
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 24px 30px;
    background: rgba(174, 116, 51, 0.08);
    border: 1px solid rgba(174, 116, 51, 0.2);
    border-radius: 8px;
}

.pricing-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    grid-column: 1 / -1;
}

.pricing-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.pricing-cost {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #AE7433;
}

.pricing-btn {
    padding: 12px 28px;
    background: #AE7433;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(174, 116, 51, 0.3);
}

.pricing-btn:hover {
    background: #c99a5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(174, 116, 51, 0.4);
}

/* Close Button */
/* 'X' Close Button */
.psico-card__btn-close-x {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(174, 116, 51, 0.3);
    color: #AE7433;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0;
    padding-bottom: 4px;
    /* Visual alignment */
}

.psico-card__btn-close-x:hover {
    border-color: #AE7433;
    background: #AE7433;
    color: #fff;
    transform: rotate(90deg);
}

.psico-card__btn-close {
    display: none;
    /* Hide old close button if desired, or keep as secondary */
}

/* Responsive Expanded State — Matches Fisioterapia */
@media (max-width: 1024px) {
    .psico-card.is-expanded {
        grid-template-columns: 1fr;
        grid-template-rows: 35vh 65vh;
        overflow: hidden;
    }

    .psico-card.is-expanded .psico-card__content {
        padding: 30px;
        justify-content: flex-end;
        border-right: none;
    }

    .psico-card.is-expanded .psico-card__title {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .psico-card.is-expanded .psico-card__desc {
        display: none;
    }

    .psico-card.is-expanded .psico-card__details {
        padding: 40px 24px 60px;
        padding-bottom: calc(60px + var(--safe-bottom));
        -webkit-overflow-scrolling: touch;
    }

    .psico-card.is-expanded .details-cols {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 20px;
    }

    .details-quote,
    .details-faq {
        margin-bottom: 20px;
    }

    .card-cta-section {
        margin: 10px 0 20px 0;
        padding-top: 16px;
    }

    .psico-card__btn-close-x {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        color: #fff;
    }
}

/* Show card image in collapsed grid view on mobile */
@media (max-width: 767px) {
    .psico-card:not(.is-expanded) .psico-card__visual {
        display: block;
        height: 240px;
    }
}

/* =====================================================
   RESERVATION BUTTON (CTA Section in  Expanded Cards)
   ===================================================== */
.card-cta-section {
    margin: 20px 0 30px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(173, 115, 50, 0.15);
    text-align: center;
}

.btn-card-reservation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--psico-gold) 0%, var(--psico-gold-dark) 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow:
        0 8px 30px rgba(174, 116, 51, 0.3),
        0 4px 16px rgba(174, 116, 51, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-card-reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-card-reservation:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(174, 116, 51, 0.4),
        0 6px 20px rgba(174, 116, 51, 0.3);
}

.btn-card-reservation:hover::before {
    opacity: 1;
}

.btn-card-reservation svg {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-card-reservation:hover svg {
    transform: translateX(4px);
}

.btn-card-reservation:active {
    transform: translateY(-1px);
}

/* =====================================================
   MOBILE RESPONSIVENESS - EXPANDED CARD (FIXED)
   ===================================================== */
@media (max-width: 900px) {
    .psico-card.is-expanded {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto 1fr !important;
        height: 100vh !important;
        height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    /* 1. Visual Section (Top) */
    .psico-card.is-expanded .psico-card__content {
        padding: 40px 24px 20px !important;
        min-height: 35vh !important;
        flex-shrink: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        justify-content: flex-end !important;
        position: relative;
    }

    .psico-card.is-expanded .psico-card__visual {
        opacity: 0.5 !important;
    }

    .psico-card.is-expanded .psico-card__visual::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(26, 22, 18, 1)) !important;
    }

    .psico-card.is-expanded .psico-card__title {
        font-size: 2.2rem !important;
        margin-bottom: 8px !important;
        line-height: 1.1 !important;
    }

    .psico-card.is-expanded .psico-card__desc {
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
        display: block !important;
        opacity: 0.9 !important;
        line-height: 1.5 !important;
    }

    /* 2. Details Section (Bottom) */
    .psico-card.is-expanded .psico-card__details {
        padding: 30px 24px 100px !important;
        overflow-y: visible !important;
        height: auto !important;
        background: #1a1612 !important;
        border-top: none !important;
    }

    .psico-card.is-expanded .details-cols {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Close Button - Fixed floating */
    .psico-card__btn-close-x {
        position: fixed !important;
        bottom: 24px !important;
        right: 24px !important;
        top: auto !important;
        /* Reset top */
        z-index: 9999 !important;
        background: #AE7433 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50%;
        width: 56px !important;
        height: 56px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 2rem !important;
    }
}