MIX · extractor de estilos
Template: colmenaquilmes.com.ar/index.html · mtime: 2025-10-16 13:36
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 4 Embebidos: 0 Externos: 4 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: colmenaquilmes.com.ar/index.html */
/* Template mtime: 2025-10-16 13:36:38 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.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=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #173378;
      --primary-dark: #1e4bbf;
      --primary-light: #e8f0fe;
      --secondary: #ff6b35;
      --secondary-light: #fff0e8;
      --light: #f8f9fa;
      --dark: #212529;
      --dark-light: #495057;
      --success: #28a745;
      --info: #17a2b8;
      --gradient-primary: linear-gradient(135deg, var(--primary), #4a89dc);
      --gradient-secondary: linear-gradient(135deg, var(--secondary), #ff8e53);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
      --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
      background-color: #f8fafc;
      scroll-behavior: smooth;
    }
    html, body {
      height: 100%;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.3;
    }
    
    .display-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }
    
    /* Navbar */
    .navbar {
      padding: 20px 0;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      background-color: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(10px);
      z-index: 1000;
    }
    
    .navbar.scrolled {
      padding: 12px 0;
      box-shadow: var(--shadow-md);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--primary) !important;
      display: flex;
      align-items: center;
      transition: var(--transition);
    }
    
    .navbar-brand i {
      margin-right: 10px;
      font-size: 1.8rem;
      color: var(--secondary);
    }
    
    .navbar-brand:hover {
      transform: scale(1.02);
    }
    
    .nav-link {
      font-weight: 600;
      padding: 8px 15px !important;
      color: var(--dark) !important;
      transition: var(--transition);
      position: relative;
      font-size: 0.95rem;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--primary) !important;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 15px;
      background: var(--gradient-primary);
      transition: var(--transition);
      border-radius: 3px;
    }
    
    .nav-link:hover:after, .nav-link.active:after {
      width: calc(100% - 30px);
    }
    
    .hero {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 100vh;
      background: none;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 0;
    }

    .hero::before {
      content: "";
      display: block;
      width: 100%;
      height: 60vh;
      background: url('img/hero.png') top center/cover no-repeat;
      background-size: cover;
      background-position: center;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 40px 20px;
      max-width: 800px;
      margin-top: -20px;
      background: rgba(255,255,255,0.95);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #444;
    }
    
    /* Buttons */
    .btn {
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 50px;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.95rem;
      border: none;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary {
      background: var(--gradient-primary);
      border: none;
      position: relative;
      z-index: 1;
    }
    
    .btn-primary:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-dark), #3a79d4);
      opacity: 0;
      z-index: -1;
      transition: var(--transition);
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(42, 91, 215, 0.3);
    }
    
    .btn-primary:hover:before {
      opacity: 1;
    }
    .btn-outline-light[href="#planes"] {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light[href="#planes"]:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

    .btn-outline-light {
      border: 2px solid rgba(255,255,255,0.3);
      background: transparent;
      color: white;
    }
    
    .btn-outline-light:hover {
      background: white;
      color: var(--primary);
      border-color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    }
    
    .btn-wsp {
      background-color: #25d366;
      color: white;
      margin: 5px;
      position: relative;
      overflow: hidden;
    }
    
    .btn-wsp:hover {
      background-color: #1ebe5b;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    
    .btn-wsp i {
      margin-right: 8px;
    }
    
    /* Section Titles */
    .section-title {
      font-size: 2.8rem;
      margin-bottom: 30px;
      font-weight: 700;
      color: var(--primary);
      position: relative;
      display: inline-block;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      width: 80px;
      height: 5px;
      bottom: -15px;
      left: 0;
      background: var(--gradient-primary);
      border-radius: 5px;
    }
    
    .text-center .section-title:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .section-subtitle {
      font-size: 1.2rem;
      color: var(--dark-light);
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Cards */
    .card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 12px 36px rgba(0,0,0,0.25);
    }
    
    .card-header {
      background: var(--gradient-primary);
      color: white;
      padding: 25px;
      border-bottom: none;
    }
    
    .card-body {
      padding: 35px;
    }
    
    .card-title {
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--primary);
      font-size: 1.5rem;
    }
    
    /* Benefit Icons */
    .benefit-icon {
      font-size: 1.3rem;
      color: var(--success);
      margin-right: 12px;
      width: 28px;
      text-align: center;
    }
    
    /* Features */
    .feature-box {
      text-align: center;
      padding: 40px 30px;
      border-radius: 16px;
      transition: var(--transition);
      background: white;
      box-shadow: var(--shadow-md);
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.25);
    }
    
    .feature-box i {
      font-size: 3rem;
      margin-bottom: 25px;
      color: var(--primary);
      background: linear-gradient(to right, var(--primary), #4a89dc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: var(--transition);
    }
    
    .feature-box:hover i {
      transform: scale(1.2);
    }
    
    .feature-box h4 {
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--primary);
    }
    
    .feature-box p {
      color: var(--dark-light);
    }
    
    /* Accordion */
    .accordion-button {
      font-weight: 600;
      padding: 20px 25px;
      background-color: white;
      font-size: 1.05rem;
      box-shadow: none;
    }
    
    .accordion-button:not(.collapsed) {
      background-color: rgba(42, 91, 215, 0.05);
      color: var(--primary);
      box-shadow: none;
    }
    
    .accordion-button:focus {
      box-shadow: none;
      border-color: rgba(42, 91, 215, 0.2);
    }
    
    .accordion-button:after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a5bd7'%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-item {
      border: 1px solid rgba(0, 0, 0, 0.08);
      margin-bottom: 15px;
      border-radius: 12px !important;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    
    /* Contact Form */
    .form-control, .form-select {
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      font-size: 1rem;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(42, 91, 215, 0.1);
    }
    
    textarea.form-control {
      min-height: 150px;
    }
    
    /* Testimonials */
    .testimonial-img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid var(--primary-light);
      box-shadow: var(--shadow-md);
    }
    
    .testimonial-quote {
      position: relative;
      padding-left: 30px;
    }
    
    .testimonial-quote:before {
      content: '"';
      position: absolute;
      left: 0;
      top: -15px;
      font-size: 4rem;
      color: rgba(42, 91, 215, 0.1);
      font-family: 'Times New Roman', serif;
      line-height: 1;
    }
    
    /* Footer */
    footer {
      background: linear-gradient(135deg, #1e2b3a, #2c3e50);
      color: white;
      padding: 80px 0 30px;
      position: relative;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      display: inline-block;
      margin-bottom: 20px;
    }
    
    .footer-logo i {
      color: var(--secondary);
      margin-right: 10px;
    }
    
    .footer-about {
      opacity: 0.8;
      margin-bottom: 25px;
    }
    
    .footer-links h5 {
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      font-size: 1.2rem;
    }
    
    .footer-links h5:after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      bottom: -10px;
      left: 0;
      background: var(--gradient-secondary);
      border-radius: 3px;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: white;
      transform: translateX(5px);
    }
    
    .footer-links a i {
      margin-right: 8px;
      width: 20px;
      text-align: center;
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      margin-right: 12px;
      color: #173378;
      transition: var(--transition);
      font-size: 1.1rem;
    }
    
    .social-icons a:hover {
      background: var(--gradient-secondary);
      transform: translateY(-5px) scale(1.1);
    }
    
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 25px;
      margin-top: 60px;
      color: rgba(255, 255, 255, 0.5);
    }
    
    /* Floating WhatsApp Button */
    .floating-whatsapp{
      position:fixed;
      bottom:30px;
      right:15px;
      z-index:99;
      animation:pulse 2s infinite;
    }
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    
    /* Stats Counter */
    .stats-box {
      background: white;
      padding: 40px 30px;
      border-radius: 16px;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      margin-bottom: 30px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .stats-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.25);
    }
    
    .counter {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 15px;
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(to right, var(--primary), #4a89dc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .stats-box p {
      font-weight: 600;
      color: var(--dark-light);
      margin: 0;
      font-size: 1.1rem;
    }
    
    /* Badges */
    .badge-primary {
      background: var(--gradient-primary);
      color: white;
      font-weight: 600;
      padding: 8px 15px;
      border-radius: 50px;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Section Padding */
    .section-padding {
      padding: 100px 0;
    }
    
    .bg-light {
      background-color: #f8fafc !important;
    }
    
    /* Animation Classes */
    .fade-in {
      opacity: 0;
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      transform: translateY(30px);
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* SOMBRAS ACENTUADAS */
    .card, .feature-box, .stats-box {
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease-in-out;
    }
    .card:hover, .feature-box:hover, .stats-box:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
      transform: translateY(-5px);
    }
    .hero-content {
      box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    }
    
    /* MEJORAS ESPECÍFICAS PARA LA SECCIÓN DE PLANES */
    #planes {
      position: relative;
      z-index: 1;
    }
    
    #planes .section-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }
    
    #planes .section-subtitle {
      font-size: 1.3rem;
      margin-bottom: 50px;
    }
    
    #planes .card {
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 30px;
      transition: all 0.4s ease;
    }
    
    #planes .card-header {
      padding: 30px;
      text-align: center;
    }
    
    #planes .card-header h3 {
      font-size: 1.8rem;
      margin: 0;
    }
    
    #planes .card-body {
      padding: 40px;
    }
    
    #planes .card-body ul {
      margin-bottom: 30px;
    }
    
    #planes .card-body li {
      margin-bottom: 15px;
      font-size: 1.1rem;
      display: flex;
      align-items: flex-start;
    }
    
    #planes .benefit-icon {
      font-size: 1.5rem;
      margin-right: 15px;
      margin-top: 3px;
    }
    
    #planes .btn-wsp {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
      display: block;
      font-size: 1.1rem;
      padding: 15px 30px;
    }
    
    /* Ticker de imágenes */
    .ticker-wrapper {
      overflow: hidden;
      width: 100%;
      background: #f8f9fa;
      padding: 60px 0;
      display: flex;
      justify-content: center;
    }

    .ticker-track {
      display: flex;
      animation: ticker-scroll 30s linear infinite;
      align-items: center;
      width: max-content;
    }

    .ticker-track img {
      max-width: 90vw;
      max-height: 400px;
      height: auto;
      width: auto;
      object-fit: contain;
      margin: 0 30px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transition: transform 0.3s;
    }

    .ticker-track img:hover {
      transform: scale(1.05);
    }

    @keyframes ticker-scroll {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Responsive Adjustments */
    @media (max-width: 1199px) {
      .hero h1 {
        font-size: 3.2rem;
      }
      
      .section-title {
        font-size: 2.4rem;
      }
      
      #planes .section-title {
        font-size: 3rem;
      }
    }
    
    @media (max-width: 991px) {
      .hero {
        padding: 140px 0;
      }
      
      .hero h1 {
        font-size: 2.8rem;
      }
      
      .hero p {
        font-size: 1.2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      #planes .section-title {
        font-size: 2.5rem;
      }
      
      .section-padding {
        padding: 80px 0;
      }
      
      #planes .card-header h3 {
        font-size: 1.6rem;
      }
      
      #planes .card-body {
        padding: 30px;
      }
      
      #planes .card-body li {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 767px) {
      .hero {
        padding: 120px 0;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      #planes .section-title {
        font-size: 2.2rem;
      }
      
      .btn {
        padding: 12px 25px;
      }
      
      .stats-box, .feature-box {
        padding: 30px 20px;
      }
      
      .counter {
        font-size: 2.8rem;
      }
      
      #planes .card-header {
        padding: 25px;
      }
      
      #planes .card-body {
        padding: 25px;
      }
      
      #planes .card-header h3 {
        font-size: 1.5rem;
      }
      
      .ticker-track img {
        max-height: 480px;
        margin: 0 15px;
      }

      .ticker-wrapper {
        padding: 40px 0;
      }
    }
    
    @media (max-width: 575px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
      
      #planes .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
      }
      
      #planes .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
      }
      
      .navbar-brand {
        font-size: 1.3rem;
      }
      
      #planes .card-header h3 {
        font-size: 1.4rem;
      }
      
      #planes .card-body li {
        font-size: 0.95rem;
      }
      
      #planes .benefit-icon {
        font-size: 1.3rem;
      }
      
      .floating-whatsapp{
        right:12px;
        bottom:20px;
      }
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }

      
Manifest preview
{
    "template": "colmenaquilmes.com.ar/index.html",
    "template_mtime": 1760621798,
    "template_mtime_human": "2025-10-16T13:36:38+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap",
        "https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap",
        "https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 1,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}