/* ============================================================
   WellnessClub — Estilos web pública
   Imagen de marca: Negro profundo + Dorado
   ============================================================ */

:root {
    --primary:   #0a0a0a;
    --accent:    #c9a227;
    --accent2:   #a8841c;
    --gold-glow: rgba(201,162,39,.15);
    --surface:   #141414;
    --surface2:  #1c1c1c;
    --border:    rgba(201,162,39,.15);
    --white:     #ffffff;
    --text:      #e8e8e8;
    --muted:     rgba(255,255,255,.45);
    --radius:    12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--primary);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Tipografía ─────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
}
.section-title span { color: var(--accent); }
.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-top: 14px;
    max-width: 560px;
}

/* ── Botones ────────────────────────────────────────────────── */
.btn-web {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .25s;
    text-decoration: none;
}
.btn-web:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.3); text-decoration: none; }
.btn-gold  { background: var(--accent); color: #0a0a0a; }
.btn-gold:hover { background: #d4ac2e; }
.btn-red   { background: var(--accent); color: #0a0a0a; }
.btn-dark  { background: var(--surface2); color: var(--white); border: 1px solid var(--border); }
.btn-ghost { background: transparent; border: 2px solid rgba(201,162,39,.5); color: var(--accent); }
.btn-ghost:hover { background: var(--gold-glow); border-color: var(--accent); }
.btn-outline-dark { background: transparent; border: 2px solid var(--accent); color: var(--accent); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 10px 0;
    transition: all .3s;
    background: rgba(10,10,10,.7);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    border-bottom-color: var(--border);
    box-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo img {
    height: 72px;
    width: auto;
    display: block;
    transition: opacity .2s;
}
.nav-logo:hover img { opacity: .85; }
.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    font-weight: 600;
    transition: color .2s;
    letter-spacing: .3px;
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s;
    transform-origin: center;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-cta .btn-web {
    padding: 12px 28px;
    font-size: .95rem;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    width: 26px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all .3s;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0a0a0a 0%, #0f0c00 60%, #0a0a0a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 60% 40%, rgba(201,162,39,.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(168,132,28,.08) 0%, transparent 60%);
}
/* Línea decorativa dorada */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .4;
}
.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,.1);
    border: 1px solid rgba(201,162,39,.35);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 22px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #e8c84a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img-wrap {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #1c1500);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img-placeholder { font-size: 8rem; opacity: .2; }
.hero-card-float {
    position: absolute;
    background: rgba(20,20,20,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,162,39,.25);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.hero-card-float.top-left  { top: 24px;    left: -20px; }
.hero-card-float.bot-right { bottom: 40px; right: -20px; }
.float-label { font-size: .7rem; color: var(--muted); margin-bottom: 4px; }
.float-value { font-size: 1.1rem; font-weight: 800; color: var(--accent); }
.float-sub   { font-size: .75rem; color: var(--muted); }

/* ── Sección genérica ───────────────────────────────────────── */
.section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-center { text-align: center; }
.section-center .section-sub { margin: 14px auto 0; }

/* Divisor dorado */
.divider {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
    margin: 0 auto 48px;
    opacity: .7;
}

/* ── Servicios ──────────────────────────────────────────────── */
.services-bg {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.services-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 56px;
}
.service-card {
    background: var(--surface2);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(201,162,39,.3);
    border-color: rgba(201,162,39,.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(201,162,39,.12), rgba(168,132,28,.08));
    border: 1px solid rgba(201,162,39,.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.service-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── Objetivos ──────────────────────────────────────────────── */
#objetivos { background: var(--primary); }
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.goal-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all .25s;
}
.goal-item:hover {
    border-color: rgba(201,162,39,.5);
    background: var(--surface2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.goal-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    opacity: .3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}
.goal-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.goal-item p  { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ── Metodología ─────────────────────────────────────────────── */
.why-bg {
    background: linear-gradient(135deg, #0f0c00 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.why-inner {
    max-width: 1200px; margin: 0 auto; padding: 100px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-inner .section-title { color: var(--white); }
.why-inner .section-sub   { color: var(--muted); }
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    color: #0a0a0a;
    font-weight: 800;
}
.why-item h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item p  { font-size: .85rem; color: var(--muted); line-height: 1.55; }
.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.why-stat-box {
    background: rgba(201,162,39,.05);
    border: 1px solid rgba(201,162,39,.2);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .25s;
}
.why-stat-box:hover {
    background: rgba(201,162,39,.1);
    border-color: rgba(201,162,39,.4);
    transform: translateY(-2px);
}
.why-stat-num   { font-size: 2.2rem; font-weight: 900; color: var(--accent); }
.why-stat-label { font-size: .78rem; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }

/* ── Precios ────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 56px;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all .3s;
}
.price-card:hover {
    border-color: rgba(201,162,39,.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.price-card.popular {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(201,162,39,.08), var(--surface));
}
.popular-badge {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #0a0a0a;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.price-name    { font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.price-num     { font-size: 2.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-num sup { font-size: 1rem; vertical-align: super; color: var(--accent); }
.price-period  { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.price-sessions {
    margin: 20px 0;
    padding: 12px;
    background: rgba(201,162,39,.08);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--accent);
}
.price-card .btn-web { width: 100%; justify-content: center; margin-top: 8px; }

/* ── CTA final ──────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #0f0c00 0%, #0a0a0a 50%, #0f0c00 100%);
    border-top: 1px solid var(--border);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,39,.1) 0%, transparent 70%);
}
.cta-section h2 { position: relative; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-section p  { position: relative; font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    background: #050505;
    color: var(--muted);
    padding: 60px 24px 32px;
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 300px; margin-top: 12px; }
.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: .85rem; transition: color .2s; color: var(--muted); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(201,162,39,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: var(--accent); }

/* ── Sobre Nosotros ─────────────────────────────────────────── */
.about-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* Bloque principal texto + foto grande */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 56px;
}
.about-text {
    display: flex;
    flex-direction: column;
}
.about-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    margin-bottom: 32px;
}
.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feat-icon {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1.5;
}
.about-features strong {
    display: block;
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.about-features span {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
}

/* Foto principal */
.about-photo-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    background: var(--surface2);
}
.about-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.about-photo-main:hover img { transform: scale(1.03); }

/* Galería 4 fotos */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--border);
    background: var(--surface2);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 14px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
}

/* Placeholder cuando no hay foto */
.photo-placeholder {
    display: none;
    width: 100%; height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: repeating-linear-gradient(
        45deg,
        var(--surface2),
        var(--surface2) 10px,
        #1a1a1a 10px,
        #1a1a1a 20px
    );
    border: 2px dashed rgba(201,162,39,.25);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.photo-placeholder .placeholder-icon { font-size: 2rem; opacity: .4; }
.photo-placeholder span {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
}
.photo-placeholder code {
    font-size: .72rem;
    color: var(--accent);
    opacity: .6;
    background: rgba(201,162,39,.08);
    padding: 3px 8px;
    border-radius: 4px;
}
.photo-placeholder--sm .placeholder-icon { font-size: 1.4rem; }
.photo-placeholder--sm span { font-size: .75rem; }
.photo-placeholder--sm code { font-size: .65rem; }

/* ── Indicador scroll ───────────────────────────────────────── */
.scroll-hint {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(201,162,39,.4);
    font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
    animation: fadeInUp 2s ease 1s both;
}
.scroll-hint svg { animation: bounce 2s infinite; stroke: var(--accent); opacity: .5; }
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}
@keyframes fadeInUp {
    from { opacity:0; transform: translateX(-50%) translateY(10px); }
    to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — Web pública
══════════════════════════════════════════════════════════ */

/* ── Tablet (≤900px) ───────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid   { grid-template-columns: 1fr; text-align: center; padding-top: 120px; justify-items: center; }
    .hero-desc   { margin: 0 auto 32px; }
    .hero-btns   { justify-content: center; }
    .hero-stats  { justify-content: center; }
    .hero-visual { display: none; }
    .about-main  { grid-template-columns: 1fr; gap: 40px; }
    .about-gallery { grid-template-columns: repeat(2, 1fr); }
    .why-inner   { grid-template-columns: 1fr; gap: 48px; padding: 70px 24px; }
    .why-visual  { grid-template-columns: repeat(4,1fr); }
    .goals-grid  { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
}

/* ── Móvil (≤640px) ─────────────────────────────────────── */
@media (max-width: 640px) {
    /* Navbar */
    .nav-links        { display: none; }
    .nav-hamburger    { display: flex; }
    .nav-inner        { padding: 0 16px; }
    .nav-logo img     { height: 56px; }
    .nav-cta .btn-web { padding: 9px 16px; font-size: .82rem; }

    /* Hero */
    .hero-grid   { padding: 90px 16px 60px; gap: 0; }
    .hero h1     { font-size: 2.2rem; }
    .hero-desc   { font-size: .95rem; }
    .hero-btns   { flex-direction: column; align-items: center; gap: 10px; }
    .hero-badge  { font-size: .65rem; letter-spacing: 1.5px; }
    .hero-stats  { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .hero-stat-num { font-size: 1.4rem; }
    .scroll-hint { display: none; }

    /* Servicios */
    .services-inner { padding: 56px 16px; }
    .services-grid  { grid-template-columns: 1fr; gap: 12px; }
    .service-card   { padding: 22px 18px; }
    .service-icon   { width: 50px; height: 50px; font-size: 1.3rem; }

    /* Sobre nosotros */
    .about-inner   { padding: 56px 16px; }
    .about-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }

    /* Objetivos */
    .section       { padding: 56px 16px; }
    .section-title { font-size: 1.75rem; }
    .goals-grid    { grid-template-columns: 1fr; gap: 10px; }
    .goal-item     { padding: 20px 16px; }
    .goal-num      { font-size: 1.6rem; min-width: 32px; }

    /* Grids inline */
    [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Metodología */
    .why-inner    { padding: 56px 16px; }
    .why-visual   { grid-template-columns: 1fr 1fr; gap: 10px; }
    .why-stat-box { padding: 18px 12px; }
    .why-stat-num { font-size: 1.7rem; }
    .why-list     { gap: 16px; }

    /* Precios */
    .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin: 40px auto 0; }
    .price-card   { padding: 26px 20px; }

    /* CTA */
    .cta-section    { padding: 56px 16px; }
    .cta-section h2 { font-size: 1.75rem; }
    .cta-section p  { font-size: .95rem; }
    .cta-btns       { flex-direction: column; align-items: center; gap: 10px; }

    /* Footer */
    footer          { padding: 0; }
    .footer-inner   { grid-template-columns: 1fr; gap: 28px; padding: 48px 16px 20px; }
    .footer-brand   { grid-column: auto; }
    .footer-bottom  { flex-direction: column; text-align: center; padding: 20px 16px; gap: 6px; }

    /* Botones */
    .btn-web { padding: 12px 22px; font-size: .88rem; width: 100%; justify-content: center; max-width: 280px; }
}
