MIX · extractor de estilos
Template: crecimientoseguro.com/index.html · mtime: 2025-09-25 13:09
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 5 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: crecimientoseguro.com/index.html */
/* Template mtime: 2025-09-25 13:09:47 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root{
    /* === Marca y acento (verde + azul) === */
    --brand:        #22C55E;   /* verde (emerald) */
    --brand-light:  #86EFAC;   /* tinte claro del brand */
    --brand-dark:   #16A34A;   /* sombra del brand */

    --accent:       #2563EB;   /* azul (royal/indigo) */
    --accent-light: #60A5FA;   /* tinte claro del acento */
    --accent-dark:  #1E40AF;   /* sombra del acento */

    /* === Neutros (fríos, acordes a la paleta) === */
    --dark:         #111827;   /* gris carbón frío */
    --dark-light:   #1F2937;   /* superficie oscura */
    --muted:        #6B7280;   /* texto secundario */
    --light:        #F8FAFC;   /* fondos suaves */
    --white:        #FFFFFF;

    /* === Gradientes coherentes con la nueva marca === */
    --gradient-primary:   linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--brand-light) 0%, var(--accent-light) 100%);
    --gradient-dark:      linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);

    /* === Sombras con tinte del acento (sutiles) === */
    --shadow-sm: 0 4px 12px rgba(37, 99, 235, 0.10);
    --shadow-md: 0 8px 24px rgba(37, 99, 235, 0.14);
    --shadow-lg: 0 16px 48px rgba(37, 99, 235, 0.18);

    /* === Radios (se mantienen) === */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
  }

  /* Alternativa (verde + naranja): descomentar para usar
  :root{
    --brand:        #22C55E;
    --brand-light:  #86EFAC;
    --brand-dark:   #16A34A;

    --accent:       #F97316;   /* naranja */
    --accent-light: #FDBA74;
    --accent-dark:  #C2410C;

    --dark:         #111827;
    --dark-light:   #1F2937;
    --muted:        #6B7280;
    --light:        #F8FAFC;
    --white:        #FFFFFF;

    --gradient-primary:   linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--brand-light) 0%, var(--accent-light) 100%);
    --gradient-dark:      linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);

    --shadow-sm: 0 4px 12px rgba(249, 115, 22, 0.10);
    --shadow-md: 0 8px 24px rgba(249, 115, 22, 0.14);
    --shadow-lg: 0 16px 48px rgba(249, 115, 22, 0.18);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
  }
  */
/* Opcional: contraste de texto si usás badges/btn sólidos */
  .text-on-brand   { color: #FFFFFF; }    /* sobre --brand / --accent */
  .text-on-light   { color: #2B2222; }    /* sobre --light/--white */


    * {
      box-sizing: border-box;
    }

    html, body {
      scroll-behavior: smooth;
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
    }

    body {
      background: var(--light);
      color: var(--dark);
      overflow-x: hidden;
    }

    a {
      color: var(--brand);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    a:hover {
      color: var(--brand-dark);
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .btn {
      border-radius: var(--radius-md);
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-brand {
      background: var(--gradient-primary);
      color: var(--white);
      border: none;
      box-shadow: var(--shadow-sm);
    }

    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      color: var(--white);
    }

    .btn-outline-brand {
      border: 2px solid var(--brand);
      color: var(--brand);
      background: transparent;
    }

    .btn-outline-brand:hover {
      background: var(--brand);
      color: var(--white);
      transform: translateY(-2px);
    }

    .text-accent {
      color: var(--accent);
    }

    .text-gradient {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .badge-soft {
      background: rgba(37, 99, 235, 0.1);
      color: var(--brand-dark);
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: 50px;
    }

    .section-title {
      font-weight: 800;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .section-title.center:after {
      left: 50%;
      transform: translateX(-50%);
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 3rem;
    }

    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 18px rgba(20, 20, 43, 0.06);
      padding: 1rem 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: var(--shadow-md);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
    }

    .navbar .nav-link {
      font-weight: 500;
      position: relative;
      margin: 0 0.5rem;
    }

    .navbar .nav-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.3s ease;
    }

    .navbar .nav-link:hover:after,
    .navbar .nav-link.active:after {
      width: 100%;
    }

    /* Hero */
    .hero {
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #F0FDF4 0%, #EFF6FF 100%);
    }

    .hero:before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: var(--gradient-primary);
      opacity: 0.05;
      border-radius: 50%;
      z-index: 0;
    }

    .hero:after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: var(--gradient-secondary);
      opacity: 0.05;
      border-radius: 50%;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      background: rgba(37, 99, 235, 0.1);
      color: var(--brand-dark);
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-weight: 800;
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero p.lead {
      font-size: 1.2rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    .trust-badges {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .trust-badge i {
      color: var(--brand);
      font-size: 1.2rem;
    }

    .hero-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .hero-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }

    .feature-item:last-child {
      border-bottom: none;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(37, 99, 235, 0.1);
      color: var(--brand);
      font-size: 1.2rem;
    }

    /* Secciones */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-light {
      background: var(--white);
    }

    .section-dark {
      background: var(--gradient-dark);
      color: var(--white);
    }

    .section-dark .section-title,
    .section-dark .section-subtitle {
      color: var(--white);
    }

    .section-dark .section-title:after {
      background: var(--accent);
    }

    /* Cards */
    .card-soft {
      border: none;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      overflow: hidden;
      height: 100%;
    }

    .card-soft:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .card-icon {
      width: 70px;
      height: 70px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(37, 99, 235, 0.1);
      color: var(--brand);
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    /* Team */
    .team-card {
      text-align: center;
      padding: 2rem;
    }

    .team-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1.5rem;
      border: 4px solid var(--white);
      box-shadow: var(--shadow-md);
    }

    /* Curso */
    .course-highlight {
      background: var(--gradient-primary);
      color: var(--white);
      padding: 3rem;
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
    }

    .course-highlight:before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .course-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .course-feature-icon {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
      font-size: 1.2rem;
    }

    /* Ticker */
    .ticker-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f7ff 0%, #f5f3ff 100%);
    }

    .ticker-wrap {
      position: relative;
      overflow: hidden;
      margin: 2rem 0;
    }

    .ticker-viewport {
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      gap: 20px;
      will-change: transform;
    }

    .slide {
      flex: 0 0 auto;
      width: 300px;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #ddd;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .slide:hover {
      transform: scale(1.05);
    }

    @media(min-width: 576px) {
      .slide {
        width: 350px;
        height: 350px;
      }
    }

    @media(min-width: 992px) {
      .slide {
        width: 450px;
        height: 450px;
      }
    }

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

    .ticker-controls {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      pointer-events: none;
      padding: 0 20px;
    }

    .ticker-controls .btn {
      pointer-events: auto;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(37, 99, 235, 0.2);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ticker-toolbar {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 20px;
    }

    /* FAQs */
    .faq-accordion .accordion-item {
      border: none;
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-accordion .accordion-button {
      background: var(--white);
      border: none;
      padding: 1.5rem;
      font-weight: 600;
      box-shadow: none;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      background: rgba(108, 99, 255, 0.05);
      color: var(--brand-dark);
    }

    .faq-accordion .accordion-button:after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .faq-accordion .accordion-body {
      padding: 0 1.5rem 1.5rem;
    }

    /* Contacto */
    .contact-form .form-control,
    .contact-form .form-select {
      border-radius: var(--radius-md);
      border: 1px solid #e2e8f0;
      padding: 0.75rem 1rem;
      transition: all 0.3s ease;
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .contact-info-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-md);
      height: 100%;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-info-icon {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(37, 99, 235, 0.1);
      color: var(--brand);
      font-size: 1.2rem;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: var(--white);
      padding: 4rem 0 2rem;
    }

    .footer-links h6 {
      color: var(--white);
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 0.75rem;
    }

    .footer-links ul li a {
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
    }

    .footer-links ul li a:hover {
      color: var(--white);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--brand);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      margin-top: 3rem;
    }

    /* FAB WhatsApp */
    .whatsapp-fab {
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #25D366;
      color: var(--white);
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
      z-index: 9999;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .whatsapp-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
      color: var(--white);
    }

    .whatsapp-label {
      position: fixed;
      right: 95px;
      bottom: 30px;
      background: var(--dark);
      color: var(--white);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-md);
      font-size: 0.9rem;
      z-index: 9999;
      box-shadow: var(--shadow-md);
    }

    /* Animaciones */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.2s;
    }

    .delay-2 {
      animation-delay: 0.4s;
    }

    .delay-3 {
      animation-delay: 0.6s;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .trust-badges {
        flex-direction: column;
        gap: 1rem;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
/* === Logo de navbar: tamaño y redondeo === */
.navbar-brand .brand-img{
  display:block;
  height: 40px;         /* ajustá a gusto */
  width: auto;          /* mantiene proporción */
  border-radius: 10px;  /* redondeo del logo */
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

@media (max-width: 575.98px){
  .navbar-brand .brand-img{ height: 34px; }
}

/* === Marco con gradiente animado + “titilar” suave === */
.brand-img-wrap{
  --r: 12px;                   /* radio del marco */
  --pad: 3px;                  /* grosor del marco */
  --g1: var(--brand, #853D34);
  --g2: var(--accent, #501414);

  position: relative;
  display: inline-grid;
  place-items: center;
  padding: var(--pad);
  border-radius: calc(var(--r) + var(--pad));
  background: linear-gradient(120deg, var(--g1), var(--g2), var(--g1));
  background-size: 200% 200%;
  animation: brandSheen 8s ease-in-out infinite;
  /* brillo externo muy sutil */
  box-shadow: 0 0 0 0 rgba(133,61,52,.0);
}

/* halo animado (titila) */
.brand-img-wrap::after{
  content:"";
  position:absolute; inset:-6px;
  border-radius: calc(var(--r) + var(--pad) + 6px);
  background: radial-gradient(40% 60% at 50% 50%, rgba(133,61,52,.20), transparent 60%);
  filter: blur(6px);
  animation: brandPulse 3.6s ease-in-out infinite;
  pointer-events: none;
}

/* Hover: un poquito más de vida */
.navbar-brand:hover .brand-img-wrap{
  animation-duration: 5.5s;
}
.navbar-brand:hover .brand-img-wrap::after{
  animation-duration: 2.6s;
}

/* Animaciones */
@keyframes brandSheen{
  0%,100%{ background-position: 0% 50%; }
  50%    { background-position: 100% 50%; }
}
@keyframes brandPulse{
  0%,100%{ opacity:.25; transform: scale(1); }
  50%    { opacity:.45; transform: scale(1.03); }
}

/* Respeto por reduce motion */
@media (prefers-reduced-motion: reduce){
  .brand-img-wrap,
  .brand-img-wrap::after{
    animation: none !important;
  }
}

/* ===== INLINE <style> BLOCK #3 ===== */
.hero { position: relative; overflow: hidden; }
      .hero-badge { font-size:.95rem; padding:.5rem .75rem; border-radius:999px; background: rgba(37,99,235,.1); }
      .hero-card .feature-icon { min-width:3rem; min-height:3rem; display:grid; place-items:center; }
      .trust-badge { font-size:.9rem; }
  
      .hero-title{
        font-weight:800; line-height:1.1; letter-spacing:-.02em;
        margin:.25rem 0 0; font-size:clamp(2rem, 4.2vw, 3.2rem);
      }
      .hero-title .brand{ color: var(--brand); }
  
      .fade-in-up{ opacity:0; transform:translateY(12px); animation: fadeUp .6s ease forwards; }
      .delay-1{ animation-delay:.08s; } .delay-2{ animation-delay:.16s; } .delay-3{ animation-delay:.24s; }
      @keyframes fadeUp{ to{ opacity:1; transform:none; } }
  
      @media (min-width: 992px){
        .hero-card{ margin-top:1.25rem !important; }
      }

/* ===== INLINE <style> BLOCK #4 ===== */
/* Avatares cuadrados, sin deformaciones */
      .avatar-figure{
        position: relative;
        width: 100px;
        height: 100px;
        margin: 0;
        flex: 0 0 auto;
      }
      .avatar-img{
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 16px; /* coincide con .rounded-4 */
        display: block;
      }
  
      /* Tip azul consistente (círculo perfecto) */
      .status-tip{
        position: absolute;
        right: -4px;
        bottom: -4px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #0d6efd; /* azul Bootstrap; podés usar var(--brand) si querés */
        color: #fff;
        display: grid;
        place-items: center;
        border: 2px solid #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,.15);
        line-height: 1; /* evita estirado vertical */
      }
      .status-tip .bi{ font-size: 14px; }
  
      /* Botones con ícono alineado */
      .btn-icon{
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        line-height: 1.1;
        padding-inline: .65rem .8rem;
        white-space: nowrap;
      }
      .btn-icon .bi{ font-size: 1rem; }
  
      /* Tarjeta suave: usa tus variables si querés */
      .card-soft{
        border: 1px solid rgba(0,0,0,.06);
        border-radius: var(--radius-lg, 16px);
        box-shadow: var(--shadow-sm, 0 4px 12px rgba(0,0,0,.08));
      }
  
      /* Micro-ajustes responsive */
      @media (max-width: 575.98px){
        .avatar-figure{ width: 88px; height: 88px; }
        .status-tip{ width: 22px; height: 22px; }
        .status-tip .bi{ font-size: 12px; }
      }

/* ===== INLINE <style> BLOCK #5 ===== */
/* Ajustes del ticker */
      #mini-ticker { --ticker-gap: 16px; --ticker-speed: 18s; }
  
      .ticker-wrap{
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-lg, 16px);
        box-shadow: var(--shadow-sm, 0 4px 12px rgba(0,0,0,.08));
        /* Fading suave en bordes */
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
                mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
        background: var(--light, #F8F5F4);
      }
      .ticker-track{
        display: flex;
        gap: var(--ticker-gap);
        padding: var(--ticker-gap);
        width: max-content;
        animation: tickerScroll var(--ticker-speed) linear infinite;
      }
      .ticker-wrap:hover .ticker-track{ animation-play-state: paused; }
  
      .slide{
        flex: 0 0 auto;
        width: clamp(220px, 32vw, 420px);
        aspect-ratio: 16/10; /* cambiá si querés: 1/1 o 4/3 */
        border-radius: var(--radius-md, 12px);
        overflow: hidden;
        background: #eee;
      }
      .slide img{
        width: 100%; height: 100%;
        object-fit: cover; display: block;
      }
  
      @keyframes tickerScroll{
        from { transform: translateX(0); }
        to   { transform: translateX(calc(-50% - var(--ticker-gap))); }
        /* -50% porque duplicamos 3→6 slides */
      }
  
      /* Menos movimiento si el usuario lo prefiere */
      @media (prefers-reduced-motion: reduce){
        .ticker-track{ animation: none; }
      }
  
      /* Pequeños refinamientos de spacing según viewport */
      @media (min-width: 992px){
        #mini-ticker{ padding-block: 1.25rem; }
      }

      
Manifest preview
{
    "template": "crecimientoseguro.com/index.html",
    "template_mtime": 1758805787,
    "template_mtime_human": "2025-09-25T13:09:47+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 5,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}