/* OCULTAR HERO ORIGINAL */
#root header h1, 
#root header p { 
    display: none !important; 
}

/* HERO FULL WIDTH */
.gigi-hero-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 80vh;

    margin-left: calc(-50vw + 50%);
    text-align: center;
    overflow: hidden;
}

/* FONDO + OVERLAY SPA */
.gigi-hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(120,80,120,0.6), rgba(200,140,170,0.6)),
        url('/images/spa-bg.jpg');

    background-size: cover;
    background-position: center;
}

/* CONTENIDO */
.gigi-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* TITULO PRINCIPAL */
.h-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    margin: 0;

    text-shadow:
        0 2px 4px rgba(0,0,0,0.25),
        0 8px 25px rgba(0,0,0,0.25),
        0 0 40px rgba(255,255,255,0.25);
}

/* 🔥 LEMA PERFECTO EN UNA SOLA LINEA */
.h-spa-lema {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.65rem, 1.2vw, 0.9rem);
    letter-spacing: 3px;
    text-transform: uppercase;

    margin: 20px 0;
    opacity: 0.95;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    white-space: nowrap;
}

/* TEXTO INTERNO */
.h-spa-lema span {
    display: inline-block;
}

/* PUNTO SEPARADOR */
.h-spa-lema .dot {
    font-size: 1rem;
    opacity: 0.8;
    transform: translateY(-1px);
}

/* UBICACION */
.h-loc {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* POLICIES SECTION */
#gigi-pol-final-v3 {
    width: 100%;
    background: #fdfbf7;
    padding: 80px 20px;
}

.gigi-pol-header {
    text-align: center;
    margin-bottom: 40px;
}

.gigi-pol-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.gigi-gold-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,#BF9B30,#FFFBDA,#BF9B30);
    margin: 10px auto;
}

.gigi-pol-flex {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.gigi-pol-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.gigi-pol-li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.gigi-pol-li::before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .gigi-pol-flex {
        flex-direction: column;
    }

    .h-spa-lema {
        font-size: 0.6rem;
        gap: 6px;
    }
}