MIX · extractor de estilos
Template: bahiabarpool.com.ar/index.html · mtime: 2025-10-20 22:50
← 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: bahiabarpool.com.ar/index.html */
/* Template mtime: 2025-10-20 22:50:06 */

/* 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=Montserrat:wght@300;400;600&display=swap */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
.botones-flotantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-flotante {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-flotante.instagram {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.btn-flotante:hover {
  transform: scale(1.1);
}

    :root {
      --color-primary: #0c4b33;
      --color-secondary: #d4af37;
      --color-accent: #e63946;
      --color-dark: #121212;
      --color-light: #f8f9fa;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: #333;
      scroll-behavior: smooth;
      background: var(--color-light);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    .navbar {
      background-color: rgba(18, 18, 18, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
      transition: var(--transition);
      padding: 15px 0;
    }

    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(18, 18, 18, 0.98);
    }

    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
    }

    .navbar-brand span {
      color: var(--color-secondary);
    }

    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
      color: white !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--color-secondary);
      transition: var(--transition);
    }

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

    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('img/hero.png') center/cover no-repeat fixed;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    }

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

    .hero h1 {
      font-size: 4.5rem;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInDown 1s ease both;
    }

    .hero p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease both 0.3s;
    }

    .btn-gold {
      background-color: var(--color-secondary);
      color: var(--color-dark);
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 50px;
      border: none;
      transition: var(--transition);
      animation: fadeIn 1s ease both 0.6s;
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    }

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

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 2.8rem;
      position: relative;
      display: inline-block;
    }

    .divider {
      width: 80px;
      height: 4px;
      background: var(--color-secondary);
      margin: 20px auto;
      border-radius: 2px;
    }

    .bg-dark-transparent {
      background: rgba(18, 18, 18, 0.8);
      color: white;
      padding: 50px;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .feature-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      height: 100%;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--color-secondary);
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }

    .gallery-item img {
      transition: var(--transition);
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .ticker-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
      padding: 2rem 0;
    }

    .ticker-track {
      display: flex;
      gap: 1.5rem;
      animation: tickerScroll 40s linear infinite;
      width: max-content;
    }

    .ticker-track img {
      width: 400px;
      height: 600px;
      object-fit: cover;
      border-radius: 12px;
      border: 3px solid white;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      transition: var(--transition);
    }

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

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

    }

    .contact-form .form-control {
      padding: 15px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }

    .contact-form .form-control:focus {
      border-color: var(--color-secondary);
      box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    }

    footer {
      background: var(--color-dark);
      color: #ccc;
      padding: 80px 0 20px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    }

    .social-icons {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .social-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 10px;
      color: white;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .social-icon:hover {
      background: var(--color-secondary);
      color: var(--color-dark);
      transform: translateY(-5px);
    }

    iframe {
      border: 0;
      width: 100%;
      height: 400px;
      margin-top: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      filter: grayscale(20%) contrast(1.1);
    }

    /* Animaciones personalizadas */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3.5rem;
      }
      
      .section {
        padding: 70px 0;
      }
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2.8rem; }
      .hero p { font-size: 1.2rem; }
      .section-title h2 { font-size: 2.2rem; }
      /* ticker imgs: higher but not giant */
      .ticker-track img {
        height: 280px;
        width: auto;
        max-width: 85vw;
        object-fit: contain;
      }
      iframe { height: 300px; }
    }
      
      iframe {
        height: 300px;
      }
    }

    @media (max-width: 576px) {
            .ticker-track img { height: 240px; width: auto; max-width: 90vw; object-fit: contain; }
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .section {
        padding: 50px 0;
      }
      
      .bg-dark-transparent {
        padding: 30px 20px;
      }
    }

      
Manifest preview
{
    "template": "bahiabarpool.com.ar/index.html",
    "template_mtime": 1761000606,
    "template_mtime_human": "2025-10-20T22:50:06+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=Montserrat:wght@300;400;600&display=swap",
        "https://unpkg.com/[email protected]/dist/aos.css",
        "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=Montserrat:wght@300;400;600&display=swap",
        "https://unpkg.com/[email protected]/dist/aos.css",
        "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": []
}