
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; background: #fff; color: #0d0d0d; overflow-x: hidden; }
    a { text-decoration: none; }
    img { display: block; max-width: 100%; }

    :root {
      --red: #D0021B; --red-dark: #9B0015;
      --blue: #0033A0; --blue-dark: #00257A;
      --gold: #FFD700;
      --dark: #0d0d0d; --gray: #555;
      --light: #f4f4f6; --border: #e0e0e0;
    }

    /* ── TICKER ── */
    .ticker-bar {
      background: var(--blue); color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.06em; padding: 7px 0;
      overflow: hidden; white-space: nowrap;
    }
    .ticker-inner { display: inline-block; animation: ticker 30s linear infinite; }
    .ticker-inner span { margin: 0 56px; }
    .ticker-inner span::before { content: "◆  "; color: var(--gold); }
    @keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

    /* ── FULLSCREEN MENU ── */
    .fullscreen-menu {
      position: fixed; inset: 0; background: var(--blue);
      z-index: 9999; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .fullscreen-menu.open { opacity: 1; pointer-events: all; }
    .menu-close { position: absolute; top: 26px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; }
    .full-menu-links { list-style: none; text-align: center; }
    .full-menu-links li { margin: 10px 0; }
    .full-menu-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.8rem; font-weight: 900; color: #fff;
      text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.2s;
    }
    .full-menu-links a:hover { color: var(--gold); }

    /* ── NAV ── */
    #nav {
      position: sticky; top: 0; z-index: 1000;
      background: #fff; border-bottom: 3px solid var(--red);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 72px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.08); transition: height 0.3s;
    }
    .nav-brand { display: flex; align-items: center; gap: 15px; }
    .nav-logo-img { width: 75px; height: auto; border-radius: 0; object-fit: contain; border: 0; flex-shrink: 0; }
    .logo-txt { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--blue); letter-spacing: 0.04em; display: block; line-height: 1; }
    .logo-sub { font-size: 0.9rem; color: var(--red); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }
    .nav-links { display: flex; gap: 30px; list-style: none; }
    .nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--red); }
    .btn-nav { background: var(--red); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 22px; border-radius: 4px; border: none; cursor: pointer; transition: background 0.2s; }
    .btn-nav:hover { background: var(--red-dark); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { width: 26px; height: 2px; background: var(--dark); display: block; }

    /* ── HERO ── */
    .pv-hero {
      position: relative;
      background: var(--dark);
      min-height: 480px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .pv-hero-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.45);
    }
    .pv-hero-content {
      position: relative; z-index: 2;
      padding: 80px 6% 60px;
      max-width: 680px;
    }
    .pv-hero-tag {
      display: inline-block; background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px;
      margin-bottom: 18px;
    }
    .pv-hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900;
      color: #fff; text-transform: uppercase; line-height: 0.95;
      letter-spacing: -0.01em; margin-bottom: 28px;
    }
    .btn-hero-outline {
      display: inline-block; border: 2px solid #fff; color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 30px;
      border-radius: 3px; transition: background 0.2s;
    }
    .btn-hero-outline:hover { background: rgba(255,255,255,0.15); }

    /* ── GARANTÍA SECTION ── */
    .garantia-section {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 540px;
    }
    .garantia-img-col {
      position: relative; overflow: hidden;
    }
    .garantia-img-col img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .garantia-content-col {
      background: #fff;
      padding: 72px 7%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .section-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--red); margin-bottom: 14px;
    }
    .section-title-lg {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
      text-transform: uppercase; line-height: 1; margin-bottom: 20px;
      color: var(--dark);
    }
    .section-title-lg span { color: var(--red); }
    .garantia-desc {
      font-size: 0.96rem; color: var(--gray); line-height: 1.7;
      margin-bottom: 36px; max-width: 420px;
    }

    /* Poliza badge */
    .poliza-box {
      display: flex; align-items: center; gap: 28px;
      background: var(--light); border-radius: 10px;
      padding: 28px 32px; margin-bottom: 32px;
      border-left: 4px solid var(--red);
    }
    .poliza-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 4.5rem; font-weight: 900; color: var(--dark); line-height: 1;
    }
    .poliza-unit {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 700; color: var(--gray);
      text-transform: uppercase; letter-spacing: 0.12em;
    }
    .poliza-sep {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; font-weight: 700; color: var(--gray);
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0 8px;
    }
    .poliza-km { display: flex; flex-direction: column; }
    .poliza-km-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1;
    }
    .poliza-km-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gray); margin-top: 2px;
    }
    .poliza-note {
      font-size: 0.78rem; color: var(--gray); margin-top: 12px;
      font-style: italic;
    }

    /* ── MANTENIMIENTOS ── */
    .mantenimiento-section {
      background: var(--dark);
      padding: 80px 6%;
      text-align: center;
    }
    .mantenimiento-section .section-eyebrow { color: var(--gold); }
    .mantenimiento-section .section-title-lg { color: #fff; margin-bottom: 50px; }
    .mantenimiento-section .section-title-lg span { color: var(--red); }

    .mant-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; max-width: 900px; margin: 0 auto 50px;
    }
    .mant-card {
      background: #1a1a1a;
      padding: 40px 28px; text-align: center;
      transition: background 0.2s;
      position: relative;
    }
    .mant-card:hover { background: #222; }
    .mant-num-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
      margin-bottom: 8px;
    }
    .mant-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3.8rem; font-weight: 900; color: #fff; line-height: 1;
    }
    .mant-unit {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700; color: var(--gold);
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-top: 6px;
    }
    .mant-badge {
      position: absolute; top: 16px; right: 16px;
      background: var(--red); color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
    }
    .mant-footer-note {
      color: rgba(255,255,255,0.45); font-size: 0.85rem;
      max-width: 520px; margin: 0 auto; line-height: 1.65;
    }

    /* ── TENER EN CUENTA ── */
    .tener-section {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }
    .tener-img-col { overflow: hidden; }
    .tener-img-col img { width: 100%; height: 100%; object-fit: cover; }
    .tener-content-col {
      background: var(--light); padding: 72px 7%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .tener-list { list-style: none; margin-top: 22px; }
    .tener-list li {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px 0; border-bottom: 1px solid #ddd;
      font-size: 0.9rem; color: var(--gray); line-height: 1.6;
    }
    .tener-list li:last-child { border-bottom: none; }
    .tener-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--red); color: #fff;
      font-size: 0.75rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
      font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0;
    }

    /* ── CUIDADO DE MOTO (TABS) ── */
    .cuidado-section { padding: 0; }
    .cuidado-top {
      background: #fff; padding: 72px 6% 0;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .cuidado-top-img { border-radius: 10px; overflow: hidden; }
    .cuidado-top-img img { width: 100%; height: 360px; object-fit: cover; }

    .tabs-wrap { margin-top: 48px; }
    .tab-nav {
      display: flex; border-bottom: 2px solid var(--border);
    }
    .tab-btn {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gray);
      background: none; border: none; cursor: pointer;
      padding: 14px 24px; border-bottom: 3px solid transparent;
      margin-bottom: -2px; transition: color 0.2s, border-color 0.2s;
      display: flex; align-items: center; gap: 8px;
    }
    .tab-btn.active { color: var(--dark); border-bottom-color: var(--red); }
    .tab-btn:hover { color: var(--dark); }

    .tab-panel { display: none; padding: 48px 0; }
    .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

    .tab-panel-img { border-radius: 8px; overflow: hidden; }
    .tab-panel-img img { width: 100%; height: 300px; object-fit: cover; }

    .tab-panel-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.7rem; font-weight: 900; text-transform: uppercase;
      color: var(--dark); margin-bottom: 24px;
    }
    .tab-steps { list-style: none; }
    .tab-step {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 14px 0; border-bottom: 1px solid var(--border);
    }
    .tab-step:last-child { border-bottom: none; }
    .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 900; color: var(--red);
      min-width: 28px; flex-shrink: 0;
    }
    .step-text { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

    /* ── TALLERES CTA ── */
    .talleres-cta {
      background: var(--red); text-align: center;
      padding: 72px 5%; position: relative; overflow: hidden;
    }
    .talleres-cta::before {
      content: 'MORA'; position: absolute;
      font-family: 'Barlow Condensed', sans-serif; font-size: 18vw; font-weight: 900;
      color: rgba(255,255,255,0.05); top: 50%; left: 50%;
      transform: translate(-50%,-50%); letter-spacing: 0.15em; pointer-events: none; white-space: nowrap;
    }
    .talleres-cta .section-eyebrow { color: rgba(255,255,255,0.65); }
    .talleres-cta-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
      color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 16px;
    }
    .talleres-cta p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 32px; line-height: 1.65; }
    .btn-white {
      display: inline-block; background: #fff; color: var(--red);
      font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 14px 36px; border-radius: 4px; transition: transform 0.15s;
    }
    .btn-white:hover { transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer { background: #080808; color: rgba(255,255,255,0.55); padding: 60px 5% 28px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand .logo-txt { color: #fff; font-size: 1.8rem; }
    .footer-brand .logo-sub { color: var(--red); }
    .footer-brand p { margin-top: 14px; font-size: 0.86rem; line-height: 1.7; max-width: 270px; }
    .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 10px; }
    .footer-bottom a { color: var(--red); }

    /* WA FLOAT */
    .wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 54px; height: 54px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.2s; }
    .wa-float:hover { transform: scale(1.1); }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      #nav { height: 70px; padding: 10px 15px; }
      .nav-logo-img { width: 64px; }
      .logo-txt { font-size: 1.55rem; }
      .logo-sub { font-size: 0.72rem; }
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
      .garantia-section, .tener-section { grid-template-columns: 1fr; }
      .garantia-img-col { height: 300px; }
      .tener-img-col { height: 280px; }
      .mant-grid { grid-template-columns: 1fr; gap: 2px; }
      .cuidado-top { grid-template-columns: 1fr; }
      .tab-panel.active { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 600px) {
      .pv-hero { min-height: 340px; }
      .poliza-box { flex-wrap: wrap; }
    }

    /* ============================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366; /* Verde oficial de WhatsApp */
  color: #FFF;
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px; /* Tamaño del logo */
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Efecto de crecimiento al pasar el mouse */
  color: #FFF;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
}
