MIX · extractor de estilos
Template: tallerecoart.com.ar/index.html · mtime: 2025-07-31 15:30
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 4 Embebidos: 0 Externos: 4 Inline styles: 6 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: tallerecoart.com.ar/index.html */
/* Template mtime: 2025-07-31 15:30:58 */

/* 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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary-color: #3a7d44;
      --secondary-color: #2d3a3a;
      --accent-color: #d4a762;
      --light-color: #f8f9fa;
      --dark-color: #212529;
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark-color);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    
    /* Navbar */
    .navbar {
      background-color: rgba(255, 255, 255, 0.95) !important;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      transition: var(--transition);
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary-color) !important;
    }
    
    .navbar-nav .nav-link {
      color: var(--secondary-color) !important;
      font-weight: 500;
      padding: 8px 15px;
      margin: 0 5px;
      position: relative;
      transition: var(--transition);
    }
    
    .navbar-nav .nav-link:before {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent-color);
      transition: var(--transition);
    }
    
    .navbar-nav .nav-link:hover:before {
      width: 100%;
    }
    
    .navbar-nav .nav-link:hover {
      color: var(--primary-color) !important;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/logoecc.png') no-repeat center center/cover;
      min-height: 90vh;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
      padding: 120px 0 80px;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
      animation: fadeInDown 1s ease;
    }
    
    .hero p.lead {
      font-size: 1.5rem;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease 0.3s both;
    }
    
    .hero .highlight-text {
      display: inline-block;
      font-style: italic;
      font-weight: 500;
      padding: 15px 25px;
      background-color: rgba(212, 167, 98, 0.2);
      border-left: 3px solid var(--accent-color);
      margin: 20px 0;
      animation: fadeIn 1s ease 0.6s both;
    }
    
    .hero .contact-info {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
      animation: fadeIn 1s ease 0.9s both;
    }
    
    .hero .btn {
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: var(--transition);
      animation: fadeInUp 1s ease 1.2s both;
    }
    
    .hero .btn-outline-light {
      border: 2px solid white;
      color: white;
    }
    
    .hero .btn-outline-light:hover {
      background-color: white;
      color: var(--primary-color);
    }
    
    .hero .btn-success {
      background-color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }
    
    .hero .btn-success:hover {
      background-color: transparent;
      color: white;
    }
    
    /* Section Styles */
    .section {
      padding: 100px 0;
      position: relative;
    }
    
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 60px;
      color: var(--secondary-color);
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background-color: var(--accent-color);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .section-light {
      background-color: var(--light-color);
    }
    
    .section-dark {
      background-color: var(--secondary-color);
      color: white;
    }
    
    /* About Section */
    .about-img {
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }
    
    .about-img:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    /* Services Section */
    .service-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      height: 100%;
      border-top: 3px solid var(--primary-color);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    
    .service-card h3 {
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    
    .service-card ul {
      padding-left: 20px;
    }
    
    .service-card ul li {
      margin-bottom: 8px;
      position: relative;
    }
    
    .service-card ul li:before {
      content: '✓';
      color: var(--accent-color);
      font-weight: bold;
      position: absolute;
      left: -20px;
    }
    
    /* Why Choose Us */
    .feature-box {
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      margin-bottom: 30px;
      height: 100%;
    }
    
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      background-color: rgba(58, 125, 68, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: var(--primary-color);
    }
    
    /* Portfolio Section */
    .portfolio-section {
      background-color: #f5f5f5;
    }
    
    .portfolio-filter {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
      gap: 10px;
    }
    
    .filter-btn {
      padding: 8px 20px;
      background: transparent;
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      border-radius: 50px;
      transition: var(--transition);
      font-weight: 500;
    }
    
    .filter-btn:hover, .filter-btn.active {
      background: var(--primary-color);
      color: white;
    }
    
    .portfolio-item {
      position: relative;
      margin-bottom: 30px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }
    
    .portfolio-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .portfolio-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(58, 125, 68, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: var(--transition);
    }
    
    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }
    
    .portfolio-overlay h3 {
      color: white;
      margin-bottom: 10px;
      transform: translateY(20px);
      transition: var(--transition);
    }
    
    .portfolio-overlay p {
      color: rgba(255, 255, 255, 0.8);
      transform: translateY(20px);
      transition: var(--transition);
    }
    
    .portfolio-item:hover .portfolio-overlay h3,
    .portfolio-item:hover .portfolio-overlay p {
      transform: translateY(0);
    }
    
    /* Testimonials */
    .testimonial-card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      position: relative;
    }
    
    .testimonial-card:before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(58, 125, 68, 0.1);
      font-family: Georgia, serif;
      line-height: 1;
    }
    
    .testimonial-content {
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
      font-style: italic;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }
    
    .author-info h5 {
      margin-bottom: 0;
      color: var(--secondary-color);
    }
    
    .author-info p {
      margin-bottom: 0;
      color: #6c757d;
      font-size: 0.9rem;
    }
    
    /* FAQ Section */
    .accordion-item {
      margin-bottom: 15px;
      border-radius: 10px !important;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: none !important;
    }
    
    .accordion-button {
      font-weight: 600;
      padding: 20px;
      background-color: white !important;
      box-shadow: none !important;
    }
    
    .accordion-button:not(.collapsed) {
      color: var(--primary-color);
      background-color: rgba(58, 125, 68, 0.1) !important;
    }
    
    .accordion-button:after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233a7d44'%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: 20px;
    }
    
    /* Contact Section */
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .form-control {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      margin-bottom: 20px;
      transition: var(--transition);
    }
    
    .form-control:focus {
      box-shadow: none;
      border-color: var(--primary-color);
    }
    
    .contact-info-box {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      transition: var(--transition);
      height: 100%;
    }
    
    .contact-info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .contact-icon {
      width: 60px;
      height: 60px;
      background-color: rgba(58, 125, 68, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    
    /* Footer */
    .footer {
      background-color: var(--secondary-color);
      color: white;
      padding: 80px 0 30px;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
      display: inline-block;
    }
    
    .footer-about p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      background-color: var(--secondary-color);

    }
    
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: var(--transition);
    }
    
    .social-link:hover {
      background-color: var(--accent-color);
      color: white;
      transform: translateY(-5px);
    }
    
    .footer-links h3 {
      color: white;
      margin-bottom: 25px;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-links h3:after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background-color: var(--accent-color);
      bottom: 0;
      left: 0;
    }
    
    .footer-links ul {
      list-style: none;
      padding-left: 0;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      transition: var(--transition);
      text-decoration: none;
    }
    
    .footer-links a:hover {
      color: var(--accent-color);
      padding-left: 5px;
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 50px;
    }
    
    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 0;
    }
    
    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background-color: var(--secondary-color);
      transform: translateY(-5px);
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes fadeInUp {
      from { 
        opacity: 0;
        transform: translateY(20px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInDown {
      from { 
        opacity: 0;
        transform: translateY(-20px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Responsive Styles */
    @media (max-width: 991.98px) {
      .hero h1 {
        font-size: 3rem;
      }
      
      .hero p.lead {
        font-size: 1.2rem;
      }
      
      .section {
        padding: 70px 0;
      }
    }
    
    @media (max-width: 767.98px) {
      .hero {
        min-height: auto;
        padding: 100px 0 60px;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-title {
        margin-bottom: 40px;
      }
      
      .contact-form {
        padding: 30px 20px;
      }
    }
    
    @media (max-width: 575.98px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p.lead {
        font-size: 1rem;
      }
      
      .hero .contact-info {
        flex-direction: column;
        gap: 10px;
      }
      
      .section {
        padding: 50px 0;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.img-hover-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
    margin: auto;
  }

  .img-hover-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  .img-hover-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  }

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

/* ===== INLINE <style> BLOCK #3 ===== */
.ticker-container {
            perspective: 1000px;
            width: 100%;
            max-width: 300px;
            height: 300px;
            position: relative;
            margin: auto;
          }

          .ticker {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: girar 20s infinite linear;
          }

          .ticker-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
          }

          .ticker-face img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }

          .ticker-text {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            text-align: center;
            padding: 10px 0;
            font-size: 16px;
          }

          .face-1 { transform: rotateY(0deg) translateZ(150px); }
          .face-2 { transform: rotateY(90deg) translateZ(150px); }
          .face-3 { transform: rotateY(180deg) translateZ(150px); }
          .face-4 { transform: rotateY(270deg) translateZ(150px); }

          @keyframes girar {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
          }

          /* ✅ RESPONSIVO */
          @media (max-width: 768px) {
            .ticker-container {
              max-width: 240px;
              height: 240px;
            }
            .face-1, .face-2, .face-3, .face-4 {
              transform: rotateY(var(--rot)) translateZ(120px);
            }
          }

          @media (max-width: 480px) {
            .ticker-container {
              max-width: 180px;
              height: 180px;
            }
            .face-1 { transform: rotateY(0deg) translateZ(90px); }
            .face-2 { transform: rotateY(90deg) translateZ(90px); }
            .face-3 { transform: rotateY(180deg) translateZ(90px); }
            .face-4 { transform: rotateY(270deg) translateZ(90px); }
            .ticker-text {
              font-size: 12px;
              padding: 6px 0;
            }
          }

/* ===== INLINE <style> BLOCK #4 ===== */
:root {
--img-ticker-size: 500px;
}
.ticker-img {
max-height: var(--img-ticker-size);
width: auto;
object-fit: contain;
}
.carousel-control-prev,
.carousel-control-next {
filter: invert(1); /* para que los íconos se vean si el fondo es claro */
}

/* ===== INLINE <style> BLOCK #5 ===== */
:root {
      --img-ticker-size: 500px;
    }
    .ticker-img {
      max-height: var(--img-ticker-size);
      width: auto;
      object-fit: contain;
    }

    footer {
      background: #222;
      color: #fff;
      padding: 40px 0;
    }
    .footer a {
      color: #ccc;
      text-decoration: none;
    }

/* ===== INLINE <style> BLOCK #6 ===== */
/* Contenedor de botones flotantes */
.social-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  align-items: flex-end;
}

/* Estilos base para todos los botones sociales */
.social-float {
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.social-float:hover {
  transform: translateY(-5px) rotate(5deg) scale(1.1);
}

.social-button {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  color: white;
  text-decoration: none;
}

.social-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.social-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s infinite;
}

.social-pulse-delayed {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s infinite 0.5s;
}

.social-tooltip {
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.social-tooltip small {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: normal;
  margin-top: 3px;
}

.tooltip-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid white;
}

.social-float:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

/* Estilos específicos para cada botón */
.whatsapp-button {
  background: #25D366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background: #128C7E;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-pulse {
  background: rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse-delayed {
  background: rgba(37, 211, 102, 0.4);
}

.instagram-button {
  background: #E1306C;
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.instagram-button:hover {
  background: #C13584;
  box-shadow: 0 15px 30px rgba(193, 53, 132, 0.4);
}

.instagram-pulse {
  background: rgba(225, 48, 108, 0.6);
}

.instagram-pulse-delayed {
  background: rgba(193, 53, 132, 0.4);
}

.facebook-button {
  background: #1877F2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.facebook-button:hover {
  background: #166FE5;
  box-shadow: 0 15px 30px rgba(22, 111, 229, 0.4);
}

.facebook-pulse {
  background: rgba(24, 119, 242, 0.6);
}

.facebook-pulse-delayed {
  background: rgba(22, 111, 229, 0.4);
}

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

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Efecto de latido al cargar */
@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Animación inicial para los botones */
.social-button {
  animation: heartbeat 1.5s ease 2s 2, float 3s ease-in-out infinite 3s;
}

/* Mostrar botones con un pequeño retraso entre ellos */
.instagram-float { animation: fadeInUp 0.5s ease 0.2s both; }
.facebook-float { animation: fadeInUp 0.5s ease 0.4s both; }
.whatsapp-float { animation: fadeInUp 0.5s ease 0.6s both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .social-float-container {
    bottom: 20px;
    right: 20px;
  }
  
  .social-button {
    width: 60px;
    height: 60px;
  }
  
  .social-icon {
    font-size: 25px;
  }
  
  .social-tooltip {
    display: none;
  }
}

      
Manifest preview
{
    "template": "tallerecoart.com.ar/index.html",
    "template_mtime": 1753975858,
    "template_mtime_human": "2025-07-31T15:30:58+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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display: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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 6,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}