/* ============================================================================
   INDEX.HTML - LANDING PAGE STYLES
   ============================================================================ */

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background:
        linear-gradient(to bottom, rgba(45, 45, 45, 0.95), var(--charcoal-dark)),
        radial-gradient(ellipse at center, rgba(196, 163, 90, 0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
    position: relative;
    display: inline-block;
}

.trademark-badge {
    position: absolute;
    top: 45%;
    right: -50px;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 3.6rem;
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(196, 163, 90, 0.5);
    opacity: 0.9;
}

.hero-logo-img {
    width: 650px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 0 35px rgba(196, 163, 90, 0.6));
    transition: all 0.4s ease;
}

.hero-logo-img:hover {
    filter: drop-shadow(0 0 45px rgba(196, 163, 90, 0.8));
    transform: scale(1.05);
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(196, 163, 90, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-author {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-description {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero .btn-primary {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================================================
   REVIEWS SECTION
   ============================================================================ */
.reviews-section {
    padding: 4rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(196, 163, 90, 0.2);
    background: rgba(196, 163, 90, 0.06);
    margin-bottom: 2rem;
}

.reviews-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-stat strong {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--gold);
    line-height: 1;
}

.reviews-stat span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

.reviews-stars-display {
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    gap: 1rem;
}

.reviews-nav-btn {
    width: 44px;
    border: 1px solid rgba(196, 163, 90, 0.3);
    background: rgba(196, 163, 90, 0.08);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-nav-btn:hover:not(:disabled) {
    background: rgba(196, 163, 90, 0.2);
}

.reviews-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.review-card {
    border: 1px solid rgba(196, 163, 90, 0.18);
    background: linear-gradient(145deg, rgba(55, 55, 55, 0.95), rgba(35, 35, 35, 0.95));
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-card-name {
    color: var(--cream);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.review-card-stars {
    color: var(--gold);
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

.review-card-comment {
    font-size: 0.92rem;
    line-height: 1.7;
    opacity: 0.9;
    flex: 1;
}

.review-card-date {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    opacity: 0.65;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-card-empty {
    border: 1px dashed rgba(196, 163, 90, 0.25);
    background: rgba(196, 163, 90, 0.04);
    padding: 1.5rem;
    text-align: center;
    opacity: 0.85;
}

.review-card-empty p {
    margin-bottom: 0.5rem;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin: 1.25rem 0 1rem;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(196, 163, 90, 0.35);
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-dot.active {
    width: 24px;
    background: var(--gold);
}

.reviews-actions {
    display: flex;
    justify-content: center;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(145deg,
            rgba(55, 55, 55, 0.9) 0%,
            rgba(45, 45, 45, 0.95) 50%,
            rgba(35, 35, 35, 0.9) 100%);
    border: 1px solid rgba(196, 163, 90, 0.2);
    display: flex;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(196, 163, 90, 0.08) 0%,
            transparent 50%,
            rgba(196, 163, 90, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 12px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(196, 163, 90, 0.5) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(196, 163, 90, 0.5);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(196, 163, 90, 0.1),
        0 0 40px rgba(196, 163, 90, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-image {
    width: 320px;
    height: 300px;
    background: linear-gradient(135deg,
            rgba(30, 30, 30, 1) 0%,
            rgba(45, 45, 45, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin: 12px;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.05);
    border-radius: 8px;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 60%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: 8px;
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.5s ease;
}

.service-card:hover .service-image::after {
    border-color: rgba(196, 163, 90, 0.4);
}

.service-image-placeholder {
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 2rem 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    align-items: center;
}

.service-duration {
    color: var(--cream);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-duration::before {
    content: '⏱';
    font-size: 0.9rem;
}

.service-price {
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg,
            rgba(196, 163, 90, 0.15) 0%,
            rgba(196, 163, 90, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(196, 163, 90, 0.25);
    text-shadow: 0 0 20px rgba(196, 163, 90, 0.3);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg,
            var(--cream) 0%,
            rgba(196, 163, 90, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

.service-description p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.service-description li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(245, 243, 238, 0.85);
}

.service-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: rgba(245, 243, 238, 0.9);
    padding: 0.65rem 0.75rem;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(196, 163, 90, 0.08);
    line-height: 1.5;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.service-features li:hover {
    background: rgba(196, 163, 90, 0.05);
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(196, 163, 90, 0.5);
}

.service-cta {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg,
            rgba(196, 163, 90, 0.1) 0%,
            rgba(196, 163, 90, 0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(196, 163, 90, 0.3);
    width: fit-content;
}

.service-cta:hover {
    letter-spacing: 0.18em;
    transform: translateX(5px);
    background: linear-gradient(135deg,
            rgba(196, 163, 90, 0.2) 0%,
            rgba(196, 163, 90, 0.1) 100%);
    border-color: rgba(196, 163, 90, 0.5);
    box-shadow: 0 0 20px rgba(196, 163, 90, 0.2);
}

/* ============================================================================
   COMPACT SERVICES
   ============================================================================ */
.services-compact {
    padding: 4rem 2rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(196, 163, 90, 0.15);
    border-bottom: 1px solid rgba(196, 163, 90, 0.15);
}

.compact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.compact-card {
    background: var(--charcoal-dark);
    border: 1px solid rgba(196, 163, 90, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.compact-card:hover {
    border-color: rgba(196, 163, 90, 0.4);
    transform: translateY(-3px);
}

.compact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.compact-card h4 {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.compact-card p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.compact-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
}

/* ============================================================================
   AMENITIES SECTION
   ============================================================================ */
.amenities-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--charcoal-dark), var(--charcoal));
}

.amenities-content {
    max-width: 1000px;
    margin: 0 auto;
}

.amenities-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.amenities-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.amenities-description {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-item {
    padding: 2rem;
    border: 1px solid rgba(196, 163, 90, 0.2);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--gold);
    background: rgba(196, 163, 90, 0.05);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity-item h4 {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.amenity-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ============================================================================
   PRODUCTS SECTION
   ============================================================================ */
.products-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--charcoal);
    border: 1px solid rgba(196, 163, 90, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 163, 90, 0.4);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--charcoal-dark);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.product-image-placeholder {
    font-size: 4rem;
    opacity: 0.3;
}

.product-content {
    padding: 2rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

.product-size {
    color: var(--cream);
    opacity: 0.6;
}

.product-stock {
    color: var(--gold);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

/* ============================================================================
   BEVERAGES SECTION - Bebidas de Cortesía
   ============================================================================ */
.beverages-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg,
            rgba(196, 163, 90, 0.08) 0%,
            rgba(45, 45, 45, 0.95) 50%,
            rgba(196, 163, 90, 0.05) 100%);
    border-top: 1px solid rgba(196, 163, 90, 0.2);
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.beverages-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(196, 163, 90, 0.25);
    backdrop-filter: blur(10px);
}

.beverages-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(196, 163, 90, 0.5));
}

.beverages-content {
    flex: 1;
}

.beverages-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.beverages-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.beverages-text strong {
    color: var(--gold);
}

.beverages-adult {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.85;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .beverages-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .beverages-icon {
        font-size: 2.5rem;
    }

    .beverages-title {
        font-size: 1.3rem;
    }

    .beverages-adult {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================================================
   MEMBERSHIP CTA
   ============================================================================ */
.membership-cta {
    padding: 6rem 2rem;
    text-align: center;
    background:
        linear-gradient(rgba(196, 163, 90, 0.05), rgba(196, 163, 90, 0.05)),
        var(--charcoal);
    border-top: 1px solid rgba(196, 163, 90, 0.2);
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    font-size: 0.9rem;
    color: var(--gold);
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */
.contact-section {
    padding: 6rem 2rem;
    background: var(--charcoal-dark);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
}

.info-block a {
    color: var(--cream);
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--gold);
}

.schedule {
    background: var(--charcoal);
    border: 1px solid rgba(196, 163, 90, 0.15);
    padding: 1.5rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row.closed {
    opacity: 0.5;
}

.contact-map {
    background: var(--charcoal);
    border: 1px solid rgba(196, 163, 90, 0.15);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.map-placeholder p {
    margin-bottom: 1.5rem;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
/* ========== RESPONSIVE DESIGN ========== */

/* Tablets grandes (hasta 1024px) */
@media (max-width: 1024px) {
    .reviews-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Tablets y móviles (hasta 768px) */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1.25rem 3.5rem;
    }

    .reviews-summary {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .reviews-carousel {
        grid-template-columns: auto 1fr auto;
        gap: 0.6rem;
    }

    .reviews-nav-btn {
        width: 38px;
    }

    .reviews-track {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 70vh;
        padding: 5rem 2rem 3rem;
    }

    .hero-logo-img {
        height: auto;
        max-height: 150px;
        width: auto;
        max-width: 90vw;
        object-fit: contain;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .scroll-indicator {
        font-size: 0.7rem;
    }

    .services-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        flex-direction: column;
        border-radius: 16px;
    }

    .service-image {
        width: calc(100% - 24px);
        min-height: 220px;
        height: 220px;
        margin: 12px 12px 0 12px;
        border-radius: 10px;
    }

    .service-image img {
        border-radius: 10px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    .service-name {
        font-size: 1.4rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-features {
        gap: 0;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.6rem 0.5rem 0.6rem 1.8rem;
    }

    .service-features li::before {
        left: 0.5rem;
    }

    .service-cta {
        width: 100%;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        min-height: 250px;
    }

    .product-content {
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-block h4 {
        font-size: 1rem;
    }

    .schedule-row {
        font-size: 0.85rem;
    }

    .compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .amenity-item {
        padding: 1.5rem 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .membership-cta {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .reviews-summary {
        flex-direction: column;
    }

    .reviews-stars-display {
        font-size: 1.2rem;
    }

    .reviews-nav-btn {
        width: 34px;
        font-size: 1rem;
    }

    .hero {
        padding: 4rem 1.5rem 2.5rem;
        min-height: 60vh;
    }

    .hero-logo-img {
        height: auto;
        max-height: 120px;
        width: auto;
        max-width: 90vw;
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .scroll-indicator {
        font-size: 0.65rem;
        gap: 0.5rem;
    }

    .scroll-arrow {
        font-size: 1.2rem;
    }

    .services-featured {
        gap: 1.5rem;
    }

    .service-card {
        border-radius: 8px;
    }

    .service-image {
        min-height: 180px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-meta {
        margin-bottom: 0.75rem;
    }

    .service-duration,
    .service-price {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .service-name {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }

    .service-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-image {
        min-height: 200px;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-meta {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .info-block {
        margin-bottom: 1.5rem;
    }

    .info-block h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .info-block p {
        font-size: 0.85rem;
    }

    .schedule-row {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .map-placeholder {
        padding: 2rem 1rem;
    }

    .map-icon {
        font-size: 2rem;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .amenity-item {
        padding: 1.25rem 1rem;
    }

    .amenity-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .amenity-name {
        font-size: 0.85rem;
    }

    .membership-cta {
        padding: 2.5rem 1.5rem;
    }

    .cta-label {
        font-size: 0.65rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

/* Móviles muy pequeños (hasta 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }

    .service-name {
        font-size: 1rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

/* Landscape mode para móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 3rem 2rem;
    }

    .hero-content {
        max-width: 600px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Fix centrado en móviles */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn-primary {
        margin: 0 auto;
    }

    /* Ocultar scroll indicator en móvil */
    .scroll-indicator {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0;
    }

    .hero-logo-img {
        max-width: 280px;
        width: 80vw;
    }
}

/* ============================================================================
   CERTIFICADO DE REGALO SECTION
   ============================================================================ */

.gift-cert-section {
    padding: 5rem 2rem;
    background: var(--charcoal-dark, #111);
}

.gift-cert-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .gift-cert-container {
        grid-template-columns: 1fr;
    }
}

/* ── Form ── */
.gift-cert-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: 14px;
    padding: 2rem;
}

.gift-form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gift-form-group label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(196, 163, 90, 0.75);
}

.gift-required {
    color: #ef5350;
}

.gift-form-group input,
.gift-form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #e8e8e8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.gift-form-group input:focus,
.gift-form-group textarea:focus {
    border-color: rgba(196, 163, 90, 0.5);
}

.gift-form-group input::placeholder,
.gift-form-group textarea::placeholder {
    color: #444;
}

.gift-hint {
    font-size: 0.72rem;
    color: #555;
    line-height: 1.4;
}

.gift-hint em {
    color: rgba(196, 163, 90, 0.7);
    font-style: italic;
}

/* Services grid */
.gift-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.gift-svc-card {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.82rem;
    color: #ccc;
    line-height: 1.3;
}

.gift-svc-card:hover {
    border-color: rgba(196, 163, 90, 0.35);
    background: rgba(196, 163, 90, 0.06);
}

.gift-svc-card.selected {
    border-color: rgba(196, 163, 90, 0.6);
    background: rgba(196, 163, 90, 0.12);
    color: #C4A35A;
}

.gift-svc-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.gift-services-loading {
    color: #555;
    font-size: 0.82rem;
    padding: 10px;
    grid-column: 1 / -1;
}

.gift-error {
    background: rgba(239, 83, 80, 0.1);
    border: 1px solid rgba(239, 83, 80, 0.3);
    color: #ef9a9a;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.gift-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gift-submit-btn {
    margin-top: 0.5rem;
}

.gift-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.gift-note i {
    color: rgba(196, 163, 90, 0.5);
    margin-right: 4px;
}

/* ── Preview Card ── */
.gift-cert-preview-wrap {
    position: sticky;
    top: 100px;
}

.gift-preview-card {
    background: linear-gradient(150deg, #1c1408 0%, #2e2008 40%, #1a1209 100%);
    border: 1.5px solid #C4A35A;
    border-radius: 14px;
    padding: 22px 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(196, 163, 90, 0.18), 0 15px 35px rgba(0,0,0,0.7);
}

.gift-preview-card::before {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: 8px;
    pointer-events: none;
}

.gpc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.gpc-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #C4A35A;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gpc-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(196, 163, 90, 0.5);
    margin-top: 2px;
}

.gpc-logo {
    width: 40px;
    height: auto;
}

.gpc-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.4), transparent);
    margin: 12px 0;
}

.gpc-for-label {
    font-size: 0.55rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(196, 163, 90, 0.55);
    margin-bottom: 3px;
}

.gpc-recipient {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.gpc-sender-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 163, 90, 0.07);
    border: 1px solid rgba(196, 163, 90, 0.18);
    border-radius: 7px;
    padding: 8px 12px;
    margin-bottom: 14px;
}

.gpc-bow {
    font-size: 1.1rem;
}

.gpc-sender-label {
    font-size: 0.54rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(196, 163, 90, 0.55);
}

.gpc-sender-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #C4A35A;
}

.gpc-services-label {
    font-size: 0.54rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(196, 163, 90, 0.55);
    margin-bottom: 7px;
}

.gpc-services-list {
    list-style: none;
    margin-bottom: 12px;
    min-height: 30px;
}

.gpc-services-list li {
    font-size: 0.8rem;
    color: #ddd;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.gpc-services-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C4A35A;
    flex-shrink: 0;
}

.gpc-placeholder {
    color: #444 !important;
    font-style: italic;
}

.gpc-placeholder::before {
    background: #333 !important;
}

.gpc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 10px;
    border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.gpc-validity {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
}

.gpc-watermark {
    font-size: 2.5rem;
    color: rgba(196, 163, 90, 0.06);
    line-height: 1;
}

.gift-preview-note {
    text-align: center;
    margin-top: 10px;
    font-size: 0.72rem;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
}
