/* MIXED CSS PACK */
/* Template: teknopint.com.ar/index.html */
/* Template mtime: 2025-07-18 14:26:28 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.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&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --color-primary: #7b0cb5;
      --color-primary-light: #6a5acd;
      --color-secondary: #0056b3;
      --color-accent: #ff6b6b;
      --color-dark: #2c3e50;
      --color-light: #f8f9fa;
      --color-gray: #6c757d;
      --transition: all 0.3s ease;
      --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
      --border-radius: 12px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--color-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    /* Navbar */
    .navbar {
      padding: 15px 0;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      background-color: white !important;
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: var(--shadow-md);
    }

    .navbar-brand {
      font-weight: 700;
      color: var(--color-primary) !important;
      font-size: 1.8rem;
      display: flex;
      align-items: center;
    }

    .navbar-brand i {
      margin-right: 10px;
      font-size: 1.5rem;
    }

    .nav-link {
      font-weight: 500;
      color: var(--color-dark) !important;
      margin: 0 8px;
      position: relative;
      transition: var(--transition);
    }

    .nav-link:before {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--color-primary);
      transition: var(--transition);
    }

    .nav-link:hover:before {
      width: 100%;
    }

    .nav-link.active:before {
      width: 100%;
    }

    /* Hero Section */
    .hero {
  background:  url('img/hero.png') center/cover no-repeat;
  color: white;
  height: 500px;
  padding: 1060px 0 220px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    padding-top: 320px;
    padding-bottom: 280px;
    min-height: 800px;
  }
}

    .hero:after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      height: 100px;
      background: white;
      transform: skewY(0deg);
      z-index: 1;
    }

    .hero-content {
  position: relative;
  z-index: 2;
  margin-top: 120px;

      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.2rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 1000px;
      margin: 0 auto 30px;
    }

    .btn-hero {
      width: 50%;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: var(--transition);
      margin: 0 10px;
    }

    .btn-hero-primary {
      background-color: white;
      color: var(--color-primary);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      color: var(--color-primary);
    }

    .btn-hero-outline {
      border: 2px solid white;
      color: white;
    }

    .btn-hero-outline:hover {
      background-color: white;
      color: var(--color-primary);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Section General */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 60px;
      font-weight: 700;
    }

    .section-title:after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: var(--color-primary);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* About Section */
    .about-img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
    }

    .about-img:hover {
      transform: scale(1.02);
    }

    .about-content {
      padding-left: 30px;
    }

    /* Services Section */
    .services {
      background-color: var(--color-light);
    }

    .service-card {
      background: white;
      border-radius: var(--border-radius);
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .service-icon {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 20px;
    }

    /* Why Choose Us */
    .feature-card {
      background: white;
      border-radius: var(--border-radius);
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      align-items: flex-start;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .feature-icon {
      font-size: 1.5rem;
      color: var(--color-primary);
      margin-right: 15px;
      margin-top: 3px;
    }

    /* Portfolio */
    .portfolio {
      background-color: var(--color-light);
    }

    .portfolio-item {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      margin-bottom: 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .portfolio-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: var(--transition);
    }

    .portfolio-item:hover {
      box-shadow: var(--shadow-lg);
    }

    .portfolio-item:hover img {
      transform: scale(1.05);
    }

    .portfolio-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      color: white;
      opacity: 0;
      transition: var(--transition);
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    /* FAQ */
    .accordion-item {
      margin-bottom: 15px;
      border-radius: var(--border-radius) !important;
      overflow: hidden;
      border: none !important;
      box-shadow: var(--shadow-sm);
    }

    .accordion-button {
      font-weight: 600;
      padding: 20px !important;
      border-radius: var(--border-radius) !important;
    }

    .accordion-button:not(.collapsed) {
      background-color: var(--color-primary);
      color: white;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }

    /* Contact */
    .contact {
      background-color: var(--color-light);
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-sm);
    }

    .form-control {
      padding: 12px 15px;
      border-radius: 8px !important;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .form-control:focus {
      box-shadow: none;
      border-color: var(--color-primary);
    }

    .contact-info {
      margin-top: 40px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-right: 15px;
    }

    /* Footer */
    .footer {
      background-color: var(--color-dark);
      color: white;
      padding: 260px 0 220px;
    }

    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
    }

    .footer-links h5 {
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-links h5:after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background: var(--color-primary);
      bottom: 0;
      left: 0;
    }

    .footer-links ul {
      list-style: none;
      padding: 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: white;
      padding-left: 5px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      margin-right: 10px;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--color-primary);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 40px;
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      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 2px 15px rgba(0, 0, 0, 0.1);
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: var(--color-primary-light);
      transform: translateY(-3px);
    }

    /* Animations */
    .animate-in {
      animation: fadeInUp 0.8s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .delay-1 {
      animation-delay: 0.2s;
    }

    .delay-2 {
      animation-delay: 0.4s;
    }

    .delay-3 {
      animation-delay: 0.6s;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section {
        padding: 80px 0;
      }
    }

    @media (max-width: 768px) {
      .hero {
  background:  url('img/hero.png') center/cover no-repeat;
  color: white;
  padding: 260px 0 220px;
  position: relative;
  overflow: hidden;

        padding: 260px 0 220px;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .about-content {
        padding-left: 0;
        margin-top: 30px;
      }
    }

    
  .hero-content {
    margin-top: 140px;
  }

      .hero {
  background: url('img/hero.png') center/cover no-repeat;
  color: white;
  padding: 260px 0 220px;
  position: relative;
  overflow: hidden;

        padding: 260px 0 220px;
      }
      
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .btn-hero {
        display: block;
        width: 80%;
        margin: 10px auto !important;
      }
    }
  


  .hero-content {
    margin-top: 40px !important;
  }
  .btn-hero {
    display: inline-block;
    width: auto;
    padding: 10px 22px;
    font-size: 0.9rem;
    margin: 10px 5px;
  }
}



  .hero-content {
    margin-top: 80px !important;
  }
  .hero-content .btn-hero {
    margin-top: 40px !important;
    display: inline-block;
    width: auto;
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}



  .hero-content {
    margin-top: 180px !important;
  }
  .hero-content .btn-hero {
    margin-top: 20px !important;
    display: inline-block;
    width: auto;
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}


@media (max-width: 576px) {
  .hero-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    background-position: center;
    background-size: cover;
  }

  .hero:after {
    display: none !important;
  }

  .hero-content {
    padding-bottom: 40px !important;
    text-align: center;
  }

  .btn-hero {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 0.9rem;
    width: auto;
  }
}

/* ===== INLINE <style> BLOCK #2 ===== */
.ticker-wrapper {
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 5s linear infinite;
  gap: 2rem;
}
.ticker-track img {
  width: var(--imgSize);
  height: var(--imgSize);
  object-fit: cover;
  border-radius: 10px;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track:hover {
  animation-play-state: paused;
}

/* ===== INLINE <style> BLOCK #3 ===== */
/* WhatsApp Float - El más hermoso del mundo */
  .whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    perspective: 1000px;
  }

  .whatsapp-float {
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
  }

  .whatsapp-float:hover {
    transform: translateY(-5px) rotate(5deg) scale(1.1);
  }

  .whatsapp-button {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
  }

  .whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    color: white;
  }

  .whatsapp-ico {
    width: 100%;
    height: 100%;
    fill: white;
  }

  .whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
  }

  .whatsapp-pulse-delayed {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite 0.5s;
  }

  .whatsapp-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;
  }

  .whatsapp-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;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
  }

  @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 */
  .whatsapp-button {
    animation: heartbeat 1.5s ease 2s 2, float 3s ease-in-out infinite 3s;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .whatsapp-float-container {
      bottom: 20px;
      right: 20px;
    }
    
    .whatsapp-button {
      width: 60px;
      height: 60px;
    }
    
    .whatsapp-tooltip {
      display: none;
    }
  }

