/* MIXED CSS PACK */
/* Template: alambradosgonzalez.com.ar/index.html */
/* Template mtime: 2025-07-10 18:32:09 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary-color: #2e7d32;
      --primary-dark: #1b5e20;
      --primary-light: #81c784;
      --secondary-color: #ff9800;
      --dark-color: #263238;
      --light-color: #f5f5f5;
      --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #f57c00);
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
      overflow-x: hidden;
      color: var(--dark-color);
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    
    /* Navbar */
    .navbar {
      background-color: rgba(0, 0, 0, 0.9) !important;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      padding: 15px 0;
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: white !important;
    }
    
    .nav-link {
      color: rgba(255, 255, 255, 0.9) !important;
      font-weight: 500;
      margin: 0 10px;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover {
      color: var(--secondary-color) !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--secondary-color);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    /* Hero Section */
    .hero {
      background: url('img/hero.png') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 350px 20px;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      z-index: 1;
    }
    
    
        .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1250px;
      padding: 0 20px;
      margin-top: 380px;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      animation: fadeInDown 1s ease both;
    }
    
    .hero p {
      font-size: 1.4rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease 0.3s both;
    }
    
    .btn-main {
      padding: 12px 35px;
      font-weight: 600;
      border-radius: 50px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: none;
      z-index: 1;
      animation: fadeIn 1s ease 0.6s both;
    }
    
    .btn-main::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
      z-index: -1;
      transition: all 0.3s ease;
    }
    
    .btn-main:hover::before {
      transform: scale(1.05);
      opacity: 0.9;
    }
    
    .btn-light {
      background-color: white;
      color: var(--primary-dark);
    }
    
    .btn-light:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .btn-success {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
    }
    
    .btn-success:hover {
      background-color: #e68a00;
      border-color: #e68a00;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    /* Section Styles */
    .section {
      padding: 80px 0;
      position: relative;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      font-size: 2.5rem;
      color: var(--dark-color);
    }
    
    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--gradient-primary);
      margin: 15px auto;
      border-radius: 2px;
    }
    
    .section-subtitle {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.2rem;
      color: #555;
    }
    
    /* About Section */
    .about-section {
      background-color: white;
    }
    
    .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s ease;
    }
    
    .about-image:hover {
      transform: scale(1.02);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    /* Features Section */
    .features-section {
      background-color: var(--light-color);
    }
    
    .feature-box {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--gradient-primary);
      transition: height 0.3s ease;
    }
    
    .feature-box:hover::before {
      height: 100%;
    }
    
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    
    .feature-box:hover .feature-icon {
      color: var(--secondary-color);
      transform: scale(1.1);
    }
    
    .feature-title {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--dark-color);
    }
    
    /* Products Section */
    .products-section {
      background-color: white;
    }
    
    .product-card {
      border: none;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }
    
    .product-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }
    
    .product-card:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .product-img-container {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }
    
    .product-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-img {
      transform: scale(1.05);
    }
    
    .product-title {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: var(--dark-color);
      font-weight: 600;
    }
    
    .product-price {
      font-size: 1.1rem;
      color: var(--primary-dark);
      font-weight: 700;
      margin-bottom: 15px;
    }
    
    .btn-product {
      background: var(--gradient-primary);
      color: white;
      border: none;
      padding: 8px 25px;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .btn-product:hover {
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
    }
    
    .btn-product::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-secondary);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .btn-product:hover::before {
      opacity: 1;
    }
    
    .btn-enlarge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 2;
    }
    
    .product-img-container:hover .btn-enlarge {
      opacity: 1;
    }
    
    /* Gallery Section */
    .gallery-section {
      background-color: var(--light-color);
      overflow: hidden;
    }
    
    .gallery-title {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .gallery-container {
      position: relative;
      height: 500px;
      perspective: 1000px;
    }
    
    .gallery-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.8s ease, opacity 0.8s ease, z-index 0.1s ease;
      transform-style: preserve-3d;
      z-index: 1;
      opacity: 0;
    }
    
    .gallery-slide.active {
      opacity: 1;
      z-index: 2;
    }
    
    .gallery-slide.prev {
      transform: translateX(-80%) scale(0.8);
      opacity: 0.6;
    }
    
    .gallery-slide.next {
      transform: translateX(80%) scale(0.8);
      opacity: 0.6;
    }
    
    .gallery-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .gallery-controls {
      display: flex;
      justify-content: center;
      margin-top: 30px;
      gap: 15px;
    }
    
    .gallery-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient-primary);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-btn:hover {
      background: var(--gradient-secondary);
      transform: scale(1.1);
    }
    
    .gallery-dots {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      gap: 10px;
    }
    
    .gallery-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #ccc;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .gallery-dot.active {
      background: var(--gradient-primary);
      transform: scale(1.2);
    }
    
    /* FAQ Section */
    .faq-section {
      background-color: white;
    }
    
    .accordion-item {
      border: none;
      border-radius: 10px !important;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }
    
    .accordion-button {
      font-weight: 600;
      padding: 20px;
      background-color: white;
      color: var(--dark-color);
      box-shadow: none !important;
    }
    
    .accordion-button:not(.collapsed) {
      background-color: var(--primary-color);
      color: white;
    }
    
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e7d32'%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='%23ffffff'%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-section {
      background-color: var(--light-color);
    }
    
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-control {
      height: 50px;
      border-radius: 8px;
      border: 1px solid #ddd;
      padding-left: 20px;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
    }
    
    textarea.form-control {
      height: auto;
      padding-top: 15px;
    }
    
    .btn-submit {
      background: var(--gradient-primary);
      color: white;
      border: none;
      padding: 12px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
      background: var(--gradient-secondary);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .contact-info {
      background: var(--gradient-primary);
      color: white;
      padding: 40px;
      border-radius: 15px;
      height: 100%;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info h3 {
      margin-bottom: 30px;
      position: relative;
    }
    
    .contact-info h3::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: white;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      font-size: 1.5rem;
      margin-right: 15px;
      color: var(--secondary-color);
    }
    
    .contact-text h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }
    
    .contact-text p, .contact-text a {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 0;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .contact-text a:hover {
      color: var(--secondary-color);
    }
    
    /* Footer */
    footer {
      background: var(--dark-color);
      color: white;
      padding: 60px 0 20px;
      position: relative;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    
    .footer-column {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
      padding: 0 15px;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
    }
    
    .footer-about p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
    }
    
    .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: all 0.3s ease;
    }
    
    .social-link:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
    }
    
    .footer-title {
      font-size: 1.3rem;
      margin-bottom: 20px;
      position: relative;
    }
    
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--secondary-color);
    }
    
    .footer-links {
      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: all 0.3s ease;
      display: block;
    }
    
    .footer-links a:hover {
      color: var(--secondary-color);
      padding-left: 5px;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient-primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--gradient-secondary);
      transform: translateY(-5px);
    }
    
    /* Animations */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    .floating {
      animation: float 3s ease-in-out infinite;
    }
    
    .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.8rem;
      }
      
      .hero p {
        font-size: 1.2rem;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .about-content {
        flex-direction: column;
      }
      
      .about-image {
        margin-top: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .hero {
        padding: 120px 20px;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .product-img-container {
        height: 150px;
      }
    }
    
    @media (max-width: 576px) {
      .hero {
        padding: 100px 20px;
      }
      
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .btn-main {
        padding: 10px 25px;
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .footer-column {
        min-width: 100%;
      }
    }
    
    /* Modal Styles */
    .modal-content {
      border: none;
      border-radius: 15px;
      overflow: hidden;
    }
    
    .modal-header {
      background: var(--gradient-primary);
      color: white;
      border-bottom: none;
    }
    
    .btn-close {
      filter: invert(1);
      opacity: 0.8;
    }
    
    .modal-body {
      padding: 0;
    }
    
    .modal-body img {
      width: 100%;
      height: auto;
      display: block;
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.floating-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.floating-btn a.fb { background-color: #3b5998; }
.floating-btn a.ig { background-color: #e4405f; }
.floating-btn a.th { background-color: #000; font-size: 20px; }

