/* ============================================
   ZIRETHO WELLNESS SANCTUARY
   Hoja de estilos principal
   ============================================ */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0c10;
    --bg-2: #11141a;
    --bg-3: #181c24;
    --surface: #14171d;
    --border: rgba(212, 182, 119, 0.12);
    --border-strong: rgba(212, 182, 119, 0.25);
    --ivory: #f4ede0;
    --ivory-dim: #d8d2c4;
    --text: #c9c4b8;
    --text-muted: #8a8d96;
    --champagne: #d4b677;
    --champagne-light: #e6cb91;
    --champagne-dark: #a88b50;
    --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    --shadow-sm: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.font-display {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.gold-gradient {
    background: linear-gradient(135deg, #f0d99e 0%, #d4b677 45%, #a88b50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--ivory);
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    border-color: var(--champagne);
    background: rgba(212, 182, 119, 0.06);
    transform: translateY(-1px);
}

.btn-solid {
    background: linear-gradient(135deg, #d4b677 0%, #b89860 100%);
    color: #0a0c10;
    border-color: transparent;
    font-weight: 600;
}

.btn-solid:hover {
    background: linear-gradient(135deg, #e6cb91 0%, #c9a96e 100%);
    color: #0a0c10;
}

.btn-outline {
    border-color: var(--champagne);
    color: var(--champagne);
}

.btn-outline:hover {
    background: var(--champagne);
    color: #0a0c10;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.25);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 24px;
    transition: gap var(--transition);
}

.link-arrow:hover {
    gap: 16px;
}

/* ----- Header ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(10, 12, 16, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 12, 16, 0.85);
    border-bottom-color: var(--border);
    padding: 12px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    color: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.brand-tag {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--champagne);
    margin-top: 2px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-main a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ivory-dim);
    position: relative;
    padding: 4px 0;
}

.nav-main a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width var(--transition);
}

.nav-main a:not(.nav-cta):hover {
    color: var(--ivory);
}

.nav-main a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px !important;
    background: var(--champagne);
    color: #0a0c10 !important;
    border-radius: var(--radius);
    font-weight: 500 !important;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--champagne-light);
}

.hamb {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--ivory);
}

.hamb span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: all var(--transition);
}

.hamb[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}
.hamb[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamb[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px 30px;
    z-index: 99;
    transform: translateY(-110%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer.open {
    display: block;
    transform: translateY(0);
}

.drawer a {
    display: block;
    padding: 14px 0;
    color: var(--ivory);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.drawer a:last-child {
    border-bottom: none;
}

.drawer-cta {
    margin-top: 16px;
    background: var(--champagne);
    color: #0a0c10 !important;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 500;
    border-bottom: none !important;
}

@media (max-width: 1024px) {
    .nav-main { display: none; }
    .hamb { display: flex; }
}

/* ----- HERO ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out, transform 8s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 12, 16, 0.7) 0%, rgba(10, 12, 16, 0.4) 50%, rgba(10, 12, 16, 0.85) 100%),
        linear-gradient(90deg, rgba(10, 12, 16, 0.5) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 32px;
    background: rgba(10, 12, 16, 0.4);
    backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--champagne);
    box-shadow: 0 0 12px var(--champagne);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.95;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--ivory);
}

.hero-subtitle {
    display: block;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 300;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ivory-dim);
    margin-top: 18px;
    letter-spacing: 0.01em;
}

.hero-lead {
    font-size: clamp(15px, 1.4vw, 18px);
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--ivory-dim);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 18px 32px;
    background: rgba(10, 12, 16, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-item strong {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--champagne);
    font-weight: 500;
}

.trust-item span {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
}

@media (max-width: 640px) {
    .hero-trust { gap: 16px; padding: 14px 20px; }
    .trust-sep { display: none; }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ivory-dim);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: none;
    border: none;
    z-index: 3;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ----- Sections base ----- */
.section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 18px;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.section-head h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 400;
}

.section-lead {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

/* ----- Manifiesto ----- */
.manifiesto {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.manifiesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .manifiesto-grid { grid-template-columns: 1fr; gap: 60px; }
}

.manifiesto-text h2 {
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 400;
}

.manifiesto-text p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

.manifiesto-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pillar {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.pillar:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.pillar-num {
    font-size: 28px;
    color: var(--champagne);
    margin-bottom: 12px;
    font-weight: 500;
}

.pillar h3 {
    font-size: 22px;
    color: var(--ivory);
    margin-bottom: 8px;
    font-weight: 500;
}

.pillar p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

@media (max-width: 480px) {
    .manifiesto-pillars { grid-template-columns: 1fr; }
}

/* ----- Rituales Signature ----- */
.rituales {
    background: var(--bg);
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .ritual-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

.ritual-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ritual-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent, var(--border-strong));
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.ritual-card.featured {
    border-color: var(--champagne);
    background: linear-gradient(180deg, var(--surface) 0%, rgba(212, 182, 119, 0.05) 100%);
}

.ritual-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--champagne);
    color: #0a0c10;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

.ritual-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

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

.ritual-body {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ritual-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ritual-duration {
    color: var(--champagne);
    font-weight: 500;
}

.ritual-tag {
    padding: 4px 10px;
    background: rgba(212, 182, 119, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
}

.ritual-body h3 {
    font-size: 32px;
    color: var(--ivory);
    margin-bottom: 8px;
    font-weight: 500;
}

.ritual-tagline {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.ritual-includes {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.ritual-includes li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.ritual-includes li:last-child {
    border-bottom: none;
}

.ritual-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 1px;
    background: var(--champagne);
}

.ritual-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.ritual-price {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ivory);
    font-weight: 500;
}

.ritual-price small {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    margin-left: 4px;
}

/* ----- Servicios ----- */
.servicios {
    background: var(--bg-2);
}

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

@media (max-width: 900px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .service-grid { grid-template-columns: 1fr; }
}

.service {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.service:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.service:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--champagne);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service:hover .service-icon {
    background: var(--champagne);
    color: #0a0c10;
    transform: rotate(8deg);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service h3 {
    font-size: 24px;
    color: var(--ivory);
    margin-bottom: 12px;
    font-weight: 500;
}

.service-desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
    color: var(--text);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.service-meta .gold {
    color: var(--champagne);
    font-weight: 500;
}

/* ----- El Espacio ----- */
.espacio {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.gallery-item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--bg-3);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(10, 12, 16, 0.9), transparent);
    color: var(--ivory);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item, .gallery-item.wide { grid-column: span 1; height: 220px; }
}

/* ----- Equipo ----- */
.equipo {
    background: var(--bg-2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .team-grid { grid-template-columns: 1fr; }
}

.team-card {
    text-align: center;
    transition: all var(--transition);
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    margin-bottom: 20px;
    filter: grayscale(0.3) contrast(1.05);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 12, 16, 0.5));
}

.team-card:hover .team-photo {
    filter: grayscale(0);
    transform: translateY(-4px);
}

.team-card h3 {
    font-size: 22px;
    color: var(--ivory);
    margin-bottom: 4px;
    font-weight: 500;
}

.team-role {
    display: block;
    font-size: 12px;
    color: var(--champagne);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    padding: 0 8px;
}

/* ----- Membresía ----- */
.membresia {
    background: var(--bg);
    position: relative;
}

.membresia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 182, 119, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 900px) {
    .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.plan {
    position: relative;
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.plan:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.plan.featured {
    background: linear-gradient(180deg, rgba(212, 182, 119, 0.08) 0%, var(--surface) 100%);
    border-color: var(--champagne);
    transform: scale(1.03);
}

.plan.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--champagne);
    color: #0a0c10;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    font-size: 28px;
    color: var(--ivory);
    margin-bottom: 12px;
    font-weight: 500;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--champagne);
    font-weight: 500;
    margin-bottom: 6px;
}

.plan-price small {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    margin-left: 4px;
}

.plan-desc {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 14px;
    color: var(--text);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--champagne);
    font-weight: 600;
}

.plan-btn {
    width: 100%;
}

/* ----- Testimonios ----- */
.testimonios {
    background: var(--bg-2);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 60px; }
}

.testimonial {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 0;
    position: relative;
    transition: all var(--transition);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--champagne);
    opacity: 0.2;
    line-height: 1;
}

.testimonial:hover {
    border-color: var(--border-strong);
}

.testimonial blockquote {
    font-style: italic;
    color: var(--ivory-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial figcaption {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial figcaption strong {
    color: var(--ivory);
    font-size: 14px;
    font-weight: 500;
}

.testimonial figcaption span {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.press {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.press-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.press-logos span {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ivory-dim);
    opacity: 0.6;
    letter-spacing: 0.02em;
    transition: opacity var(--transition);
}

.press-logos span:hover {
    opacity: 1;
    color: var(--champagne);
}

/* ----- Proceso ----- */
.proceso {
    background: var(--bg);
}

.process-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    counter-reset: process;
}

@media (max-width: 1024px) {
    .process-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .process-list { grid-template-columns: 1fr; }
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 56px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: var(--border-strong);
}

@media (max-width: 1024px) {
    .process-step::after { display: none; }
}

.step-num {
    font-size: 48px;
    color: var(--champagne);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 500;
}

.process-step h3 {
    font-size: 18px;
    color: var(--ivory);
    margin-bottom: 10px;
    font-weight: 500;
}

.process-step p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

/* ----- FAQ ----- */
.faq {
    background: var(--bg-2);
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.faq-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 400;
}

.faq-head p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: var(--border-strong);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--ivory);
    font-size: 16px;
    font-weight: 400;
    transition: color var(--transition);
}

.faq-item summary:hover {
    color: var(--champagne);
}

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

.faq-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--champagne);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition);
}

.faq-icon::before {
    width: 14px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 14px;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-body {
    padding: 0 24px 22px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

/* ----- Contacto ----- */
.contacto {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 560px) {
    .contact-form { grid-template-columns: 1fr; padding: 28px 20px; }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
    padding: 14px 16px;
    background: rgba(10, 12, 16, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--ivory);
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--champagne);
    background: rgba(10, 12, 16, 0.7);
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4b677' stroke-width='1.5'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
}

.form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--champagne);
    flex-shrink: 0;
}

.form-msg {
    grid-column: 1 / -1;
    font-size: 13px;
    text-align: center;
    margin-top: 8px;
    min-height: 20px;
}

.form-msg.success { color: var(--champagne); }
.form-msg.error { color: #e88; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-block {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.info-block:hover {
    border-color: var(--border-strong);
}

.info-block h3 {
    font-size: 22px;
    color: var(--ivory);
    margin-bottom: 8px;
    font-weight: 500;
}

.info-block p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--champagne);
    font-size: 14px;
    font-weight: 500;
    transition: gap var(--transition);
}

.info-link:hover {
    gap: 12px;
}

/* ----- Footer ----- */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand {
    margin-bottom: 20px;
}

.footer-mission {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 360px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory-dim);
    transition: all var(--transition);
}

.socials a:hover {
    background: var(--champagne);
    color: #0a0c10;
    border-color: var(--champagne);
    transform: translateY(-2px);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: var(--ivory);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col a {
    color: var(--text);
    font-size: 14px;
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--champagne);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-disclaimer {
    opacity: 0.7;
    font-style: italic;
}

/* ----- Modal ----- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.modal.open {
    display: flex;
    opacity: 1;
}

.modal-dialog {
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.modal.open .modal-dialog {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--ivory);
    font-size: 24px;
    line-height: 1;
    transition: all var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal h3 {
    color: var(--ivory);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 500;
}

.modal-body h4 {
    color: var(--ivory);
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.modal-body p,
.modal-body ul {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.modal-body ul {
    padding-left: 20px;
}

/* ----- Cookie banner ----- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 90;
    box-shadow: var(--shadow);
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
}

.cookie-banner a {
    color: var(--champagne);
    text-decoration: underline;
}

.cookie-banner button {
    padding: 10px 20px;
    font-size: 12px;
    flex-shrink: 0;
}

/* ----- Scroll reveal animations ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Selection ----- */
::selection {
    background: var(--champagne);
    color: #0a0c10;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--champagne-dark);
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
