.elementor-18 .elementor-element.elementor-element-0688125{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS */:root {
      --c-yellow: #FFD700;
      --c-yellow-deep: #E8C200;
      --c-green: #009C3B;
      --c-green-deep: #007a2e;
      --c-blue: #1E7EC8;
      --c-blue-deep: #155f99;
      --c-black: #0E0E0E;
      --c-ink: #161616;
      --c-cream: #FFF8E1;
      --c-white: #FFFFFF;
      --c-muted: #6b6b6b;
      --c-line: #E9E2C7;
      --f-display: "Anton", "Bebas Neue", "Archivo Black", sans-serif;
      --f-body: "DM Sans", system-ui, sans-serif;
      --f-hand: "Caveat", cursive;
      --pad: clamp(20px, 4vw, 64px);
    }
    *,*::before,*::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: var(--f-body);
      color: var(--c-ink);
      background: var(--c-black);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

    /* ── Type ───────────────────────────────────────────────── */
    .display {
      font-family: var(--f-display);
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 0.95;
      text-transform: uppercase;
    }
    .hand { font-family: var(--f-hand); font-weight: 700; }
    .eyebrow {
      font-family: var(--f-body);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    /* ── Reveal on scroll ───────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* ── Section frame ──────────────────────────────────────── */
    section { position: relative; }
    .wrap { max-width: 1280px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

    /* ── Buttons ────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
      padding: 16px 26px; border-radius: 999px;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
      white-space: nowrap;
    }
    .btn-primary { background: var(--c-yellow); color: #0a0a0a; box-shadow: 0 10px 30px -10px rgba(255,215,0,.6); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(255,215,0,.8); }
    .btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; }
    .btn-ghost:hover { background: #fff; color: #0a0a0a; }
    .btn-green { background: var(--c-green); color: #fff; }
    .btn-green:hover { background: var(--c-green-deep); transform: translateY(-2px); }
    .btn-blue { background: var(--c-blue); color: #fff; }
    .btn-blue:hover { background: var(--c-blue-deep); transform: translateY(-2px); }
    .btn-dark { background: #0a0a0a; color: var(--c-yellow); }
    .btn-dark:hover { background: #1f1f1f; }

    /* ── Brush strokes ──────────────────────────────────────── */
    .brush {
      position: absolute; pointer-events: none; opacity: .9;
    }

    /* ── Section pills ──────────────────────────────────────── */
    .tag-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px; border-radius: 999px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    }
    .tag-yellow { background: var(--c-yellow); color: #0a0a0a; }
    .tag-green { background: var(--c-green); color: #fff; }
    .tag-blue { background: var(--c-blue); color: #fff; }
    .tag-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); }

    .flag-dot { display:inline-flex; align-items:center; gap:6px; }
    .flag-dot::before {
      content:""; width:8px; height:8px; border-radius:50%;
      background: linear-gradient(90deg, var(--c-yellow) 33%, var(--c-green) 33% 66%, var(--c-blue) 66%);
    }

    /* ── Marquee ────────────────────────────────────────────── */
    .marquee {
      display: flex; gap: 48px; align-items: center; white-space: nowrap;
      animation: scroll 35s linear infinite;
    }
    @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-wrap { overflow: hidden; }
    .marquee-item { display: inline-flex; align-items: center; gap: 48px; }
    .marquee-dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; opacity: .6; }

    /* ── Form ───────────────────────────────────────────────── */
    .field {
      display: flex; flex-direction: column; gap: 6px;
    }
    .field label {
      font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #444;
    }
    .field input, .field textarea {
      font-family: inherit; font-size: 15px; padding: 14px 16px;
      border: 1.5px solid #e0e0e0; border-radius: 12px; background: #fff;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .field input:focus, .field textarea:focus {
      outline: none; border-color: var(--c-yellow);
      box-shadow: 0 0 0 4px rgba(255,215,0,.18);
    }
    .field textarea { min-height: 120px; resize: vertical; }

    /* ── WhatsApp float ─────────────────────────────────────── */
    .wa-float {
      position: fixed; right: 18px; bottom: 18px; z-index: 60;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 14px 30px -6px rgba(37,211,102,.55);
      transition: transform .2s ease;
    }
    .wa-float:hover { transform: scale(1.08); }
    .wa-float::after {
      content: ""; position: absolute; inset: -6px; border-radius: 50%;
      border: 2px solid #25D366; opacity: .5;
      animation: pulse 2s ease-out infinite;
    }
    @keyframes pulse {
      0% { transform: scale(.95); opacity: .7; }
      100% { transform: scale(1.3); opacity: 0; }
    }

    /* ── Nav ────────────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      background: rgba(14,14,14,.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: background .3s ease, padding .3s ease;
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px var(--pad);
      max-width: 1400px; margin: 0 auto;
    }
    .nav-logo img { height: 44px; width: auto; }
    .nav-links {
      display: flex; gap: 28px; align-items: center;
    }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: #f4f4f4;
      position: relative; padding: 6px 0;
    }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
      background: var(--c-yellow); transform: scaleX(0); transform-origin: left;
      transition: transform .25s ease;
    }
    .nav-links a:hover::after { transform: scaleX(1); }
     .nav-links a .btn {
       color: #f4f4f4!important;
     
    }
    .nav-burger { display: none; width: 32px; height: 32px; color: #fff; }
    .nav-mobile {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      background: #0a0a0a; padding: 16px var(--pad); border-bottom: 2px solid var(--c-yellow);
    }
    .nav-mobile.open { display: flex; flex-direction: column; gap: 16px; }
    .nav-mobile a { color: #fff; font-size: 16px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; align-items: center; justify-content: center;  }
      .nav-burger:hover svg path {
    stroke: #ffd700;
    transition: 0.5s;
}
.nav-mobile .btn{
    justify-content: center;
    color:#000;
}
    }

    /* ── Hero ───────────────────────────────────────────────── */
    .hero {
      background: var(--c-black); color: #fff;
      padding: 140px var(--pad) 80px;
      position: relative; overflow: hidden;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
      max-width: 1280px; margin: 0 auto; align-items: center;
    }
    .hero h1 { font-size: clamp(56px, 9vw, 132px); margin: 22px 0 18px; }
    .hero h1 .accent { color: var(--c-yellow); display: inline-block; }
    .hero h1 .accent-blue { color: var(--c-blue); }
    .hero h1 .accent-green { color: var(--c-green); }
    .hero p.lead { font-size: 18px; line-height: 1.6; color: #d8d8d8; max-width: 560px; }
    .hero-bullets {
      display: flex; flex-direction: column; gap: 14px;
      margin: 28px 0 36px;
    }
    .hero-bullet {
      display: flex; align-items: center; gap: 14px;
      font-size: 16px; color: #f0f0f0;
    }
    .hero-bullet-icon {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-photo {
      position: relative; aspect-ratio: 3/4; max-height: 720px;
      border-radius: 24px; overflow: hidden;
      background: #1a1a1a;
    }
    .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
    .hero-photo .frame-deco {
      position: absolute; inset: -12px; border: 3px solid var(--c-yellow);
      border-radius: 24px; transform: translate(14px,14px); z-index: -1;
    }
    .hero-stat {
      position: absolute; background: var(--c-yellow); color: #0a0a0a;
      border-radius: 16px; padding: 14px 18px;
      box-shadow: 0 14px 30px -10px rgba(0,0,0,.5);
      font-weight: 700;
    }
    .hero-stat strong { display: block; font-family: var(--f-display); font-size: 36px; line-height: 1; }
    .hero-stat span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
    .hero-stat-1 { left: -24px; top: 60px; }
    .hero-stat-2 { right: -16px; bottom: 80px; background: var(--c-green); color: #fff; }

    @media (max-width: 900px) {
        .hero {
    padding: 100px var(--pad) 80px;
}
      .hero-grid { grid-template-columns: 1fr; }
      .hero-photo { max-width: 480px; margin: 0 auto; }
    }

    /* ── Quick info row ─────────────────────────────────────── */
    .quick {
      background: var(--c-yellow); color: #0a0a0a;
      padding: 80px var(--pad);
      position: relative; overflow: hidden;
    }
    .quick-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
      max-width: 1180px; margin: 0 auto;
    }
    .quick-card {
      display: flex; flex-direction: column; gap: 16px;
      padding: 8px;
    }
    .quick-icon {
      width: 64px; height: 64px; border-radius: 18px;
      background: #0a0a0a; color: var(--c-yellow);
      display: flex; align-items: center; justify-content: center;
    }
    .quick-card h3 {
      font-family: var(--f-display); font-size: 30px; margin: 0;
      text-transform: uppercase; letter-spacing: .01em;
    }
    .quick-card p { font-size: 15px; line-height: 1.6; color: #2a2a2a; margin: 0; }
    .quick-divider {
      position: absolute; top: 0; left: 0; right: 0; height: 12px;
      background: repeating-linear-gradient(90deg, var(--c-green) 0 40px, var(--c-blue) 40px 80px, #0a0a0a 80px 120px);
    }
    @media (max-width: 800px) { .quick-grid { grid-template-columns: 1fr; gap: 28px; } }

    /* ── About ──────────────────────────────────────────────── */
    .about {
      background: #fff;
      padding: 100px var(--pad);
    }
    .about-grid {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
      max-width: 1180px; margin: 0 auto; align-items: center;
    }
    .about-photo {
      position: relative; aspect-ratio: 4/5; max-height: 660px;
      border-radius: 24px; overflow: hidden;
    }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; }
    .about-photo-deco {
      position: absolute; bottom: -30px; right: -30px;
      background: var(--c-yellow); color: #0a0a0a;
      padding: 18px 24px; border-radius: 18px;
      font-family: var(--f-hand); font-size: 32px; line-height: 1.1;
      box-shadow: 0 14px 30px -10px rgba(0,0,0,.2);
      transform: rotate(-3deg);
    }
    .about h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 22px; color: #0a0a0a; }
    .about h2 .h-yellow { color: var(--c-yellow-deep); }
    .about h2 .h-green { color: var(--c-green); }
    .about p { font-size: 16px; line-height: 1.7; color: #444; margin: 0 0 16px; }
    @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

    /* ── Mission / Vision / Values ──────────────────────────── */
    .mv {
      background: var(--c-black); color: #fff;
      padding: 100px var(--pad);
      position: relative; overflow: hidden;
    }
    .mv-title { text-align: center; margin-bottom: 60px; }
    .mv-title h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 12px; }
    .mv-title h2 .ac { color: var(--c-yellow); }
    .mv-top {
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
      max-width: 1180px; margin: 0 auto 50px;
    }
    .mv-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 24px; padding: 36px;
      position: relative; overflow: hidden;
    }
    .mv-card.green::before, .mv-card.blue::before {
      content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
    }
    .mv-card.green::before { background: var(--c-green); }
    .mv-card.blue::before { background: var(--c-blue); }
    .mv-card h3 {
      font-family: var(--f-display); font-size: 36px; margin: 0 0 16px;
      text-transform: uppercase; letter-spacing: .02em;
    }
    .mv-card.green h3 { color: var(--c-green); }
    .mv-card.blue h3 { color: var(--c-blue); }
    .mv-card p { font-size: 16px; line-height: 1.7; color: #ddd; margin: 0; }
    .mv-values {
      display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px;
      max-width: 1180px; margin: 0 auto;
    }
    .value-card {
      background: var(--c-yellow); color: #0a0a0a;
      border-radius: 18px; padding: 22px 14px;
      text-align: center;
      transition: transform .25s ease, background .25s ease;
    }
    .value-card:hover { transform: translateY(-6px); }
    .value-card:nth-child(7n+2), .value-card:nth-child(7n+6){
        background: var(--c-green);
        color: #fff; }
    .value-card:nth-child(7n+3), .value-card:nth-child(7n+7) { 
        background: var(--c-blue);
        color: #fff; }
    .value-card:nth-child(7n+4) {
        background: #fff;
        color: #0a0a0a; }
    .value-card .v-icon {
      width: 44px; height: 44px; margin: 0 auto 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .value-card .v-name { font-family: var(--f-display); font-size: 18px; text-transform: uppercase; }
    @media (max-width: 1000px) { .mv-values { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 600px) { .mv-values { grid-template-columns: repeat(2, 1fr); } .mv-top { grid-template-columns: 1fr; } }

    /* ── Clases ─────────────────────────────────────────────── */
    .clases {
      background: #fff; padding: 100px var(--pad);
    }
    .clases-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
    .clases-header h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 12px; color: #0a0a0a; }
    .clases-header p { font-size: 17px; color: #555; line-height: 1.6; }
    .clases-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
      max-width: 1280px; margin: 0 auto;
    }
    .clase-card {
      border-radius: 22px; overflow: hidden;
      position: relative; min-height: 380px;
      background: #f6f4ec;
      display: flex; flex-direction: column; justify-content: flex-end;
      transition: transform .3s ease;
    }
    .clase-card:hover { transform: translateY(-6px); }
    .clase-card .c-num {
      position: absolute; top: 18px; left: 18px;
      font-family: var(--f-display); font-size: 22px; color: #0a0a0a; opacity: .35;
    }
    .clase-card .c-icon {
      position: absolute; top: 22px; right: 22px;
      width: 52px; height: 52px; border-radius: 50%;
      background: #0a0a0a; color: var(--c-yellow);
      display: flex; align-items: center; justify-content: center;
    }
    .clase-card .c-body { padding: 28px 24px; }
    .clase-card h3 { font-family: var(--f-display); font-size: 32px; margin: 0 0 10px; text-transform: uppercase; }
    .clase-card p { font-size: 14px; line-height: 1.6; color: #2a2a2a; margin: 0; }
    .clase-card.feat { background: var(--c-yellow); }
    .clase-card.green { background: var(--c-green); color: #fff; }
    .clase-card.green p, .clase-card.green h3 { color: #fff; }
    .clase-card.green .c-icon { background: #fff; color: var(--c-green); }
    .clase-card.green .c-num { color: #fff; }
    .clase-card.blue { background: var(--c-blue); color: #fff; }
    .clase-card.blue p, .clase-card.blue h3 { color: #fff; }
    .clase-card.blue .c-icon { background: #fff; color: var(--c-blue); }
    .clase-card.blue .c-num { color: #fff; }
    .clase-card.black { background: #0a0a0a; color: #fff; }
    .clase-card.black p { color: #ccc; }
    .clase-card.black h3 { color: #fff; }
    .clase-card.black .c-icon { background: var(--c-yellow); color: #0a0a0a; }
    .clase-card.black .c-num { color: #fff; }
    .clases-hint {
      max-width: 1280px; margin: 32px auto 0;
      background: var(--c-yellow); color: #0a0a0a;
      border-radius: 22px;
      padding: 30px 36px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    }
    .clases-hint h3 { font-family: var(--f-display); font-size: 30px; margin: 0 0 4px; }
    .clases-hint p { margin: 0; font-size: 15px; max-width: 540px; }
    @media (max-width: 1000px) { .clases-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .clases-grid { grid-template-columns: 1fr; } }

    /* ── Horarios ───────────────────────────────────────────── */
    .horarios {
      background: var(--c-black); color: #fff;
      padding: 100px var(--pad);
      position: relative; overflow: hidden;
    }
    .horarios-grid {
      display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 64px;
      max-width: 1180px; margin: 0 auto; align-items: center;
    }
    .horarios h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 14px; }
    .horarios .underline { width: 60px; height: 4px; background: var(--c-yellow); margin: 22px 0; }
    .horarios .lead-h { font-size: 16px; line-height: 1.7; color: #bbb; max-width: 380px; }
    .horarios-card {
      background: #fff; color: #0a0a0a;
      border-radius: 24px; overflow: hidden;
      box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
    }
    .horarios-head {
      background: var(--c-yellow); color: #0a0a0a;
      padding: 18px 30px; text-align: center;
      font-weight: 700; letter-spacing: .06em; font-size: 16px;
      text-transform: uppercase;
    }
    .horarios-row {
      display: grid; grid-template-columns: 110px 1fr 130px;
      gap: 16px; padding: 18px 30px;
      border-bottom: 1px solid #f0e9c8;
      align-items: center;
    }
    .horarios-row:last-child { border-bottom: 0; }
    .horarios-day { font-family: var(--f-display); font-size: 18px; text-transform: uppercase; }
    .horarios-class { font-size: 15px; color: #333; }
    .horarios-class .level {
      display: inline-block; font-size: 11px; padding: 3px 8px; border-radius: 8px;
      background: #f3eece; color: #6b5c00; margin-left: 6px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    }
    .horarios-time { text-align: right; font-weight: 700; font-size: 14px; color: #0a0a0a; }
    .horarios-row.closed { background: #fafaf2; }
    .horarios-row.closed .horarios-time { color: #aaa; }
    .horarios-foot {
      background: #fafaf2; color: #555; font-size: 13px;
      padding: 14px 30px; text-align: center;
      border-top: 1px solid #f0e9c8;
    }
    @media (max-width: 900px) { .horarios-grid { grid-template-columns: 1fr; } }
    @media (max-width: 600px) {
      .horarios-row { grid-template-columns: 90px 1fr; }
      .horarios-time { grid-column: 1 / -1; text-align: left; }
    }

    /* ── Eventos ────────────────────────────────────────────── */
    .eventos {
      background: linear-gradient(135deg, #C8121E 0%, #FF4D2D 60%, var(--c-yellow) 100%);
      color: #fff;
      padding: 100px var(--pad);
      position: relative; overflow: hidden;
    }
    .eventos-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
    .eventos-header h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 12px; }
    .eventos-header p { font-size: 17px; line-height: 1.6; color: #fff; opacity: .92; }
    .eventos-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
      max-width: 1280px; margin: 0 auto;
    }
    .evento-card {
      position: relative; aspect-ratio: 3/4;
      border-radius: 22px; overflow: hidden;

    }
    .evento-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s ease;
    }
    .evento-card:hover img { transform: scale(1.06); }
    .evento-card::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.85) 100%);
    }
    .evento-card .e-body {
      position: absolute; left: 24px; right: 24px; bottom: 24px;
      z-index: 2; color: #fff;
    }
    .evento-card .e-tag {
      display: inline-block; background: var(--c-yellow); color: #0a0a0a;
      font-size: 11px; padding: 6px 12px; border-radius: 999px;
      letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
      margin-bottom: 12px;
    }
    .evento-card h3 { font-family: var(--f-display); font-size: 32px; margin: 0 0 8px; text-transform: uppercase; }
    .evento-card p { font-size: 14px; line-height: 1.5; opacity: .9; margin: 0; }
    @media (max-width: 900px) { .eventos-grid { grid-template-columns: 1fr; } }

    /* ── CTA intermedio ─────────────────────────────────────── */
    .cta-mid {
      position: relative; overflow: hidden;
      color: #fff; text-align: center;
      padding: 140px var(--pad);
      z-index:1;
    }
    .cta-mid::before {
      content: ""; position: absolute; inset: 0;
      background: url('assets/red-feathers-portrait.jpg') center/cover no-repeat;
      filter: brightness(.42) saturate(1.2);
      z-index: 0;
    }
    .cta-mid &gt; * { position: relative; z-index: 1; }
    .cta-mid h2 { font-size: clamp(44px, 6vw, 88px); margin: 0 0 22px; max-width: 900px; margin-inline: auto; }
    .cta-mid p { font-size: 18px; line-height: 1.6; max-width: 640px; margin: 0 auto 36px; color: #eee; }
    .cta-mid .btns { 
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position:relative;
        z-index: 2;
        padding-bottom: 20px;
    }

    /* ── Galería ────────────────────────────────────────────── */
    .galeria { background: #fff; padding: 100px var(--pad); }
    .galeria-header { text-align: center; max-width: 720px; margin: 0 auto 50px; }
    .galeria-header h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 12px; color: #0a0a0a; }
    .galeria-header p { font-size: 17px; color: #555; }
    .galeria-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px;
      gap: 16px; max-width: 1280px; margin: 0 auto;
    }
    .gal-cell {
      position: relative; overflow: hidden; border-radius: 18px;
      cursor: pointer;
    }
    .gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
    .gal-cell:hover img { transform: scale(1.08); }
    .gal-cell .gal-over {
      position: absolute; inset: 0;
      display: flex; align-items: flex-end; padding: 22px;
      opacity: 0; transition: opacity .3s ease;
    }
    .gal-cell:hover .gal-over { opacity: 1; }
    .gal-over .gal-cap { font-family: var(--f-display); font-size: 22px; line-height: 1.1; color: #0a0a0a; text-transform: uppercase; }
    .gal-cell.tall { grid-row: span 2; }
    .gal-cell.wide { grid-column: span 2; }
    @media (max-width: 900px) {
      .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
      .gal-cell.wide { grid-column: span 2; }
      .gal-cell.tall { grid-row: span 1; }
    }
    @media (max-width: 540px) {
      .galeria-grid { grid-template-columns: 1fr; }
      .gal-cell.wide { grid-column: auto; }
    }

    /* ── Testimonios ────────────────────────────────────────── */
    .testi { background: var(--c-yellow); color: #0a0a0a; padding: 100px var(--pad); }
    .testi-header { text-align: center; max-width: 720px; margin: 0 auto 50px; }
    .testi-header h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 12px; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1280px; margin: 0 auto; }
    .testi-card {
      background: #fff; border-radius: 22px; padding: 32px;
      display: flex; flex-direction: column; gap: 18px;
      box-shadow: 0 12px 30px -16px rgba(0,0,0,.2);
      position: relative;
    }
    .testi-card .quote-mark {
      font-family: var(--f-display); font-size: 80px; line-height: .8; color: var(--c-yellow);
      position: absolute; top: 14px; right: 24px;
    }
    .testi-card p { font-size: 16px; line-height: 1.65; color: #1a1a1a; margin: 0; }
    .testi-author { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
    .testi-author .avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--c-yellow), var(--c-green));
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display); font-size: 18px;
    }
    .testi-author .meta { display: flex; flex-direction: column; }
    .testi-author .name { font-weight: 700; font-size: 14px; }
    .testi-author .loc { font-size: 12px; color: #666; }
    .testi-stars { color: #FF8C00; font-size: 16px; letter-spacing: 2px; }
    @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

    /* ── Contacto ───────────────────────────────────────────── */
    .contacto { background: #fff; padding: 100px var(--pad); }
    .contacto-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      max-width: 1180px; margin: 0 auto;
    }
    .contacto h2 { font-size: clamp(40px, 5.5vw, 64px); margin: 14px 0 22px; color: #0a0a0a; }
    .contacto .underline { width: 60px; height: 4px; background: var(--c-yellow); margin: 22px 0; }
    .contact-info-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 18px; }
    .contact-info-list li a {
      display: flex; align-items: center; gap: 16px;
      font-size: 16px; color: #2a2a2a;
    }
    .contact-info-list .ci-icon {
      width: 46px; height: 46px; border-radius: 14px;
      background: var(--c-yellow); color: #0a0a0a;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-info-list li:nth-child(2) .ci-icon { background: var(--c-green); color: #fff; }
    .contact-info-list li:nth-child(3) .ci-icon { background: var(--c-blue); color: #fff; }
    .contact-info-list li:nth-child(4) .ci-icon { background: #0a0a0a; color: var(--c-yellow); }
    .contact-info-list .ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: #888; font-weight: 700; }
    .contact-info-list .ci-val { font-weight: 500; }
    .socials { display: flex; gap: 12px; margin-top: 28px; }
    .social-btn {
      width: 44px; height: 44px; border-radius: 12px;
      background: #0a0a0a; color: var(--c-yellow);
      display: flex; align-items: center; justify-content: center;
      transition: transform .2s ease, background .2s ease;
    }
    .social-btn:hover { transform: translateY(-3px); background: var(--c-yellow); color: #0a0a0a; }
    .contact-form {
      background: #fafaf2; border: 1px solid #f0e9c8;
      border-radius: 24px; padding: 36px;
      display: flex; flex-direction: column; gap: 18px;
    }
    .contact-form h3 { font-family: var(--f-display); font-size: 30px; margin: 0 0 4px; text-transform: uppercase; }
    @media (max-width: 900px) { .contacto-grid { grid-template-columns: 1fr; } }

    /* ── Footer ─────────────────────────────────────────────── */
    .footer { background: #0a0a0a; color: #ccc; padding: 80px var(--pad) 30px; }
    .footer-grid {
      display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
      max-width: 1280px; margin: 0 auto 50px;
    }
    .footer h4 { font-family: var(--f-display); font-size: 22px; color: #fff; margin: 0 0 18px; text-transform: uppercase; letter-spacing: .03em; }
    .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    .footer ul a { font-size: 14px; color: #aaa; transition: color .2s ease; }
    .footer ul a:hover { color: var(--c-yellow); }
    .footer-brand img { height: 64px; margin-bottom: 18px; }
    .footer-brand p { font-size: 14px; line-height: 1.6; color: #aaa; max-width: 300px; }
    .footer-bottom {
      max-width: 1280px; margin: 0 auto;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
      display: flex; justify-content: space-between; gap: 16px;
      font-size: 13px; color: #888; flex-wrap: wrap; align-items: center;
    }
    .footer-bottom .hand { color: var(--c-yellow); font-size: 22px; font-family: var(--f-hand); }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

    /* Bandeira stripe accent */
    .stripe {
      height: 6px;
      background: linear-gradient(90deg, var(--c-yellow) 0 33.33%, var(--c-green) 33.33% 66.66%, var(--c-blue) 66.66% 100%);
    }/* End custom CSS */