   :root {
    /* Define CSS variables for both themes */
    --primary: #6d28d9;
    --primary-dark: #5b21b6;
    --secondary: #10b981;
    --transition-speed: 0.3s;
   }

    /* Dark theme (default) */
   [data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --card-bg: #1e1e1e;
    --border-color: #4b5563;
  }

    /* Light theme */
   [data-theme="light"] {
    --bg-primary: #f9fafb;
    --bg-secondary: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #0a0b0b;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
   }

   body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
   }

   .bg-dark-800 {
    background-color: var(--bg-secondary);
    transition: background-color var(--transition-speed) ease;
   }

   .bg-dark-900 {
    background-color: var(--bg-primary);
    transition: background-color var(--transition-speed) ease;
   }

    /* Additional Mobile Responsive CSS */
   @media (max-width: 480px) {
    .full-screen-slider {
      height: 80vh;
    }
    h1.text-4xl {
      font-size: 2rem;
    }
    .text-xl {
      font-size: 1rem;
    }
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    section {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .modal-content {
      width: 95%;
      padding: 1rem;
    }
   }

   /* Theme toggle appearance */
   #themeToggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
   }

   .full-screen-slider {
    height: 100vh;
   }
  
   .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
   }
  
   .swiper-pagination-bullet-active {
    background: var(--primary);
   }
  
   .swiper-button-next,
   .swiper-button-prev {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
   }
  
   .swiper-button-next::after,
   .swiper-button-prev::after {
    font-size: 24px;
   }
  
   .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
  
   .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
   }
  
   .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted var(--primary);
    cursor: pointer;
   }
  
   .tooltip .tooltiptext {
    visibility: hidden;
    width: 240px;
    background-color: #2d3748;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   }
  
   .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
   }
  
   .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--text-primary);
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
   }
  
   .whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
   }
  
   .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
   }
  
   .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
   }
  
   .nav-link:hover::after,
   .nav-link.active::after {
    width: 80%;
    left: 10%;
   }
  
   .expandable-card {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.5s ease;
   }
  
   .expandable-card.expanded {
    max-height: 800px;
   }
  
   .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
   }
  
   .modal-content {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: background-color var(--transition-speed) ease;
   }
  
   .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
   }
  
   .close-modal:hover {
    color: #f9fafb;
   }
  
   .form-input {
    background-color: #2d3748;
     border: 1px solid #4b5563;
  }
  
   .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.25);
   }
  
   #testimonialSlider .swiper-slide {
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.3s ease;
   }
  
   #testimonialSlider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }

  /* CSS Adicional */
  /* CONTENEDOR */
.translate-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BOTÓN DEL TRADUCTOR */
.goog-te-gadget-simple {
  width: 170px !important;        /* ancho como la imagen */
  min-width: 170px !important;
  height: 34px !important;

  background-color: #ffffff !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 2px !important;

  display: flex !important;
  align-items: center !important;

  padding: 0 8px !important;
  font-family: Arial, sans-serif !important;
  font-size: 13px !important;
  color: #000 !important;
  cursor: pointer;
  box-sizing: border-box !important;
}

/* TEXTO VISIBLE */
.goog-te-gadget-simple span {
  display: inline !important;
  font-size: 13px !important;
  color: #000 !important;
  white-space: nowrap;
}

/* ICONO GOOGLE */
.goog-te-gadget-simple img {
  width: 14px !important;
  height: 14px !important;
  margin-right: 6px;
}

/* FLECHA */
.goog-te-gadget-simple a {
  display: flex !important;
  align-items: center !important;
}

/* LOGO GOOGLE (se mantiene el texto, solo se quita enlace extra) */
.goog-logo-link {
  display: none !important;
}



    
    