
    /* ===== CSS VARIABLES ===== */
    :root {
      --red: #CC0000;
      --red-bright: #E8000A;
      --red-dark: #8B0000;
      --black: #0A0A0A;
      --black-card: #111111;
      --black-mid: #1A1A1A;
      --white: #FFFFFF;
      --white-soft: #F0F0F0;
      --gray: #888888;
      --gray-light: #CCCCCC;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden;
    }

    /* ===== UTILITY ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .red { color: var(--red-bright); }

    /* ===== HEADER / NAV ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--red);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo .logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .nav-cta {
      background: var(--red-bright);
      color: var(--white);
      padding: 10px 22px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 1px;
      text-decoration: none;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }

    .nav-cta:hover { background: var(--red-dark); transform: scale(1.03); }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 76px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/3.webp');
      background-size: cover;
      background-position: center;
      filter: brightness(0.3);
      transform: scale(1.05);
      animation: heroPan 18s ease-in-out infinite alternate;
    }

    @keyframes heroPan {
      from { transform: scale(1.05) translateX(0); }
      to   { transform: scale(1.05) translateX(-3%); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(140,0,0,0.45) 0%, transparent 60%),
                  linear-gradient(to top, var(--black) 0%, transparent 50%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red-bright);
      padding: 6px 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--white);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

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

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      line-height: 0.95;
      letter-spacing: 1px;
      margin-bottom: 24px;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    .hero h1 .accent { color: var(--red-bright); }

    .hero p {
      font-size: clamp(16px, 2.2vw, 20px);
      color: var(--gray-light);
      line-height: 1.6;
      margin-bottom: 36px;
      max-width: 560px;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red-bright);
      color: var(--white);
      padding: 16px 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 18px;
      letter-spacing: 1px;
      text-decoration: none;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.2s;
      text-transform: uppercase;
    }

    .btn-primary:hover {
      background: var(--white);
      color: var(--red-bright);
      transform: translateY(-2px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      padding: 16px 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 1px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.2s;
      text-transform: uppercase;
    }

    .btn-secondary:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.08);
    }

    /* ===== STATS STRIP ===== */
    .stats-strip {
      background: var(--red-bright);
      padding: 20px 0;
      overflow: hidden;
    }

    .stats-scroll {
      display: flex;
      gap: 0;
      animation: scrollStrip 30s linear infinite;
      white-space: nowrap;
    }

    @keyframes scrollStrip {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .strip-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 0 40px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-right: 2px solid rgba(255,255,255,0.3);
    }

    .strip-item .dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; flex-shrink: 0; }

    /* ===== SECTION TITLES ===== */
    .section {
      padding: 96px 0;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red-bright);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 32px; height: 2px;
      background: var(--red-bright);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--gray);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 56px;
    }

    /* ===== WHY INVEST ===== */
    .why-section {
      background: var(--black-mid);
      position: relative;
      overflow: hidden;
    }

    .why-section::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200,0,0,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .why-card {
      background: var(--black-card);
      border: 1px solid rgba(255,255,255,0.06);
      border-top: 3px solid var(--red-bright);
      padding: 32px;
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }

    .why-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,0,0,0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(200,0,0,0.18); }
    .why-card:hover::after { opacity: 1; }

    .why-icon {
      font-size: 36px;
      margin-bottom: 16px;
    }

    .why-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 1px;
      margin-bottom: 10px;
      color: var(--white);
    }

    .why-card p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ===== NUMBERS ===== */
    .numbers-section { background: var(--black); }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.06);
    }

    .num-block {
      background: var(--black-card);
      padding: 40px 28px;
      text-align: center;
      border-bottom: 3px solid transparent;
      transition: border-color 0.25s, background 0.25s;
    }

    .num-block:hover {
      border-color: var(--red-bright);
      background: var(--black-mid);
    }

    .num-value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px;
      color: var(--red-bright);
      line-height: 1;
    }

    .num-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 8px;
    }

    .num-note {
      font-size: 13px;
      color: rgba(136,136,136,0.6);
      margin-top: 6px;
    }

    /* ===== GALLERY ===== */
    .gallery-section { background: var(--black-mid); padding: 80px 0; }

    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 300px 300px;
      gap: 8px;
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
    }

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

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

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

    .gallery-item .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-item:hover .overlay { opacity: 1; }

    /* ===== COTAS ===== */
    .cotas-section { background: var(--black); }

    .cotas-intro {
      max-width: 680px;
      margin-bottom: 56px;
    }

    .cotas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 56px;
    }

    .cota-card {
      background: var(--black-card);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .cota-card.featured {
      border-color: var(--red-bright);
      background: linear-gradient(135deg, rgba(200,0,0,0.1) 0%, var(--black-card) 60%);
    }

    .cota-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

    .cota-badge {
      position: absolute;
      top: 20px; right: 20px;
      background: var(--red-bright);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }

    .cota-pct {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      color: var(--red-bright);
      line-height: 1;
    }

    .cota-pct span { font-size: 36px; }

    .cota-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 24px;
      color: var(--gray-light);
    }

    .cota-list {
      list-style: none;
      margin-bottom: 32px;
    }

    .cota-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: var(--gray-light);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      line-height: 1.5;
    }

    .cota-list li::before {
      content: '▸';
      color: var(--red-bright);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .cota-cta {
      display: block;
      text-align: center;
      background: var(--red-bright);
      color: var(--white);
      padding: 14px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 17px;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all 0.2s;
    }

    .cota-cta:hover { background: var(--white); color: var(--red-bright); }

    .cota-card:not(.featured) .cota-cta {
      background: transparent;
      border: 2px solid var(--red-bright);
      color: var(--red-bright);
      clip-path: none;
    }

    .cota-card:not(.featured) .cota-cta:hover {
      background: var(--red-bright);
      color: var(--white);
    }

    /* How it works steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      background: var(--black-mid);
      border: 1px solid rgba(255,255,255,0.06);
      margin-top: 56px;
    }

    .step {
      padding: 36px 28px;
      border-right: 1px solid rgba(255,255,255,0.06);
      position: relative;
    }

    .step:last-child { border-right: none; }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      color: rgba(200,0,0,0.15);
      line-height: 1;
      position: absolute;
      top: 16px; right: 20px;
    }

    .step-icon { font-size: 28px; margin-bottom: 12px; }

    .step h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ===== METHODOLOGY ===== */
    .method-section { background: var(--black-mid); }

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

    .method-img {
      position: relative;
    }

    .method-img img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .method-img::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 2px solid var(--red-bright);
      z-index: -1;
    }

    .method-steps { display: flex; flex-direction: column; gap: 24px; }

    .method-item {
      display: flex;
      gap: 20px;
      padding: 20px;
      background: var(--black-card);
      border-left: 3px solid var(--red-bright);
      transition: transform 0.2s;
    }

    .method-item:hover { transform: translateX(6px); }

    .method-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      color: var(--red-bright);
      line-height: 1;
      flex-shrink: 0;
      min-width: 40px;
    }

    .method-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 17px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

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

    /* ===== PARTNERS ===== */
    .partners-section { background: var(--black); padding: 80px 0; }

    .partners-title {
      text-align: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 48px;
    }

    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 24px;
    }

    .partner-pill {
      background: var(--black-card);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 20px 36px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
      color: var(--white-soft);
      transition: all 0.25s;
      position: relative;
    }

    .partner-pill::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: var(--red-bright);
    }

    .partner-pill:hover {
      border-color: var(--red-bright);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* ===== SECURITY ===== */
    .security-section {
      background: linear-gradient(135deg, #0f0f0f 0%, #1a0000 100%);
      position: relative;
      overflow: hidden;
    }

    .security-section::before {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,0,0,0.12) 0%, transparent 70%);
    }

    .security-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .security-points { display: flex; flex-direction: column; gap: 20px; }

    .sec-point {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .sec-icon {
      width: 48px; height: 48px;
      background: rgba(200,0,0,0.15);
      border: 1px solid rgba(200,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .sec-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

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

    .dre-card {
      background: var(--black-card);
      border: 1px solid rgba(255,255,255,0.08);
      border-top: 3px solid var(--red-bright);
      padding: 36px;
    }

    .dre-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dre-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 14px;
    }

    .dre-row .label { color: var(--gray); }
    .dre-row .val { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; }
    .dre-row .val.pos { color: #4CAF50; }
    .dre-row .val.neg { color: var(--red-bright); }

    .dre-note {
      margin-top: 16px;
      font-size: 12px;
      color: rgba(136,136,136,0.6);
      font-style: italic;
    }

    /* ===== FRANCHISE OWNERS ===== */
    .owners-section { background: var(--black-mid); }

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

    .owner-card {
      background: var(--black-card);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .owner-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

    .owner-header {
      background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
      padding: 28px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .owner-avatar {
      width: 88px; height: 88px;
      border-radius: 50%;
      background: rgba(0,0,0,0.3);
      border: 3px solid rgba(255,255,255,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--white);
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: 0 0 0 3px rgba(200,0,0,0.5), 0 6px 20px rgba(0,0,0,0.5);
    }

    .owner-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .owner-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 1px;
    }

    .owner-info .role {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0.8;
    }

    .owner-body { padding: 28px; }

    .owner-body p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }

    .owner-tags { display: flex; flex-wrap: wrap; gap: 8px; }

    .tag {
      background: rgba(200,0,0,0.12);
      border: 1px solid rgba(200,0,0,0.3);
      color: var(--red-bright);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
    }

    /* ===== FINAL CTA ===== */
    .cta-section {
      background: var(--red-bright);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 200%;
      height: 120px;
      background: var(--black);
      clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px; left: 50%;
      transform: translateX(-50%);
      width: 200%;
      height: 120px;
      background: var(--black);
      clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
    }

    .cta-inner { position: relative; z-index: 2; }

    .cta-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 80px);
      line-height: 1;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 18px;
      opacity: 0.9;
      max-width: 540px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .cta-contacts {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--black);
      color: var(--white);
      padding: 16px 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 18px;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.2s;
    }

    .contact-btn:hover { background: var(--white); color: var(--black); transform: translateY(-3px); }

    .contact-btn.wa { background: #128c3e; }
    .contact-btn.wa:hover { background: #0f7a36; color: var(--white); }

    /* ===== FOOTER ===== */
    footer {
      background: #050505;
      padding: 36px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .footer-brand span { color: var(--red-bright); }

    .footer-copy {
      font-size: 13px;
      color: var(--gray);
    }

    /* ===== WHATSAPP FLOAT ===== */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 200;
      width: 60px; height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: waBounce 3s ease-in-out infinite;
    }

    .wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }

    @keyframes waBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .wa-float svg { width: 32px; height: 32px; fill: white; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .gallery-item.span-row { grid-row: auto; }
      .method-grid, .security-grid, .cotas-grid, .owners-grid {
        grid-template-columns: 1fr;
      }
      .method-img { display: none; }
    }

    @media (max-width: 600px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .step:last-child { border-bottom: none; }
      .nav-logo .brand { font-size: 16px; }
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-secondary { clip-path: none; text-align: center; justify-content: center; }
    }
  

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
  .nav { padding: 12px 16px; }
  .nav-cta { font-size: 13px; padding: 8px 14px; }

  .hero { padding-top: 70px; }
  .hero-content { max-width: 100%; padding: 0 8px; }

  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; font-size: 16px; padding: 14px 20px; }

  .section { padding: 56px 0; }
  .section-title { font-size: clamp(28px, 7vw, 48px); }

  .why-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.span-row { grid-row: span 1; }
  .gallery-item { height: 220px; }

  .cotas-grid { grid-template-columns: 1fr; }
  .cota-card { padding: 28px 20px; }
  .cota-pct { font-size: 56px; }

  .method-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-img img { height: 260px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .step:last-child { border-bottom: none; }

  .team-grid { grid-template-columns: 1fr; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .security-grid { grid-template-columns: 1fr; }

  .cta-section .cta-actions { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { justify-content: center; }

  .container { padding: 0 16px; }

  .strip-item { padding: 0 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .num-value { font-size: 40px; }
  .cota-pct { font-size: 48px; }
  .hero h1 { font-size: clamp(40px, 10vw, 64px); }
}

/* Fix video para mobile */
#gallery-video {
  width: 100% !important;
  height: auto !important;
  max-height: 60vw;
  min-height: 200px;
}
