/* MIXED CSS PACK */
/* Template: prueba/index.html */
/* Template mtime: 2025-09-15 19:27:03 */

/* 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/animate.css/4.1.1/animate.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* Glass Card Effect */
    .glass-card {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .glass-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    /* Hero */
    .hero {
      background: url("imagenes/prueba.JPG") top center no-repeat;
      background-size: cover;
      height: 100vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      padding: 0 1rem 60px;
      position: relative;
    }

    /* Navbar */
    .navbar {
      background: linear-gradient(90deg, #222c4a, #2e395f);
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    }
    .navbar-brand,
    .nav-link,
    .dropdown-item {
      color: #e0e6ff !important;
      font-weight: 600;
    }
    .nav-link:hover,
    .dropdown-item:hover {
      color: #8ab4f8 !important;
    }
    .dropdown-menu {
      background: #2e395f;
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      border-radius: 0.5rem;
    }
    .dropdown-menu.show {
      animation: fadeInDropdown 0.3s ease forwards;
    }
    @keyframes fadeInDropdown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Img Hover */
    .img-hover-container {
      position: relative;
      display: inline-block;
      max-width: 100%;
    }
    .img-hover-container .hover-img {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      width: 100%;
      height: 100%;
      border-radius: 1rem;
      object-fit: cover;
    }
    .img-hover-container:hover .hover-img {
      opacity: 1;
    }
    .img-hover-container:hover .main-img {
      opacity: 0;
    }

    /* Expanded sections */
    .expanded-section {
      display: none;
      background: #f9fbff;
      padding: 3rem 1rem;
      border-radius: 1rem;
      margin-top: 2rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    }
    .btn-back {
      margin-top: 2rem;
      background: #2e395f;
      color: #e0e6ff;
      border: none;
      padding: 0.5rem 1.5rem;
      border-radius: 25px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .btn-back:hover {
      background: #8ab4f8;
      color: #fff;
    }

    /* Slider trabajos */
    .slider-container {
      overflow: hidden;
      position: relative;
      max-width: 100%;
    }
    .slider-track {
      display: flex;
      animation: scroll 30s linear infinite;
    }
    .slider-item {
      flex: 0 0 auto;
      width: 300px;
      height: 200px;
      margin-right: 20px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      background: #fff;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .slider-item:hover {
      transform: scale(1.05);
      z-index: 10;
    }
    .slider-item img,
    .slider-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
      border-radius: 12px;
    }

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

    @media (max-width: 768px) {
      .slider-item {
        width: 250px;
        height: 160px;
      }
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
      text-align: center;
    }
    .modal-content {
      margin: auto;
      max-width: 90vw;
      max-height: 80vh;
      width: auto;
      height: auto;
      border-radius: 10px;
      object-fit: contain;
      background: #000;
    }
    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    /* Ticker */
    .ticker {
      background: #f8f9fa;
      overflow: hidden;
      white-space: nowrap;
      border-radius: 12px;
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
      margin: 2rem 0;
      padding: 0.5rem 0;
    }
    .ticker-track {
      display: inline-flex;
      animation: tickerScroll 10s linear infinite;
      gap: 2rem;
      align-items: center;
    }
    .ticker-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 200px;
      user-select: none;
    }
    .ticker-item img {
      width: 150px;
      height: 100px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.12);
      margin-bottom: 0.5rem;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .ticker-item img:hover {
      transform: scale(1.05);
    }
    .ticker-item p {
      font-size: 0.9rem;
      color: #555;
      margin: 0;
    }
    @keyframes tickerScroll {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    /* FAQs */
    .faq-item {
      border-bottom: 1px solid #ddd;
      margin-bottom: 10px;
    }
    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      padding: 15px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
      position: relative;
    }
    .faq-question::after {
      content: "+";
      position: absolute;
      right: 20px;
      transition: transform 0.3s;
    }
    .faq-question.active::after {
      content: "-";
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 15px;
      background: #f9f9f9;
    }
    .faq-answer p {
      margin: 15px 0;
    }
    .faq-question:hover {
      background: #f0f0f0;
    }

