/* MIXED CSS PACK */
/* Template: ventadespasajesaparaguay.com/index.html */
/* Template mtime: 2025-07-07 15:42:44 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/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://unpkg.com/aos@2.3.1/dist/aos.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #003f8a;
      --primary-dark: #002d62;
      --secondary: #ff0033;
      --secondary-light: #ff4d6d;
      --white: #ffffff;
      --light: #f8f9fa;
      --gray-light: #e9ecef;
      --gray: #6c757d;
      --dark: #212529;
      --success: #25d366;
      --instagram: #E1306C;
      --facebook: #3b5998;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
      --shadow: 0 10px 30px rgba(0,0,0,0.1);
      --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body {
      .hero { max-width: 100%; }
  overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background-color: var(--light);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
    }

    /* Navbar */
    .navbar {
      background-color: var(--primary);
      box-shadow: var(--shadow);
      padding: 15px 0;
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(0, 63, 138, 0.98);
      backdrop-filter: blur(10px);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--white) !important;
      display: flex;
      align-items: center;
    }

    .navbar-brand img {
      height: 40px;
      margin-right: 10px;
    }

    .nav-link {
      color: var(--white) !important;
      font-weight: 500;
      margin: 0 8px;
      padding: 8px 16px !important;
      border-radius: 50px;
      transition: var(--transition);
    }

    .nav-link:hover, .nav-link:focus {
      color: var(--white) !important;
      background-color: var(--secondary);
    }

    .nav-link.active {
      background-color: var(--secondary);
    }

    
      
      

      .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;
      }


    .hero-title {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Botones */
    .btn {
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
      border: none;
    }

    .btn-primary {
      background-color: var(--primary);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      background-color: var(--secondary);
      color: var(--white);
    }

    .btn-secondary:hover {
      background-color: var(--secondary-light);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .btn-whatsapp {
      background-color: var(--success);
      color: var(--white);
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .btn-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: var(--white);
    }

    .btn-whatsapp i {
      margin-right: 8px;
      font-size: 1.2rem;
    }

    /* Secciones */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      position: relative;
      color: var(--primary);
      font-weight: 800;
      margin-bottom: 50px;
      text-align: center;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      margin: 15px auto 0;
      border-radius: 2px;
    }

    /* Tarjetas de servicios */
    .card-service {
      background: var(--white);
      border-radius: 15px;
      padding: 40px 30px;
      box-shadow: var(--shadow);
      margin-bottom: 30px;
      transition: var(--transition);
      height: 100%;
      border: none;
      text-align: center;
    }

    .card-service:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .card-service .icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: var(--secondary);
    }

    .card-service h3 {
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--primary);
    }

    /* Galería */
    .gallery {
      position: relative;
      padding: 0;
    }

    .gallery::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to bottom, var(--light), transparent);
      z-index: 2;
    }

    .gallery::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, var(--light), transparent);
      z-index: 2;
    }

    .ticker-track {
      min-width: 100%;

      display: flex;
      gap: 20px;
      padding: 20px 0;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      flex: 0 0 auto;
      max-width: 300px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }


    .ticker-item:hover {
      transform: scale(1.05);
    }

    .ticker-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Empresas */
    .companies {
      background-color: var(--white);
      padding: 60px 0;
    }

    .company-logo {
      height: 100px;
      opacity: 0.7;
      transition: var(--transition);
    }

    .company-logo:hover {
      filter: none;
      opacity: 1;
      transform: scale(1.1);
    }

    /* Contacto */
    .contact-form {
      background-color: var(--white);
      border-radius: 15px;
      padding: 40px;
      box-shadow: var(--shadow);
      max-width: 800px;
      margin: 0 auto;
    }

    .form-control {
      height: 50px;
      border-radius: 10px;
      border: 1px solid var(--gray-light);
      padding: 10px 20px;
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(0, 63, 138, 0.25);
    }

    textarea.form-control {
      height: auto;
      min-height: 150px;
    }

    /* Footer */
    .footer {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--white);
      padding: 60px 0 30px;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 15px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 20px;
      display: inline-block;
    }

    .footer-links h5 {
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-links h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--secondary);
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--white);
      padding-left: 5px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--white);
      margin-right: 10px;
      transition: var(--transition);
    }

    .social-links a:hover {
      background-color: var(--secondary);
      transform: translateY(-3px);
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 30px;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Botones flotantes */
    .floating-buttons {
      position: fixed;
      right: 30px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .floating-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .floating-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      transform: scale(0);
      border-radius: 50%;
      transition: var(--transition);
    }

    .floating-btn:hover::after {
      transform: scale(1);
    }

    .floating-btn:hover {
      transform: translateY(-5px);
    }

    .floating-btn.whatsapp {
      background-color: var(--success);
    }

    .floating-btn.facebook {
      background-color: var(--facebook);
    }

    .floating-btn.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .floating-btn i {
      font-size: 1.5rem;
    }

    /* Efectos y animaciones */
    [data-aos="fade-up"] {
      transform: translateY(30px);
      opacity: 0;
      transition-property: transform, opacity;
    }

    [data-aos="fade-up"].aos-animate {
      transform: translateY(0);
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.8rem;
      }
      
      .section {
        padding: 80px 0;
      }
    }

    @media (max-width: 768px) {
      
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .ticker-item {
        width: 250px;
        height: 250px;
      }
      
      .floating-buttons {
        right: 20px;
        bottom: 20px;
      }
      
      .floating-btn {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 576px) {
      .navbar-brand {
        font-size: 1.2rem;
      }
      
      
      
      .hero-title {
        font-size: 1.8rem;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .ticker-item {
        width: 200px;
        height: 200px;
      }
      
      .contact-form {
        padding: 30px 20px;
      }
    }
  
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/h3.png') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero h1, .hero p {
  max-width: 90vw;
  word-break: break-word;
}

/* Ajustes responsivos para que no se vea gigante en celus */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}

.hero h1, .hero p {
  max-width: 95vw;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem !important;
  }

  .hero p {
    font-size: 1rem !important;
  }

  .ticker-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ticker-item {
    flex: 0 0 auto;
    min-width: 200px;
  }
}

body {
  overflow-x: hidden;
}

