   :root {
      --primary-blue: #001f5b;
      --secondary-orange: #f76b1c;
      --accent-green: #00c9a7;
      --neon-effect: 0 0 10px rgba(247, 107, 28, 0.8);
      --text-light: #f8f9fa;
      --text-dark: #212529;
    }
    /* SCROLL PERSONALIZADO - COLORES CORPORATIVOS */
::-webkit-scrollbar {
  width: 10px; /* Ancho del scroll vertical */
  height: 10px; /* Alto del scroll horizontal */
}

::-webkit-scrollbar-track {
  background: rgba(0, 31, 91, 0.1); /* Fondo del track con transparencia */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%); 
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-orange); /* Color al hacer hover */
}

/* Scroll más fino para navegadores que soportan scrollbar-width */
@supports (scrollbar-width: thin) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) rgba(0, 31, 91, 0.1);
  }
}

/* Suavizado adicional del scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Ajuste para el header fijo */
}

/* Efecto de inercia en navegadores modernos */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
    /* LOADER FUTURISTA */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-blue);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .loader-circle {
      width: 80px;
      height: 80px;
      border: 5px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      border-top-color: var(--secondary-orange);
      animation: spin 1s linear infinite;
      position: relative;
    }
    .loader-circle::after {
      content: '';
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 5px solid transparent;
      border-radius: 50%;
      border-top-color: var(--accent-green);
      animation: spin 2s linear infinite;
    }
    @keyframes spin {
      100% { transform: rotate(360deg); }
    }
    
    /* EFECTO 3D EN CARDS */
    .card {
      transform-style: preserve-3d;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .card:hover {
      transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    }
    
    /* BOTÓN "RESPIRANTE" */
    .cta-button {
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    /* MENÚ MOBILE CON MORPH */
    .menu-toggle span {
      transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
    
    /* EFECTO NEON EN TÍTULOS */
    .hero h1 span {
      text-shadow: var(--neon-effect);
      animation: neonGlow 1.5s ease-in-out infinite alternate;
    }
    @keyframes neonGlow {
      from { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-orange); }
      to { text-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-orange), 0 0 30px var(--secondary-orange); }
    }
    
    /* GRADIENTE ANIMADO */
    .hero {
      animation: gradientBG 12s ease infinite;
      background: linear-gradient(-45deg, #001f5b, #00308a, #f76b1c, #e05e16);
      background-size: 400% 400%;
    }
    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    /* PARTICLE JS CONTAINER */
    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
    }
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--light-gray);
      color: var(--text-dark);
      line-height: 1.6;
    }
    
    /* Header moderno con efecto glassmorphism */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 31, 91, 0.9);
      backdrop-filter: blur(10px);
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    header.scrolled {
      padding: 0.5rem 2rem;
      background: rgba(0, 31, 91, 0.95);
    }
    
    .logo img {
      height: 50px;
      transition: all 0.3s ease;
    }
    
    header.scrolled .logo img {
      height: 40px;
    }
    
    nav {
      display: flex;
      gap: 2rem;
    }
    
    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0;
      transition: all 0.3s ease;
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary-orange);
      transition: width 0.3s ease;
    }
    
    nav a:hover {
      color: var(--secondary-orange);
    }
    
    nav a:hover::after {
      width: 100%;
    }
    
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1001;
    }
    
    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: white;
      margin: 4px 0;
      transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero section con animación de fondo */
    .hero {
      height: 100vh;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 5rem 2rem 2rem;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
      opacity: 0.2;
      z-index: 0;
      animation: zoomEffect 20s infinite alternate;
    }
    
    @keyframes zoomEffect {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(1.1);
      }
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }
    
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero h1 span {
      color: var(--secondary-orange);
      position: relative;
    }
    
    .hero h1 span::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--secondary-orange);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s ease;
    }
    
    .hero:hover h1 span::after {
      transform: scaleX(1);
      transform-origin: left;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .cta-button {
      display: inline-block;
      background: var(--secondary-orange);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(247, 107, 28, 0.4);
    }
    
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(247, 107, 28, 0.6);
      background: #e05e16;
    }
    
    /* Secciones modernas con cards */
    section {
      padding: 6rem 2rem;
      text-align: center;
      background: white;
    }
    
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
      color: var(--primary-blue);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--secondary-orange);
    }
    
    .section-alt {
      background: var(--light-gray);
    }
    
    .cards-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      width: 300px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
  
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--secondary-orange);
    }
    
    .card-icon {
      font-size: 2.5rem;
      color: var(--secondary-orange);
      margin-bottom: 1rem;
    }
    
    .card h3 {
      margin-bottom: 1rem;
      color: var(--primary-blue);
    }
    /*card22*/
      .cards2-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }
      .card2 {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      width: 60%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
     .card2:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .card2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--secondary-orange);
    }
    
    .card2-icon {
      font-size: 2.5rem;
      color: var(--secondary-orange);
      margin-bottom: 1rem;
    }
    
    .card2 h3 {
      margin-bottom: 1rem;
      color: var(--primary-blue);
    }
    
    
    /* Barra de contacto moderna */
    .contact-bar {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
      color: white;
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .contact-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }
    
    .contact-content {
      position: relative;
      z-index: 1;
    }
    
    .contact-bar h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
    
    .contact-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    
    .contact-link {
      display: inline-flex;
      align-items: center;
      color: white;
      text-decoration: none;
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }
    
    .contact-link i {
      margin-right: 0.5rem;
      font-size: 1.2rem;
    }
    
    .contact-link:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }
    
    /* Footer moderno */
    footer {
      background: var(--primary-blue);
      color: white;
      text-align: center;
      padding: 3rem 2rem 1.5rem;
      position: relative;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      text-align: left;
      margin-bottom: 2rem;
    }
    
    .footer-column h3 {
      color: var(--secondary-orange);
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
    }
    
    .footer-column p, .footer-column a {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0.8rem;
      display: block;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-column a:hover {
      color: white;
    }
    
    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
      background: var(--secondary-orange);
      transform: translateY(-3px);
    }
    
    .copyright {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }
    
    /* Animaciones y efectos */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    
    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--primary-blue);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      }
      
      nav.active {
        display: flex;
        right: 0;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
      }
    }
     /* SELECTOR DE IDIOMAS FLOTANTE */
    .language-switcher {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }
    
    .language-btn {
      background: rgba(0, 31, 91, 0.9);
      backdrop-filter: blur(10px);
      color: white;
      border: none;
      border-radius: 50px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      margin-bottom: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      overflow: hidden;
    }
    
    .language-btn img {
      width: 30px;
      height: 30px;
      object-fit: cover;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    
    .language-btn:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .language-btn.active {
      background: var(--secondary-orange);
      width: auto;
      padding: 0 20px;
    }
    
    .language-btn.active .language-name {
      display: inline-block;
      margin-left: 10px;
      font-weight: 600;
    }
    
    .language-name {
      display: none;
    }
    
    .language-options {
      display: none;
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transform-origin: bottom right;
      animation: scaleIn 0.3s ease-out forwards;
    }
    
    @keyframes scaleIn {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    
    .language-options.show {
      display: block;
    }
    
    .language-option {
      padding: 12px 20px;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .language-option:hover {
      background: #f5f5f5;
      transform: translateX(-5px);
    }
    
    .language-option img {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      margin-right: 10px;
    }
    
    /* EFECTO ONDA AL HACER CLIC */
    .ripple {
      position: relative;
      overflow: hidden;
    }
    
    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transform: scale(0);
      animation: ripple 0.6s linear;
      pointer-events: none;
    }
    
    @keyframes ripple {
      to {
        transform: scale(2.5);
        opacity: 0;
      }
    }
 
    /* SELECTOR DE IDIOMAS FLOTANTE MEJORADO */
    .language-switcher {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-family: 'Montserrat', sans-serif;
    }
    
    .language-btn {
      background: linear-gradient(135deg, rgba(0, 31, 91, 0.9) 0%, rgba(247, 107, 28, 0.9) 100%);
      backdrop-filter: blur(10px);
      color: white;
      border: none;
      border-radius: 50px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      margin-bottom: 10px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    
    .language-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-blue) 100%);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .language-btn:hover::before {
      opacity: 1;
    }
    
    .language-btn img {
      width: 26px;
      height: 26px;
      object-fit: cover;
      border-radius: 50%;
      transition: all 0.4s ease;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .language-btn:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 15px 35px rgba(247, 107, 28, 0.4);
    }
    
    .language-btn.active {
      width: auto;
      padding: 0 22px;
      animation: pulseGlow 2s infinite;
    }
    
    @keyframes pulseGlow {
      0% { box-shadow: 0 0 10px rgba(247, 107, 28, 0.4); }
      50% { box-shadow: 0 0 20px rgba(247, 107, 28, 0.7); }
      100% { box-shadow: 0 0 10px rgba(247, 107, 28, 0.4); }
    }
    
    .language-btn.active .language-name {
      display: inline-block;
      margin-left: 12px;
      font-weight: 600;
      font-size: 0.95rem;
    }
    
    .language-name {
      display: none;
    }
    
    .language-options {
      display: none;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      transform-origin: bottom right;
      animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    @keyframes scaleIn {
      from { transform: scale(0.5); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    
    .language-options.show {
      display: block;
    }
    
    .language-option {
      padding: 14px 25px;
      display: flex;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .language-option:last-child {
      border-bottom: none;
    }
    
    .language-option:hover {
      background: rgba(0, 31, 91, 0.05);
      transform: translateX(-8px);
    }
    
    .language-option.active {
      background: rgba(247, 107, 28, 0.1);
      position: relative;
    }
    
    .language-option.active::after {
      content: '';
      position: absolute;
      right: 15px;
      width: 8px;
      height: 8px;
      background: var(--secondary-orange);
      border-radius: 50%;
    }
    
    .language-option img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 15px;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .language-option span {
      font-weight: 500;
      color: var(--primary-blue);
      font-size: 0.95rem;
    }
    
    /* EFECTO ONDA MEJORADO */
    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
      transform: scale(0);
      animation: ripple 0.6s linear;
      pointer-events: none;
      mix-blend-mode: overlay;
    }
    
    @keyframes ripple {
      to {
        transform: scale(3);
        opacity: 0;
      }
    }
    
    /* RESPONSIVE */
    @media (max-width: 768px) {
      .language-switcher {
        bottom: 20px;
        right: 20px;
      }
      
      .language-btn {
        width: 46px;
        height: 46px;
      }
      
      .language-btn.active {
        padding: 0 18px;
      }
      
      .language-option {
        padding: 12px 20px;
      }
    } 
    .avc-iframe-container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente (opcional) */
    margin: 20px 0;         /* Espacio exterior */
}

.avc-iframe {
    border: 2px solid #4CAF50; /* Borde verde agrícola 🟢 */
    border-radius: 15px;       /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    width: 640px;              /* Ancho del iframe */
    height: 480px;             /* Alto del iframe */
}
  .avc-title {
            color: #2E7D32; /* Verde agrícola */
            font-size: 28px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .avc-subtitle {
            color: #4CAF50;
            font-size: 18px;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .avc-iframe-container {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        
        .avc-iframe {
            border: 3px solid #4CAF50;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            width: 640px;
            height: 480px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .avc-iframe:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
     /* Logo CENTRADO (posición absoluta respecto al contenedor padre) */
.loader-logo {
  position: absolute;
  z-index: 2;
  width: 70px;
  /* Eliminé top/left/transform del CSS porque ahora están inline */
}

.loader-logo img {
  width: 100%;
  height: auto;
  display: block; /* Elimina espacio fantasma debajo de la imagen */
  animation: pulse 1.5s ease-in-out infinite;
}

/* Círculo giratorio (tu código original - no tocar) */
.loader-circle {
  width: 120px;
  height: 120px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--secondary-orange);
  animation: spin 1s linear infinite;
}
.loader-circle::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid transparent;
  border-radius: 50%;
  border-top-color: var(--accent-green);
  animation: spin 2s linear infinite;
}

/* Animaciones (las tuyas originales) */
@keyframes spin {
  100% { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}
    /* Estilo para el menú desplegable */
.dropdown {
  position: relative;

  display: flex;
}

.dropdown-content {
  display: none;

  position: absolute;
  background-color: #001f5b;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color:white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn {
  cursor: pointer;
}