/* ═══════════════════════════════════════════════════════════
   ALTHIA LIMO — tarifas.css
   Depende de ../style.css
═══════════════════════════════════════════════════════════ */


/* ── BREADCRUMB ──────────────────────────────────────────── */
.header-breadcrumb {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: background 0.4s;
}
#header.scrolled .header-breadcrumb {
    background: rgba(240,236,228,0.97);
    border-top: 1px solid var(--cream);
}
.header-breadcrumb-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.4rem var(--gutter);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
}
.header-breadcrumb-inner a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.header-breadcrumb-inner a:hover { color: var(--gold-light); }
.header-breadcrumb-inner span:last-child { color: var(--gold-light); }
#header.scrolled .header-breadcrumb-inner,
#header.scrolled .header-breadcrumb-inner a { color: var(--text-light); }
#header.scrolled .header-breadcrumb-inner span:last-child { color: var(--gold); }


/* ── HERO ────────────────────────────────────────────────── */
#hero-tarifas {
    position: relative;
    height: 42vh;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    background:
        url('https://files.cdn-files-a.com/uploads/6799335/2000_69c2eae26f719.jpg')
        center 60% / cover no-repeat;
    overflow: hidden;
}
.hero-tarifas-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.8) 100%);
}
.hero-tarifas-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 100px var(--gutter) 3rem;
}
.hero-tarifas-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 0.8rem;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero-tarifas-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    font-weight: 300;
    animation: fadeUp 0.8s var(--ease) 0.4s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ── FILOSOFÍA ───────────────────────────────────────────── */
#filosofia {
    background: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.filosofia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.filosofia-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--black);
    margin-bottom: 1.5rem;
}
.filosofia-text h2 em { color: var(--gold); font-style: italic; }
.filosofia-text p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.95;
    margin-bottom: 1rem;
}
.filosofia-text .btn-primary { margin-top: 1rem; }

/* Cita */
.filosofia-visual {
    position: relative;
}
.filosofia-quote {
    background: var(--black);
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}
.quote-mark {
    font-family: var(--f-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.5;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}
.filosofia-quote blockquote {
    font-family: var(--f-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--white);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.filosofia-quote cite {
    font-size: 0.7rem;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Cuadrado decorativo detrás */
.filosofia-deco {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 0;
    opacity: 0.25;
}


/* ── TODO INCLUIDO ───────────────────────────────────────── */
#incluye {
    background: var(--black);
    padding: clamp(4rem, 8vw, 7rem) 0;
}
#incluye .section-head h2 { color: var(--white); }
#incluye .eyebrow { color: var(--gold-light); }
#incluye .section-desc { color: rgba(255,255,255,0.5); }

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
}

.incluye-item {
    background: var(--black);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    position: relative;
}
.incluye-item:hover { background: var(--black-soft); }
.incluye-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.incluye-item:hover::after { width: 100%; }

.incluye-icon {
    display: block;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.incluye-item h3 {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 0.6rem;
}
.incluye-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}


/* ── CÓMO FUNCIONA ───────────────────────────────────────── */
#como-funciona {
    background: var(--white-2);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.pasos-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-top: 1rem;
}

.paso {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--gold);
}

.paso-num {
    display: block;
    font-family: var(--f-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 1rem;
}
.paso h3 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 0.7rem;
}
.paso p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.paso-divider {
    font-size: 1.5rem;
    color: var(--gold);
    padding-top: 2.5rem;
    opacity: 0.5;
    align-self: center;
}


/* ── FAQ ─────────────────────────────────────────────────── */
#faq {
    background: var(--white);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--cream);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: color 0.25s;
    gap: 1rem;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    font-family: var(--f-body);
    font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.9;
    padding-bottom: 1.4rem;
}


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .incluye-grid { grid-template-columns: repeat(2, 1fr); }
    .pasos-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .paso-divider { display: none; }
    .paso { border-top: none; border-left: 2px solid var(--gold); margin-bottom: 2px; }
}

@media (max-width: 768px) {
    .filosofia-grid { grid-template-columns: 1fr; }
    .filosofia-deco { display: none; }
    .incluye-grid { grid-template-columns: 1fr; }
}
