  /* =========================================
    VARIABLES DE COLOR Y TIPOGRAFÍA
    ========================================= */
  :root {
      --bg-dark: #0a0a0a;
      --text-main: #ffffff;
      --text-muted: #d1d5db;
      --brand-orange: #ee7b1c;
      --brand-orange-strong: #ff5500;
      --brand-red: #ea1a22;
      --brand-yellow: #faea0a;
      --font-heading: 'Arial Black', Impact, sans-serif;
      --font-body: 'Arial', sans-serif;
      --transition-smooth: 0.3s ease;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); }

  /* =========================================
    ANIMACIONES GLOBALES
    ========================================= */
  @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .animate-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
  .animate-scroll.is-visible { opacity: 1; transform: translateY(0); }

  /* =========================================
    BARRA DE NAVEGACIÓN Y MENÚ
    ========================================= */
  .navbar { display: flex; justify-content: space-between; align-items: center; padding: 0.9375rem 3.125rem; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: fixed; top: 0; width: 100%; z-index: 1000; transition: transform 0.3s ease-in-out; }
  .navbar-hidden { transform: translateY(-100%); }
  .logo img { height: 60px; margin: .5rem;}
  .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
  .header-right { display: flex; flex-direction: row; align-items: center; gap: 0.9375rem; }
  .nav-links { display: flex; align-items: center; }
  .nav-links > a, .dropbtn { color: var(--text-main); text-decoration: none; margin-left: 1.5625rem; font-family: inherit; font-size: 1rem; text-transform: uppercase; transition: color var(--transition-smooth); cursor: pointer; }
  .nav-links > a:hover, .dropdown:hover .dropbtn { color: var(--brand-orange-strong); }
  .dropdown { position: relative; display: inline-block; padding-bottom: 0.625rem; top: 0.3125rem;}
  .arrow { font-size: 0.7rem; margin-left: 0.1875rem; transition: transform var(--transition-smooth); }
  .dropdown:hover .arrow { transform: rotate(180deg); display: inline-block; }
  .dropdown-content { opacity: 0; visibility: hidden; transform: translateY(0.9375rem); position: absolute; top: 100%; left: 0; background-color: #111111; min-width: 20rem; box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.8); border-top: 3px solid var(--brand-red); transition: all var(--transition-smooth); z-index: 1; }
  .dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-content a { color: var(--text-main); padding: 0.9375rem 1.25rem; text-decoration: none; display: block; font-size: 0.85rem; font-weight: bold; border-bottom: 1px solid rgba(255,255,255,0.05); transition: all var(--transition-smooth); margin-left: 0; }
  .dropdown-content a:hover { background-color: rgba(234, 26, 34, 0.1); color: var(--brand-red); padding-left: 1.5625rem; }
  .btn-phone { background-color: var(--brand-orange-strong); color: #ffffff; padding: 0.875rem 1.75rem; border-radius: 1.875rem; text-decoration: none; font-size: 1.1rem; font-weight: bold; transition: transform var(--transition-smooth); }
  .btn-phone:hover { transform: translateX(-0.1875rem); background-color: var(--brand-orange);}

  .btn-primary-red { background-color: var(--brand-red); color: white; border: 2px solid var(--brand-red); padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: bold; border-radius: 1.875rem; text-decoration: none; text-transform: uppercase; transition: all var(--transition-smooth); letter-spacing: 0.0625rem; display: inline-block;}
  .btn-primary-red:hover { background-color: transparent; color: var(--brand-red); box-shadow: 0 0 1.25rem rgba(234, 26, 34, 0.3); }

  /* =========================================
    SUBPAGE HERO
    ========================================= */
  .subpage-hero { padding: 8.75rem 5vw 3.75rem 5vw; background-color: var(--bg-dark); }
  .subpage-hero-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.75rem; align-items: center; }
  .section-subtitle-small { font-family: var(--font-heading); font-size: 0.85rem; color: var(--text-main); letter-spacing: 0.125rem; text-transform: uppercase; display: block; margin-bottom: 1.25rem; }
  .subpage-hero-content h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; }
  .subpage-hero-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; }
  .breadcrumbs { margin-top: 2rem; font-size: 0.85rem; font-weight: bold; letter-spacing: 0.0625rem; text-transform: uppercase; }
  .breadcrumbs a { color: var(--brand-orange-strong); text-decoration: none; transition: color var(--transition-smooth); }
  .breadcrumbs a:hover { color: var(--brand-red); }
  .breadcrumbs .divider { margin: 0 0.625rem; color: var(--text-muted); }
  .breadcrumbs .current { color: var(--text-muted); }
  .subpage-hero-image img { width: 100%; height: auto; border-radius: 0.75rem; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.5); }

  /* =========================================
    GUARANTEE TICKER
    ========================================= */
  .guarantee-ticker {
      background-color: var(--brand-red);
      padding: 1.25rem 0;
      overflow: hidden;
      position: relative;
      display: flex;
      white-space: nowrap;
      border-top: 2px solid rgba(255, 255, 255, 0.2);
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  .ticker-content { display: flex; animation: marquee 25s linear infinite; }
  .ticker-content span { font-family: var(--font-heading); font-size: 1.2rem; color: #ffffff; text-transform: uppercase; letter-spacing: 0.125rem; margin-right: 3.125rem; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* =========================================
    WHY CHOOSE US FOR ROCK CHIP (4 COLUMNS)
    ========================================= */
  .rock-why-section {
      padding: 5rem 5vw;
      background-color: #050505; /* Fondo negro profundo */
  }

  .rock-why-container {
      max-width: 81.25rem;
      margin: 0 auto;
  }

  .rock-why-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.75rem;
  }

  .title-wrapper {
      position: relative;
      max-width: 60%;
  }

  .brands-title-container { position: relative; }
  .brands-title { font-family: var(--font-heading); font-size: 2rem; color: var(--text-main); position: relative; z-index: 2; }
  .brands-title::before { content: attr(data-text); position: absolute; top: -0.625rem; left: 0; font-size: 3.5rem; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05); z-index: -1; white-space: nowrap; }

  .main-why-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3vw, 2.5rem);
      text-transform: uppercase;
      line-height: 1.2;
  }

  /* Botón Outline Rojo en el Header */
  .btn-outline-red {
      background-color: transparent;
      color: var(--brand-red);
      border: 2px solid var(--brand-red);
      padding: 0.9375rem 2.5rem;
      font-size: 0.9rem;
      font-weight: bold;
      border-radius: 1.875rem;
      text-decoration: none;
      text-transform: uppercase;
      transition: all var(--transition-smooth);
      letter-spacing: 0.0625rem;
  }

  .btn-outline-red:hover {
      background-color: var(--brand-red);
      color: white;
      box-shadow: 0 0 1.25rem rgba(234, 26, 34, 0.3);
  }

  /* Grid de 4 Columnas */
  .rock-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
  }

  .rock-card {
      padding: 2.1875rem 1.5625rem;
      border-radius: 0.75rem;
      box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
  }

  .rock-card:hover {
      transform: translateY(-0.5rem);
  }

  .card-red {
      background-color: var(--brand-red);
      color: white;
  }

  .card-red:hover {
      box-shadow: 0 0.9375rem 2.1875rem rgba(234, 26, 34, 0.4);
  }

  .card-dark {
      background-color: #111111;
      color: white;
  }

  .card-dark:hover {
      box-shadow: 0 0.9375rem 2.1875rem rgba(255, 255, 255, 0.1);
  }

  .rock-icon {
      margin-bottom: 1.25rem;
  }

  .rock-icon svg {
      width: 2.8125rem;
      height: 2.8125rem;
      transition: transform var(--transition-smooth);
  }

  /* Íconos blancos para ambas tarjetas */
  .card-red .rock-icon svg, .card-dark .rock-icon svg {
      stroke: #ffffff;
  }

  .rock-card:hover .rock-icon svg {
      transform: scale(1.15) rotate(3deg);
  }

  .rock-card h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.03125rem;
  }

  .rock-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      opacity: 0.9;
      flex-grow: 1; /* Empuja el contenido si las tarjetas tienen alturas distintas */
  }

  /* =========================================
    BENEFITS SECTION
    ========================================= */
  .benefits-section {
      padding: 5rem 5vw;
      background-color: #050505;
      /* Fondo con patrón de cuadrícula */
      background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 20px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .benefits-container {
      max-width: 81.25rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  /* Imagen y Sello */
  .benefits-image-wrapper {
      position: relative;
      border-radius: 0.625rem;
      box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.5);
      height: 100%;
      min-height: 25rem;
  }

  .benefits-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0.625rem;
  }

  .rotating-badge {
      position: absolute;
      top: 20px;
      left: -40px;
      width: 120px;
      height: 120px;
      background-color: var(--brand-red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0.3125rem 0.9375rem rgba(234, 26, 34, 0.4);
      animation: rotateBadge 10s linear infinite;
      z-index: 10;
  }

  @keyframes rotateBadge {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
  }

  /* Tarjetas de Beneficios */
  .benefits-content {
      display: flex;
      flex-direction: column;
  }

  .benefits-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
  }

  .benefit-card {
      /* Fondo rojo brillante para el borde */
      background: linear-gradient(135deg, var(--brand-red) 0%, #8a0c13 100%);
      padding: 2px; /* Grosor del borde */
      border-radius: 0.625rem;
      /* Efecto de esquina cortada inferior derecha */
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }

  .benefit-card-inner {
      /* Fondo negro interior */
      background-color: #111111;
      padding: 1.5rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      height: 100%;
      /* Mismo corte de esquina para que encaje el interior */
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 19px), calc(100% - 19px) 100%, 0 100%);
      transition: background-color var(--transition-smooth);
  }

  .benefit-card:hover .benefit-card-inner {
      background-color: #1a1a1a;
  }

  .benefit-icon svg {
      width: 2rem;
      height: 2rem;
      stroke: var(--text-main);
  }

  .benefit-text h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
      text-transform: uppercase;
      letter-spacing: 0.05rem;
  }

  .benefit-text p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
  }

  /* =========================================
    PROCESS SECTION (Línea de Tiempo)
    ========================================= */
  .process-section { padding: 5rem 5vw; background-color: #0d0d0d; }
  .process-header { text-align: center; margin-bottom: 3.75rem; }
  .process-steps { display: flex; justify-content: space-between; align-items: center; max-width: 81.25rem; margin: 0 auto; gap: 0.9375rem; }

  .step-card { background-color: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0.625rem; padding: 1.875rem; flex: 1; min-height: 18.125rem; display: flex; flex-direction: column; transition: all var(--transition-smooth); position: relative; }
  .step-card:hover { border-color: var(--brand-orange); background-color: rgba(20, 20, 20, 0.9); box-shadow: 0 0.625rem 1.5625rem rgba(238, 123, 28, 0.15); }
  .step-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.9375rem; text-transform: uppercase; letter-spacing: 0.03125rem; color: var(--text-main); }
  .step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; }

  .step-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 1.25rem; }
  .step-icon svg { width: 2.375rem; height: 2.375rem; stroke: var(--brand-red); transition: transform var(--transition-smooth); }
  .step-card:hover .step-icon svg { transform: scale(1.1); }

  .step-number { font-family: var(--font-heading); font-size: 4.5rem; line-height: 0.75; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2); transition: all var(--transition-smooth); }
  .step-card:hover .step-number { -webkit-text-stroke: 1.5px var(--brand-orange); color: rgba(238, 123, 28, 0.1); }
  .step-arrow { color: var(--brand-red); font-size: 1.8rem; font-weight: bold; }

  /* =========================================
    PORTFOLIO SECTION
    ========================================= */
  .portfolio-section { padding: 3.75rem 5vw; background-color: #050505; border-top: 1px solid rgba(255, 255, 255, 0.05);}
  .portfolio-header { text-align: center; max-width: 50rem; margin: 0 auto 3.125rem auto; }
  .portfolio-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-top: 1.25rem; }
  .portfolio-grid { display: grid; gap: 1.25rem; max-width: 81.25rem; margin: 0 auto; }
  .portfolio-img { width: 100%; height: 15.625rem; object-fit: cover; border-radius: 0.5rem; border: 3px solid var(--brand-red); transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); }
  .portfolio-img:hover { transform: scale(1.03); box-shadow: 0 0.625rem 1.5625rem rgba(234, 26, 34, 0.4); z-index: 2; position: relative; }

  /* =========================================
    CALL TO ACTION & TICKER SECTION
    ========================================= */
  .cta-wrapper { position: relative; width: 100%; }
  .cta-banner { min-height: 31.25rem; display: flex; align-items: center; justify-content: flex-end; padding: 3.125rem 5vw; position: relative; background-size: cover; background-position: center; }
  .cta-banner::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.8) 100%); }
  .cta-content-box { background: rgba(20, 20, 20, 0.85); backdrop-filter: blur(10px); border-top: 3px solid var(--brand-orange); padding: 3.125rem 2.5rem; max-width: 34.375rem; border-radius: 0.5rem; position: relative; z-index: 1; box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.5); }
  .cta-content-box h2 { font-family: var(--font-heading); font-size: 2rem; line-height: 1.2; margin-bottom: 1.25rem; text-transform: uppercase; color: var(--text-main); }
  .cta-content-box p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5625rem; }
  .cta-phone { color: var(--brand-red); font-weight: bold; text-decoration: underline; text-underline-offset: 3px; }

  /* =========================================
    REVIEWS SECTION
    ========================================= */
  .reviews-section { padding: 3.75rem 5vw; background-color: #050505; text-align: center; }
  .carousel-wrapper { position: relative; max-width: 81.25rem; margin: 0 auto; display: flex; align-items: center; }
  .reviews-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 1.25rem 0; scrollbar-width: none; }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card { min-width: 18.75rem; max-width: 21.875rem; background-color: #111; border-top: 4px solid var(--brand-orange); border-radius: 0.5rem; padding: 1.5625rem; text-align: left; scroll-snap-align: start; box-shadow: 0 0.625rem 1.25rem rgba(0,0,0,0.5); flex-shrink: 0; }
  .review-header { display: flex; align-items: center; gap: 0.9375rem; margin-bottom: 0.9375rem; }
  .reviewer-avatar { width: 2.8125rem; height: 2.8125rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; color: white; }
  .reviewer-info h4 { font-size: 1rem; display: flex; align-items: center; gap: 0.3125rem; color: var(--text-main); }
  .verified-icon { width: 1rem; color: #e74c3c; }
  .reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }
  .stars { color: var(--brand-yellow); font-size: 1.2rem; margin-bottom: 0.9375rem; letter-spacing: 0.125rem; }
  .review-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.9375rem; }
  .read-more { color: var(--brand-red); text-decoration: none; font-size: 0.9rem; font-weight: bold; }
  .carousel-btn { background-color: rgba(255,255,255,0.1); color: white; border: none; width: 2.8125rem; height: 2.8125rem; border-radius: 50%; cursor: pointer; font-size: 1.2rem; position: absolute; z-index: 10; transition: background var(--transition-smooth); }
  .carousel-btn:hover { background-color: var(--brand-red); }
  .left-btn { left: -1.25rem; }
  .right-btn { right: -1.25rem; }

  /* =========================================
    CONTACT & FORM SECTION
    ========================================= */
  .contact-section { padding: 3.75rem 5vw; background-color: var(--bg-dark); }
  .contact-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.75rem; }
  .info-block { margin-bottom: 1.5625rem; }
  .info-block h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.3125rem; color: white;}
  .info-block a, .info-block p { color: var(--text-muted); text-decoration: none; font-size: 1rem; }
  .info-block a:hover { color: var(--brand-orange); }
  .map-container { margin-top: 1.875rem; }

  .contact-form-box { background-color: #0f0f0f; padding: 2.5rem; border-radius: 0.75rem; border-top: 4px solid var(--brand-red); box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.5); }
  .contact-form-box h3 { font-family: var(--font-heading); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1.875rem; color: var(--text-main); }
  .contact-form-box input[type="text"], .contact-form-box input[type="email"], .contact-form-box input[type="tel"] { width: 100%; padding: 0.9375rem 0; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); color: white; font-size: 1rem; margin-bottom: 1.5625rem; font-family: var(--font-body); }
  .contact-form-box input:focus { outline: none; border-bottom: 2px solid var(--brand-orange); }
  .phone-input-group { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 1.5625rem; }
  .phone-input-group span { margin-right: 0.625rem; font-size: 1.2rem; }
  .phone-input-group input { border-bottom: none !important; margin-bottom: 0 !important; }

  .checkbox-title { font-weight: bold; color: var(--brand-red); margin-bottom: 0.9375rem; }
  .checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9375rem; margin-bottom: 1.875rem; }
  .checkbox-group label, .consent-group label { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; }
  .consent-group { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.9375rem;}
  .consent-group span { line-height: 1.4; font-size: 0.85rem; }
  input[type="checkbox"] { accent-color: var(--brand-orange); transform: scale(1.2); margin-top: 0.1875rem;}
  .form-links { text-align: center; font-size: 0.85rem; }
  .form-links a { color: var(--text-muted); text-decoration: underline; margin: 0 0.3125rem; }
  .form-links a:hover { color: var(--brand-orange); }

  /* =========================================
    FAQ SECTION
    ========================================= */
  .faq-section { padding: 3.75rem 5vw; background-color: #050505; border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .faq-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: flex-start; }

  .faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
  .faq-item { background-color: #111111; border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth); }
  .faq-item.active { border-color: var(--brand-red); box-shadow: 0 0 1.25rem rgba(234, 26, 34, 0.15); }
  .faq-question { width: 100%; background: transparent; border: none; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); font-family: var(--font-heading); font-size: 1.05rem; text-align: left; cursor: pointer; transition: color var(--transition-smooth); }
  .faq-question:hover { color: var(--brand-red); }
  .faq-icon { stroke: var(--brand-red); transition: transform 0.3s ease; }
  .faq-item.active .faq-icon { transform: rotate(180deg); }
  .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
  .faq-item.active .faq-answer { grid-template-rows: 1fr; }
  .faq-answer-inner { overflow: hidden; }
  .faq-answer-inner p { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

  /* =========================================
    FOOTER
    ========================================= */
  .footer { background-color: #050505; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 3.75rem; }
  .footer-container { max-width: 81.25rem; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3.125rem; padding: 0 5vw 3.125rem 5vw; }
  .footer-logo { height: 3.75rem; margin-bottom: 1.25rem; }
  .brand-col p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
  .footer-col h3 { font-family: var(--font-heading); color: white; margin-bottom: 1.5625rem; font-size: 1.1rem; letter-spacing: 0.0625rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.9375rem; display: flex; align-items: center; }
  .footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: bold; transition: color 0.3s; }
  .footer-col ul li a:hover { color: var(--brand-orange); }
  .asterisks { color: var(--brand-red); margin-right: 0.9375rem; letter-spacing: 0.125rem;}
  .contact-list li { color: var(--text-muted); font-size: 0.95rem; }
  .social-icons { display: flex; gap: 0.9375rem; margin-top: 1.25rem; }
  .social-icons a { width: 2.1875rem; height: 2.1875rem; background-color: var(--brand-red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: bold; transition: transform 0.3s, background 0.3s; }
  .social-icons a:hover { transform: scale(1.1); background-color: var(--brand-orange); }
  .footer-bottom { background-color: #000; text-align: center; padding: 1.25rem; color: #777; font-size: 0.85rem; }

  /* =========================================
    MOBILE
    ========================================= */


  /* =========================================
    ROCK CHIP RESPONSIVE + ORANGE PRIORITY
    ========================================= */

  body.menu-open {
    overflow: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  section {
    overflow: hidden;
  }

  /* Priorizar naranja en toda la página */
  :root {
    --brand-main: var(--brand-orange);
    --brand-main-strong: var(--brand-orange-strong);
  }

  /* Botones principales */
  .btn-primary-red,
  .btn-outline-red {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #000 !important;
  }

  .btn-primary-red:hover,
  .btn-outline-red:hover {
    background: var(--brand-orange-strong) !important;
    border-color: var(--brand-orange-strong) !important;
    color: #000 !important;
  }

  /* Elementos que estaban rojos */
  .dropdown-content {
    border-top-color: var(--brand-orange) !important;
  }

  .dropdown-content a:hover,
  .read-more,
  .cta-phone,
  .checkbox-title,
  .faq-question:hover {
    color: var(--brand-orange) !important;
  }

  .guarantee-ticker,
  .scrolling-ticker,
  .card-red,
  .rotating-badge,
  .social-icons a {
    background-color: var(--brand-orange) !important;
  }

  .card-red:hover {
    box-shadow: 0 15px 35px rgba(238, 123, 28, 0.4) !important;
  }

  .benefit-card {
    background: linear-gradient(135deg, var(--brand-orange), #b9550d) !important;
  }

  .contact-form-box {
    border-top-color: var(--brand-orange) !important;
  }

  .faq-item.active {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 20px rgba(238, 123, 28, 0.18) !important;
  }

  .faq-icon,
  .step-arrow,
  .step-icon svg {
    stroke: var(--brand-orange) !important;
    color: var(--brand-orange) !important;
  }

  .portfolio-img {
    border-color: var(--brand-orange) !important;
  }

  /* Botón formulario como imagen */
  form button[type="submit"],
  .btn-submit-form,
  .form-submit,
  .btn-form {
    width: 100%;
    background: var(--brand-orange) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 18px 35px !important;
    font-size: 0.9rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: none !important;
  }

  form button[type="submit"]:hover,
  .btn-submit-form:hover,
  .form-submit:hover,
  .btn-form:hover {
    background: var(--brand-orange-strong) !important;
    color: #000 !important;
    transform: translateY(-2px);
  }

  /* =========================================
    TABLET
    ========================================= */

  @media (max-width: 1024px) {
    .navbar {
      padding: 14px 28px;
    }

    .mobile-menu-btn {
      display: block;
      position: relative;
      z-index: 10001;
    }

    .header-right {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100vh;
      background: #0a0a0a;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 28px;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 10000;
      padding: 90px 24px 40px;
    }

    .header-right.active {
      transform: translateX(0);
    }

    .nav-links {
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .nav-links > a,
    .nav-links .dropbtn,
    .dropdown {
      margin-left: 0;
      font-size: 1.15rem;
      text-align: center;
    }

    .dropdown {
      width: 100%;
      padding-bottom: 0;
      top: 0;
    }

    .dropdown-content {
      position: static;
      min-width: 100%;
      width: 100%;
      margin-top: 16px;
      background: transparent;
      border-top: 1px solid rgba(238, 123, 28, 0.35);
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
    }

    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      text-align: center;
      padding: 12px;
      font-size: 0.85rem;
    }

    .subpage-hero-container,
    .benefits-container,
    .contact-container,
    .faq-container {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .subpage-hero {
      padding-top: 120px;
    }

    .subpage-hero-content,
    .rock-why-header,
    .benefits-content,
    .contact-info,
    .faq-info {
      text-align: center;
    }

    .subpage-hero-content .btn,
    .rock-why-header .btn,
    .faq-info .btn {
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .breadcrumbs {
      text-align: center;
    }

    .rock-why-header {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .title-wrapper {
      max-width: 100%;
    }

    .rock-cards-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .rock-card {
      min-height: 260px;
    }

    .benefits-image-wrapper {
      min-height: 420px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .step-arrow {
      display: none;
    }

    .portfolio-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .cta-banner {
      justify-content: center;
      text-align: center;
    }

    .cta-banner::before {
      background: rgba(10, 10, 10, 0.72);
    }

    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* =========================================
    MOBILE
    ========================================= */

  @media (max-width: 768px) {
    html {
      font-size: 15px;
    }

    .navbar {
      padding: 12px 18px;
    }

    .logo img {
      height: 52px;
      margin: 0;
    }

    .subpage-hero,
    .rock-why-section,
    .benefits-section,
    .process-section,
    .portfolio-section,
    .reviews-section,
    .contact-section,
    .faq-section {
      padding-left: 22px;
      padding-right: 22px;
    }

    .subpage-hero {
      padding-top: 105px;
      padding-bottom: 50px;
    }

    .subpage-hero-content h1 {
      font-size: clamp(2rem, 10vw, 3rem);
    }

    .rock-why-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .rock-why-header {
      margin-bottom: 32px;
    }

    .main-why-title {
      font-size: 2rem;
      line-height: 1.12;
    }

    .brands-title {
      font-size: 1.45rem;
    }

    .brands-title::before {
      display: none;
    }

    /* Esta es la corrección principal de img1 */
    .rock-cards-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .rock-card {
      width: 100%;
      min-height: auto;
      padding: 28px 24px;
      text-align: center;
      align-items: center;
      border-radius: 18px;
    }

    .rock-card h3 {
      font-size: 1.15rem;
      word-break: normal;
      overflow-wrap: normal;
      letter-spacing: 0.5px;
    }

    .rock-card p {
      font-size: 0.95rem;
      max-width: 320px;
    }

    .rock-icon {
      margin-bottom: 18px;
    }

    .rock-icon svg {
      width: 42px;
      height: 42px;
    }

    .ticker-content span {
      font-size: 0.95rem;
      margin-right: 34px;
    }

    .benefits-container {
      gap: 34px;
    }

    .benefits-image-wrapper {
      min-height: 340px;
    }

    .rotating-badge {
      width: 96px;
      height: 96px;
      left: 50%;
      top: 16px;
      transform: translateX(-50%);
      animation: none;
    }

    .benefit-card,
    .benefit-card-inner {
      clip-path: none;
      border-radius: 16px;
    }

    .benefit-card-inner {
      flex-direction: column;
      text-align: center;
      padding: 24px;
    }

    .process-steps {
      grid-template-columns: 1fr;
    }

    .step-card {
      min-height: auto;
      text-align: center;
    }

    .step-footer {
      justify-content: center;
      gap: 24px;
    }

    .portfolio-grid {
      grid-template-columns: 1fr !important;
    }

    .portfolio-img {
      height: 230px;
    }

    .cta-banner {
      min-height: 460px;
      padding: 50px 22px;
    }

    .cta-content-box {
      padding: 34px 24px;
    }

    .cta-content-box h2 {
      font-size: 1.65rem;
    }

    .reviews-track {
      gap: 16px;
      padding: 20px 0 34px;
    }

    .review-card {
      min-width: 85%;
      max-width: 85%;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      top: auto;
      bottom: -28px;
      background: var(--brand-orange);
      color: #000;
    }

    .left-btn {
      left: calc(50% - 48px);
    }

    .right-btn {
      right: calc(50% - 48px);
    }

    .contact-form-box {
      padding: 30px 22px;
    }

    .checkbox-group {
      grid-template-columns: 1fr;
    }

    .checkbox-group label,
    .consent-group label {
      text-align: left;
    }

    .faq-question {
      font-size: 0.95rem;
      padding: 20px;
      gap: 16px;
    }

    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-col ul li,
    .contact-list li,
    .social-icons {
      justify-content: center;
    }
  }

  /* =========================================
    SMALL PHONES
    ========================================= */

  @media (max-width: 480px) {
    .subpage-hero-content h1,
    .main-why-title {
      font-size: 2rem;
    }

    .btn,
    .btn-primary,
    .btn-primary-red,
    .btn-outline-red,
    .btn-phone {
      width: 100%;
      text-align: center;
      justify-content: center;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .rock-card {
      padding: 26px 20px;
    }

    .review-card {
      min-width: 92%;
      max-width: 92%;
    }

    input,
    textarea,
    select {
      font-size: 16px;
    }
  }

  /* =========================================
    FIX SOLO SECCIÓN ROCK CHIP - CHOOSE US
    NARANJA PRINCIPAL / ROJO ACENTO
    ========================================= */

  /* Sección */
  .rock-why-section {
    background: #050505;
  }

  /* Header de la sección */
  .rock-why-header {
    align-items: center;
  }

  /* Botón GET A QUOTE */
  .rock-why-header .btn-outline-red {
    background: transparent !important;
    border: 2px solid var(--brand-orange) !important;
    color: var(--brand-orange) !important;
  }

  .rock-why-header .btn-outline-red:hover {
    background: var(--brand-orange) !important;
    color: #000 !important;
    box-shadow: 0 0 22px rgba(238, 123, 28, 0.35) !important;
  }

  /* Tarjetas principales: naranja */
  .rock-card.card-red {
    background: linear-gradient(145deg, var(--brand-orange), #c75e0c) !important;
    color: #ffffff;
    border: 1px solid rgba(238, 123, 28, 0.65);
    box-shadow: 0 12px 30px rgba(238, 123, 28, 0.18);
  }

  /* Tarjetas oscuras: negro con detalle naranja */
  .rock-card.card-dark {
    background: #111111 !important;
    border: 1px solid rgba(238, 123, 28, 0.35);
    color: #ffffff;
  }

  /* Rojo solo como acento pequeño */
  .rock-card.card-dark .rock-icon {
    color: var(--brand-red);
  }

  .rock-card.card-dark .rock-icon svg {
    stroke: var(--brand-orange);
  }

  .rock-card.card-red .rock-icon svg {
    stroke: #ffffff;
  }

  .rock-card h3 {
    color: #ffffff;
  }

  .rock-card p {
    color: rgba(255, 255, 255, 0.88);
  }

  /* Hover con naranja, no rojo */
  .rock-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(238, 123, 28, 0.28) !important;
  }

  /* =========================================
    RESPONSIVE CORRECTO PARA ESA SECCIÓN
    ========================================= */

  @media (max-width: 1024px) {
    .rock-why-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }

    .title-wrapper {
      max-width: 100% !important;
    }

    .rock-cards-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 22px;
    }

    .rock-card {
      min-height: 260px;
    }
  }

  @media (max-width: 768px) {
    .rock-why-section {
      padding: 60px 22px !important;
    }

    .rock-why-header {
      align-items: stretch;
      text-align: left;
      margin-bottom: 30px;
    }

    .title-wrapper {
      max-width: 100% !important;
    }

    .brands-title {
      font-size: 1rem !important;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .brands-title::before {
      display: none !important;
    }

    .main-why-title {
      font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
      line-height: 1.05 !important;
      max-width: 100%;
    }

    .rock-why-header .btn-outline-red {
      width: fit-content !important;
      min-width: 150px;
      padding: 13px 28px !important;
      font-size: 0.75rem !important;
      align-self: flex-start;
    }

    /* Esta es la corrección principal */
    .rock-cards-grid {
      grid-template-columns: 1fr !important;
      gap: 18px !important;
      width: 100%;
    }

    .rock-card {
      width: 100% !important;
      min-height: auto !important;
      padding: 28px 24px !important;
      border-radius: 18px !important;
      text-align: left;
      align-items: flex-start;
    }

    .rock-icon {
      margin-bottom: 18px !important;
    }

    .rock-icon svg {
      width: 42px !important;
      height: 42px !important;
    }

    .rock-card h3 {
      font-size: 1.05rem !important;
      line-height: 1.2 !important;
      letter-spacing: 0.8px;
      word-break: normal !important;
      overflow-wrap: normal !important;
      hyphens: none !important;
    }

    .rock-card p {
      font-size: 0.95rem !important;
      line-height: 1.6 !important;
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .rock-why-section {
      padding-left: 18px !important;
      padding-right: 18px !important;
    }

    .main-why-title {
      font-size: 1.9rem !important;
    }

    .rock-card {
      padding: 26px 20px !important;
    }

    .rock-card h3 {
      font-size: 1rem !important;
    }
  }

  /* =========================================
    FIX CARRUSEL REVIEWS - MISMO ESTILO QUE LA PÁGINA PRINCIPAL
    ========================================= */

  .reviews-section {
    padding: 80px 5vw;
    background-color: #050505;
    text-align: center;
  }

  .carousel-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  .reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
    background-color: #111;
    border-top: 4px solid var(--brand-orange);
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    scroll-snap-align: start;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(238, 123, 28, 0.22);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-orange) !important;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .reviewer-info h4 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
  }

  .reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .verified-icon {
    width: 16px;
    color: var(--brand-orange);
  }

  .stars {
    color: var(--brand-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
  }

  .review-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .read-more {
    color: var(--brand-orange) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
  }

  .read-more:hover {
    color: var(--brand-red) !important;
  }

  /* Botones laterales como el primer carrusel */
  .carousel-btn {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    position: absolute;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .carousel-btn:hover {
    background-color: var(--brand-red);
    color: #fff;
    transform: scale(1.05);
  }

  .left-btn {
    left: -20px;
  }

  .right-btn {
    right: -20px;
  }

  /* =========================================
    RESPONSIVE CARRUSEL
    ========================================= */

  @media (max-width: 768px) {
    .reviews-section {
      padding: 60px 22px 80px;
    }

    .carousel-wrapper {
      padding: 0;
    }

    .reviews-track {
      gap: 16px;
      padding: 20px 0 40px;
    }

    .review-card {
      min-width: 85%;
      max-width: 85%;
      padding: 24px;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      top: auto;
      bottom: -25px;
      background-color: var(--brand-orange);
      color: #000;
    }

    .carousel-btn:hover {
      background-color: var(--brand-orange-strong);
    }

    .left-btn {
      left: calc(50% - 48px);
    }

    .right-btn {
      right: calc(50% - 48px);
    }
  }

  @media (max-width: 480px) {
    .review-card {
      min-width: 92%;
      max-width: 92%;
    }
  }

  /* =========================================
   FINAL FIX - REVIEWS CAROUSEL
   MISMO ESTILO QUE EL PRIMER CARRUSEL
   ========================================= */

.reviews-section {
  padding: 80px 5vw;
  background-color: #050505;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  max-width: 350px;
  flex-shrink: 0;
  background-color: #111;
  border-top: 4px solid var(--brand-orange);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  scroll-snap-align: start;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(238, 123, 28, 0.22);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.reviewer-info h4 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-icon {
  width: 16px;
  color: var(--brand-orange);
}

.stars {
  color: var(--brand-yellow);
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
}

.read-more {
  color: var(--brand-orange) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

.read-more:hover {
  color: var(--brand-red) !important;
}

/* Botones laterales */
.carousel-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  position: absolute;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--brand-red);
  color: #fff;
  transform: scale(1.05);
}

.left-btn {
  left: -20px;
}

.right-btn {
  right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 22px 80px;
  }

  .reviews-track {
    gap: 16px;
    padding: 20px 0 40px;
  }

  .review-card {
    min-width: 85%;
    max-width: 85%;
    padding: 24px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -25px;
    background-color: var(--brand-orange);
    color: #000;
  }

  .carousel-btn:hover {
    background-color: var(--brand-red);
    color: #fff;
  }

  .left-btn {
    left: calc(50% - 48px);
  }

  .right-btn {
    right: calc(50% - 48px);
  }
}

@media (max-width: 480px) {
  .review-card {
    min-width: 92%;
    max-width: 92%;
  }
}

/* =========================================
   FIX PRIMER TICKER
   HACER GUARANTEE-TICKER IGUAL AL SEGUNDO
   ========================================= */

.scrolling-ticker.guarantee-ticker {
  background-color: var(--brand-orange) !important;
  padding: 0.9375rem 0 !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  white-space: nowrap !important;
  border-top: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.scrolling-ticker.guarantee-ticker .ticker-content {
  display: flex !important;
  width: max-content !important;
  animation: marquee 25s linear infinite !important;
}

.scrolling-ticker.guarantee-ticker .ticker-content span {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.125rem !important;
  margin-right: 3.125rem !important;
}

/* Rojo solo como acento cuando pase el mouse */
.scrolling-ticker.guarantee-ticker:hover {
  background-color: var(--brand-red) !important;
}

@media (max-width: 768px) {
  .scrolling-ticker.guarantee-ticker .ticker-content span {
    font-size: 0.95rem !important;
    margin-right: 34px !important;
  }
}

@media (max-width: 1024px) {
    .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .dropdown.open .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 15px;
    }

    .dropdown.open .arrow {
        transform: rotate(180deg);
        display: inline-block;
    }
}