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

/* 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&family=Montserrat:wght@400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #2a5bd7;
      --primary-dark: #1e4bb6;
      --secondary: #ff6b35;
      --dark: #1a1a2e;
      --light: #f8f9fa;
      --success: #28a745;
      --carousel-height: 550px;
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
      color: #444;
      line-height: 1.7;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    
    /* ===== NAVBAR ===== */
    .navbar {
      background-color: var(--dark);
      padding: 15px 0;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(26, 26, 46, 0.95);
      backdrop-filter: blur(10px);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: white !important;
      display: flex;
      align-items: center;
    }
    
    .navbar-brand i {
      margin-right: 10px;
      color: var(--secondary);
    }
    
    .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-weight: 500;
      margin: 0 8px;
      transition: var(--transition);
      position: relative;
      padding: 8px 12px !important;
    }
    
    .nav-link:hover {
      color: white !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 12px;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: var(--transition);
    }
    
    .nav-link:hover::after {
      width: calc(100% - 24px);
    }
    
    .navbar-toggler {
      border: none;
      padding: 8px;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* ===== HERO SECTION ===== */
    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%), url('img/mtb.jpeg') center/cover no-repeat fixed;

      padding: 100px 0 100px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
      opacity: 0.5;
    }
    
    .hero h1 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .hero p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto 30px;
      position: relative;
      z-index: 1;
      opacity: 0.9;
    }
    
    .hero .btn {
      position: relative;
      z-index: 1;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: var(--transition);
      border: none;
      background-color: var(--secondary);
    }
    
    .hero .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      background-color: #ff5a1f;
    }
    
    /* ===== SECTION STYLES ===== */
    .section {
      padding: 80px 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dark);
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 2px;
    }
    
    .section-subtitle {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      color: #666;
      font-size: 1.1rem;
    }
    
    /* ===== CARD STYLES ===== */
    .card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      height: 100%;
      background-color: white;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .card-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .card-title {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 15px;
    }
    
    .card-body {
      padding: 30px;
    }
    
    /* ===== ABOUT SECTION ===== */
    .about-img {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
    }
    
    .about-img img {
      width: 75%;
      height: auto;
      transition: var(--transition);
    }
    
    .about-img:hover img {
      transform: scale(1.03);
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
    }
    
    .feature-list li {
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
    }
    
    .feature-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--success);
    }
    
    /* ===== SERVICES SECTION ===== */
    .services-section {
      background-color: #f9fafc;
    }
    
    .service-card {
      position: relative;
      overflow: hidden;
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      opacity: 0;
      transition: var(--transition);
      z-index: 0;
    }
    
    .service-card:hover::before {
      opacity: 0.9;
    }
    
    .service-card .card-body {
      position: relative;
      z-index: 1;
    }
    
    .service-card:hover .card-icon,
    .service-card:hover .card-title,
    .service-card:hover .card-text,
    .service-card:hover ul {
      color: white;
    }
    
    .service-card:hover ul li::before {
      color: white;
    }
    
    /* ===== TECHISTAS SECTION ===== */
    .techistas-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    }
    
    .techista-card {
      text-align: center;
      padding: 30px;
    }
    
    .techista-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin: 0 auto 20px;
    }
    
    /* ===== GALLERY SECTION ===== */
    .gallery-section {
      background-color: #f9fafc;
    }
    
    #carouselTrabajos {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
    }
    
    #carouselTrabajos .carousel-item {
      transition: transform 0.6s ease-in-out;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
      width: 8%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
      width: 48px;
      height: 48px;
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      padding: 12px;
      transition: var(--transition);
    }
    
    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.6);
    }
    
    /* ===== FAQ SECTION ===== */
    .faq-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    }
    
    .accordion {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
    }
    
    .accordion-item {
      border: none;
      border-bottom: 1px solid #eee;
    }
    
    .accordion-item:last-child {
      border-bottom: none;
    }
    
    .accordion-button {
      font-weight: 600;
      padding: 20px;
      background-color: white;
    }
    
    .accordion-button:not(.collapsed) {
      background-color: white;
      color: var(--primary);
      box-shadow: none;
    }
    
    .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }
    
    .accordion-body {
      padding: 20px;
      background-color: #f9f9f9;
    }
    
    /* ===== CONTACT SECTION ===== */
    .contact-card {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: var(--box-shadow);
    }
    
    .contact-info {
      margin-bottom: 30px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .contact-icon {
      font-size: 1.5rem;
      margin-right: 15px;
      color: var(--secondary);
    }
    
    .contact-link {
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .contact-link:hover {
      color: var(--secondary);
      text-decoration: underline;
    }
    
    .form-control {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ddd;
      transition: var(--transition);
    }
    
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(42, 91, 215, 0.25);
    }
    
    textarea.form-control {
      min-height: 150px;
    }
    
    .btn-submit {
      background-color: var(--secondary);
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      transition: var(--transition);
      width: 100%;
    }
    
    .btn-submit:hover {
      background-color: #ff5a1f;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* ===== FOOTER ===== */
    footer {
      background-color: var(--dark);
      color: white;
      padding: 50px 0 20px;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      display: inline-block;
    }
    
    .footer-links h5 {
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      margin-right: 10px;
      color: white;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      background-color: var(--secondary);
      transform: translateY(-3px);
    }
    
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 30px;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }
    
    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      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 STYLES ===== */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero {
        padding: 150px 0 80px;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .section {
        padding: 50px 0;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero {
        padding: 150px 0 80px;
      }
      
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .navbar-brand {
        font-size: 1.2rem;
      }
    }
  
@media (max-width: 992px) {
  .navbar .container {
    max-width: 100% !important;
    padding: 0 15px !important;
  }
}



html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ===== INLINE <style> BLOCK #2 ===== */
.flotante {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }
        
        .boton-flotante {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .boton-flotante:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .boton-flotante img {
            width: 30px;
            height: 30px;
        }
        
        .facebook {
            background: linear-gradient(135deg, #1877F2, #0A5BC4);
        }
        
        .instagram {
            background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
        }
        
        .whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }
        
        .tooltip {
            position: absolute;
            right: 70px;
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .boton-flotante:hover .tooltip {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .flotante {
                bottom: 20px;
                right: 20px;
            }
            
            .boton-flotante {
                width: 50px;
                height: 50px;
            }
        }

      
Manifest preview
{
    "template": "mantenimientototalbahia.com.ar/index.html",
    "template_mtime": 1756752611,
    "template_mtime_human": "2025-09-01T18:50:11+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&family=Montserrat:wght@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&family=Montserrat:wght@400;500;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}