MIX · extractor de estilos
Template: serviciosdebombas24hs.com.ar/index.html · mtime: 2025-08-21 18:34
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 5 Embebidos: 0 Externos: 5 Inline styles: 1 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: serviciosdebombas24hs.com.ar/index.html */
/* Template mtime: 2025-08-21 18:34:34 */

/* 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://unpkg.com/[email protected]/dist/aos.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --rojo: #e10600;
      --rojo-oscuro: #c10500;
      --rojo-suave: rgba(225, 6, 0, 0.08);
      --negro: #111111;
      --gris-oscuro: #2d2d2d;
      --gris: #6b7280;
      --gris-claro: #f3f4f6;
      --blanco: #ffffff;
      --sombra: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
      --sombra-hover: 0 20px 45px -10px rgba(0, 0, 0, 0.15), 0 10px 15px -8px rgba(0, 0, 0, 0.15);
      --transicion: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    * {
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      overflow-x: hidden;
      width: 100%;
    }
    
    body {
      color: var(--negro);
      background: var(--blanco);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }
    
    /* Tipografía mejorada */
    h1, h2, h3, h4, h5, h6,
    .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.025em;
    }
    
    .lead {
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--gris);
    }
    
    /* Navbar mejorada */
    .navbar {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: var(--transicion);
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
    }
    
    .navbar.scrolled {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }
    
    .navbar .nav-link {
      font-weight: 500;
      padding: 0.5rem 1rem;
      position: relative;
      color: var(--gris-oscuro);
      transition: var(--transicion);
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: var(--rojo);
    }
    
    .navbar .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 1rem;
      background-color: var(--rojo);
      transition: width 0.3s ease;
    }
    
    .navbar .nav-link:hover:after,
    .navbar .nav-link.active:after {
      width: calc(100% - 2rem);
    }
    
    .brand-small {
      font-size: .72rem;
      letter-spacing: .18em;
      color: var(--gris);
      text-transform: uppercase;
      font-weight: 500;
    }
    
    /* Logo más grande en navbar */
    .navbar-brand img {
      height: 60px !important;
      width: auto;
    }
    
    /* Hero section mejorada */
    .hero {
      padding: 8rem 0 6rem;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-image: 
        radial-gradient(circle at 15% 50%, rgba(225, 6, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(225, 6, 0, 0.05) 0%, transparent 25%);
      z-index: 0;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .badge-24 {
      background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%);
      color: var(--blanco);
      font-weight: 700;
      letter-spacing: .06em;
      padding: 0.6em 1.2em;
      display: inline-flex;
      align-items: center;
      border-radius: 50px;
      box-shadow: 0 4px 14px rgba(225, 6, 0, 0.4);
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); box-shadow: 0 4px 14px rgba(225, 6, 0, 0.4); }
      50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(225, 6, 0, 0.5); }
      100% { transform: scale(1); box-shadow: 0 4px 14px rgba(225, 6, 0, 0.4); }
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--blanco);
      box-shadow: var(--sombra);
      transition: var(--transicion);
      color: var(--rojo);
      font-size: 1.5rem;
    }
    
    .feature-icon:hover {
      transform: translateY(-5px);
      box-shadow: var(--sombra-hover);
      color: var(--rojo-oscuro);
    }
    
    /* Secciones mejoradas */
    section {
      padding: 6rem 0;
      position: relative;
    }
    
    section:nth-of-type(even) {
      background: var(--gris-claro);
    }
    
    .section-title {
      font-weight: 800;
      letter-spacing: -0.025em;
      position: relative;
      display: inline-block;
      color: var(--negro);
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--rojo);
      border-radius: 2px;
    }
    
    .section-title.text-center:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* Tarjetas de servicio mejoradas */
    .service-card {
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      padding: 2rem;
      background: var(--blanco);
      box-shadow: var(--sombra);
      transition: var(--transicion);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 0;
      background: linear-gradient(to bottom, var(--rojo), var(--rojo-oscuro));
      transition: height 0.4s ease;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--sombra-hover);
      border-color: transparent;
    }
    
    .service-card:hover::before {
      height: 100%;
    }
    
    .btn-rojo {
      background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%);
      color: var(--blanco);
      border: none;
      font-weight: 600;
      padding: 0.875rem 2rem;
      border-radius: 12px;
      transition: var(--transicion);
      box-shadow: 0 4px 14px rgba(225, 6, 0, 0.4);
    }
    
    .btn-rojo:hover {
      background: linear-gradient(135deg, var(--rojo-oscuro) 0%, #a50400 100%);
      color: var(--blanco);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(225, 6, 0, 0.5);
    }
    
    .btn-outline-rojo {
      border: 2px solid var(--rojo);
      color: var(--rojo);
      font-weight: 600;
      padding: 0.875rem 2rem;
      border-radius: 12px;
      transition: var(--transicion);
      background: transparent;
    }
    
    .btn-outline-rojo:hover {
      background: var(--rojo);
      color: var(--blanco);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(225, 6, 0, 0.25);
    }
    
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, #e5e7eb, transparent);
      margin: 2rem 0;
    }
    
    /* Formulario mejorado */
    .form-control {
      padding: 0.875rem 1.25rem;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      transition: var(--transicion);
      font-size: 1rem;
    }
    
    .form-control:focus {
      border-color: var(--rojo);
      box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
    }
    
    /* Galería mejorada */
    .gallery-wrap {
      position: relative;
      overflow: hidden;
      background: var(--blanco);
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
    }
    
    .gallery-track {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem;
      width: max-content;
      animation: galleryScroll 40s linear infinite;
      will-change: transform;
    }
    
    .gallery-wrap:hover .gallery-track {
      animation-play-state: paused;
    }
    
    .gallery-item {
      flex: 0 0 auto;
      width: clamp(220px, 35vw, 400px);
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      box-shadow: var(--sombra);
      cursor: pointer;
      transition: var(--transicion);
      position: relative;
    }
    
    .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
      opacity: 0;
      transition: var(--transicion);
      z-index: 1;
    }
    
    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: var(--sombra-hover);
    }
    
    .gallery-item:hover::before {
      opacity: 1;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: var(--transicion);
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    @keyframes galleryScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    
    @media (prefers-reduced-motion: reduce) {
      .gallery-track { animation: none; }
    }
    
    @media (max-width: 992px) {
      .gallery-item { width: min(44vw, 320px); }
    }
    
    @media (max-width: 576px) {
      .gallery-track { gap: 1rem; padding: 1rem; }
      .gallery-item { width: min(80vw, 260px); }
    }
    
    /* Logo grande del hero */
    .hero-logo {
      height: clamp(150px, 20vw, 280px) !important;
      width: auto !important;
      display: block;
      margin: 0 auto;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    }
    
    @media (max-width: 576px) {
      .hero-logo { height: 180px !important; }
    }
    
    /* FAQ mejorado */
    .accordion-button {
      font-weight: 600;
      padding: 1.5rem;
      border-radius: 12px !important;
      background: var(--blanco);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 0.75rem;
      color: var(--negro);
      transition: var(--transicion);
    }
    
    .accordion-button:not(.collapsed) {
      background: rgba(225, 6, 0, 0.05);
      color: var(--rojo);
      box-shadow: 0 4px 12px rgba(225, 6, 0, 0.1);
    }
    
    .accordion-button:focus {
      box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
      border-color: var(--rojo);
    }
    
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111'%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");
    }
    
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e10600'%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");
    }
    
    .accordion-body {
      padding: 1.5rem;
      background: var(--blanco);
      border-radius: 0 0 12px 12px;
    }
    
    /* Footer mejorado */
    footer {
      background: var(--negro);
      color: #d1d5db;
      padding-top: 5rem;
      padding-bottom: 3rem;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 80%, rgba(225, 6, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.05) 0%, transparent 30%);
      z-index: 0;
    }
    
    footer > .container {
      position: relative;
      z-index: 1;
    }
    
    footer a {
      color: #f3f4f6;
      text-decoration: none;
      transition: var(--transicion);
      position: relative;
    }
    
    footer a:hover {
      color: var(--rojo);
    }
    
    footer a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 1px;
      bottom: -2px;
      left: 0;
      background-color: var(--rojo);
      transition: width 0.3s ease;
    }
    
    footer a:hover::after {
      width: 100%;
    }
    
    footer .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      margin-right: 0.75rem;
      transition: var(--transicion);
    }
    
    footer .social-links a:hover {
      background: var(--rojo);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(225, 6, 0, 0.3);
    }
    
    /* Botón volver arriba */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%);
      color: var(--blanco);
      box-shadow: 0 8px 25px rgba(225, 6, 0, 0.4);
      z-index: 1030;
      transition: var(--transicion);
      border: none;
    }
    
    .back-to-top:hover {
      background: linear-gradient(135deg, var(--rojo-oscuro) 0%, #a50400 100%);
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(225, 6, 0, 0.5);
    }
    
    .back-to-top.show {
      display: flex;
    }
    
    /* Efectos hover generales */
    .hover-effect {
      transition: var(--transicion);
    }
    
    .hover-effect:hover {
      transform: translateY(-5px);
    }
    
    /* Lista con check */
    .bullet-check li {
      margin-bottom: 0.75rem;
      display: flex;
      align-items: flex-start;
    }
    
    .bullet-check .bi {
      margin-top: 0.25rem;
      margin-right: 0.75rem;
      flex-shrink: 0;
    }
    
    /* Mejoras para móviles */
    @media (max-width: 767.98px) {
      .hero {
        padding: 6rem 0 4rem;
      }
      
      section {
        padding: 4rem 0;
      }
      
      .display-5 {
        font-size: 2.2rem;
      }
      
      .service-card {
        padding: 1.5rem;
      }
      
      .btn-rojo,
      .btn-outline-rojo {
        padding: 0.75rem 1.5rem;
      }
      
      .navbar-brand img {
        height: 50px !important;
      }
    }
    
    /* Animaciones personalizadas */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fade-in-up {
      animation: fadeInUp 0.8s ease forwards;
    }
    
    /* Efecto de partículas para el hero */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }
    
    .particle {
      position: absolute;
      background: var(--rojo);
      border-radius: 50%;
      opacity: 0.3;
      animation: float 15s infinite linear;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      100% {
        transform: translateY(-100vh) rotate(360deg);
      }
    }
    
    /* Efecto de gradiente animado en títulos */
    .gradient-text {
      background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* Botones flotantes mejorados */
    .floating-btn {
      position: fixed;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 1.6rem;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      transition: 0.3s ease;
      box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    }
    
    .floating-btn:hover {
      transform: scale(1.1) translateY(-3px);
    }
    
    /* WhatsApp 1 */
    .floating-btn.wp1 {
      bottom: 100px;
      right: 25px;
      background: #25D366;
      animation: pulse 2s infinite;
    }
    
    /* Llamada */
    .floating-btn.call {
      bottom: 180px;
      right: 25px;
      background: var(--rojo);
      animation: pulse 2s infinite;
      animation-delay: 0.5s;
    }
    
    /* Email */
    .floating-btn.email {
      bottom: 260px;
      right: 25px;
      background: #4285F4;
      animation: pulse 2s infinite;
      animation-delay: 1s;
    }
    
    /* Animación */
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
      70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }
    
    @media (max-width: 768px) {
      .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
      }
      
      .floating-btn.wp1 {
        bottom: 90px;
        right: 20px;
      }
      
      .floating-btn.call {
        bottom: 160px;
        right: 20px;
      }
      
      .floating-btn.email {
        bottom: 230px;
        right: 20px;
      }
    }

      
Manifest preview
{
    "template": "serviciosdebombas24hs.com.ar/index.html",
    "template_mtime": 1755801274,
    "template_mtime_human": "2025-08-21T18:34:34+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://unpkg.com/[email protected]/dist/aos.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&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://unpkg.com/[email protected]/dist/aos.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 1,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}