/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #0d0d0d; 
  color: #f0f0f0;
  overflow-x: hidden;
}

/* Canvas de partículas */
canvas#trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Navbar */
nav {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;  
  z-index: 999; 
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  padding: 0.5rem 2rem; 
  background-color: #111;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
}

.nav-links li a.stilo {
  color: #00ff99;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateX(0) scale(1);
}

.nav-links li a.stilo:hover {
  color: #0ff;
  transform: translateX(3px) scale(1.2);
}

nav ul li a {
  color: inherit;          
  text-decoration: none;    
}

nav ul li a:visited {
  color: inherit;           
}

.acompanamiento-a a:hover{
 
  color: #0ff;     /* Cambialo por el color que usás al pasar el mouse */
}

.logoprincipal{
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.logoprincipal:hover {
  background-color: #00aa55;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem; 
}

.principal {
  font-size: 3rem;
  font-weight: 900;
  color: #00ff99;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #00ff99, #00cc55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* sombras para profundidad */
  text-shadow:
    1px 1px 2px rgba(0,0,0,0.7),
    2px 2px 5px rgba(0,255,153,0.7),
    4px 4px 10px rgba(0,255,153,0.4);

  /* brillo animado */
  animation: shine 3s infinite linear;
}

/* Animación para el brillo que se mueve */
@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.switch {
  margin-left: 1rem; 
}

.menu-toggle {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  display: none; 
}

.nav-links {
  display: flex;
  list-style: none;  
  gap: 1.5rem;       
  align-items: center; 
  margin: 0;
  padding: 0;
}

/* Interruptor base */
.switch {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ff99;
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 5px 0 #4caf50;
  text-align: center;
  user-select: none;
}

/* Efecto  */
.switch:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #999;
}

#dark-mode-toggle:checked + .switch {
  background-color: #4caf50;
  color: white;
  box-shadow: 0 5px 0 #2e7d32;
}

#dark-mode-toggle:checked + .switch:active {
  box-shadow: 0 1px 0 #2e7d32;
  transform: translateY(4px);
}

/* Ocultamos  input  */
#dark-mode-toggle {
  display: none;
}


/* Seccion */
.section {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 1rem 2rem;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 15px;
  margin-top: 140px;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
}

.info-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column {
  flex: 1 1 450px;
  color: #ddd;
}

.separa{
  margin-bottom: 0.74rem;  
}

.titulo2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #00ff99;
}

.titulo3 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #00ff99;
}

.abajo {
  margin-bottom: 0.8rem;
}

.divider {
  width: 2px;
  background: #00ff99;
  border-radius: 10px;
  margin: 0 1rem;
}

/* Main Clases - Tabs */
main {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 0 rem;
  box-shadow: 0 0 25px  rgba(0, 255, 100, 0.2);
  border-radius: 20px;
}

.precio-1 {
  text-align: center;
  font-size: 2rem;
  color: #00ff99;
  margin-bottom: 1.5rem;
}

.info-section {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  padding: 2rem;
}

.info-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  cursor: pointer;
  padding: 0.7rem 1.8rem;
  background: #333;
  border-radius: 12px;
  color: #eee;
  font-weight: 600;
  transition: background-color 0.3s;
  user-select: none;
}

.tab.active,
.tab:hover {
  background-color: #00ff99;
  color: white;
}

.info-content {
  display: flex;
  justify-content: center;
}

.content-box {
  display: none;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.content-box.active {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.text-and-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
}

.info-text {
  flex: 1 1 350px;
  color: #ddd;
}

.info-text h2 {
  color:#00ff99;
  margin-bottom: 1rem;
}

.info-text p {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.3;
}

.info-image-container {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
   max-width: 150px; /* Reduce tamaño máximo */
  flex-shrink: 0;
}

.info-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.7);
  height: auto;
}

.price-btn {
  margin-top: 1rem;
  background-color: #00ff99;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}

.price-btn:hover {
  background-color: #388e3c;
}

/* Contacto y servicios */
.section#contacto {
  max-width: 1200px;
  margin: 3rem auto;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
}

.contacto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 2rem;
}

.servicios-container,
form#contact-form {
  flex: 1 1 400px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  color: #eee;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.servicios-container{
  height: 573px;
}

.titulo-servicio {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00ff99;
}

.servicios-carrusel {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 350px; 
  position: relative;
  top: 20px;
}

.servicio-visible {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.servicio-item {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem;
  display: none;
  color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.servicio-item.activo {
  display: block;
}

.servicio-item h3 {
  color: #00ff99;
  margin-bottom: 0.5rem;
}

.servicio-item p {
  font-size: 0.95rem;
  line-height: 1.3;
}

.flecha {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; 
}

.flecha.arriba {
  top: 0;
  background-color: #00ff99;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
}

.flecha.abajo {
  bottom: 0;
   background-color: #00ff99;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
}

/* Formulario */
form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form#contact-form input,
form#contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  color: #eee;
  font-size: 1rem;
  resize: vertical;
  transition: background-color 0.3s;
}

form#contact-form input::placeholder,
form#contact-form textarea::placeholder {
  color: #ccc;
}

form#contact-form input:focus,
form#contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.25);
  outline: none;
}

.textodearea {
  min-height: 120px;
}

.btn-1 {
  background-color: #00ff99;;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-1:hover {
  background-color: #388e3c;
}

.contactenos {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ff99;
}

/* Footer */
footer {
  background-color: #111;
  padding: 2rem 1rem;
  text-align: center;
  color: #ccc;
  margin-top: 3rem;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer-text {
  flex-grow: 1;
  color: #1eec63;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0 1rem;
}

footer .social-icons,
footer .payment-icons {
  display: flex;
  gap: 1rem;
}

footer .social-icons {
  justify-content: flex-start;
}

footer .payment-icons {
  justify-content: flex-end;
}

footer img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

footer img:hover {
  background-color: #00aa55;
  transform: scale(1.05);
}


/* WhatsApp  */
.whatsapp {
  position: fixed;
  bottom: 150px;
  right: 20px;
  width: 60px; 
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.whatsapp:hover {
  transform: scale(1.1);
}

/* Video fondo */
#video-fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

#video-fondo video#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principal{
  color: #00ff99;
}

.btn-detalles {
  padding: 0.5rem 1rem;
  background-color: #00ff99;;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  top: 176px;
}

.btn-detalles:hover {
  background-color: #00aa55;
  transform: scale(1.05);
}

.modal-detalle {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-contenido {
  background-color: #111;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  color: white;
  width: 80%;
  max-width: 500px;
  position: relative;
}

.cerrar-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.modal-contenido h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #00cc66;
}


/* turnos de motivacion*/
.acompanamiento {
  background: rgba(3, 3, 3, 0.26);
  margin: 50px auto;
  padding: 40px;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.2);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(5px);
}

.acompanamiento h2 {
  font-size: 2em;
  color: #00ff99;
  margin-bottom: 20px;
}

.acompanamiento .descripcion {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ddd;
}

.acompanamiento .beneficios ul {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 30px auto;
  padding-left: 0;
}

.acompanamiento .beneficios li {
  list-style: none;
  padding: 8px 0;
  font-size: 1.05em;
}

.turno-btn a {
  background-color: #00cc66;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.turno-btn a:hover {
  background-color: #00aa55;
  transform: scale(1.05);
}


/*presentacion*/
#introOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}

#introVideo {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5) contrast(1.2) saturate(1.3);
}

.introContent img {
  width: 280px;
  animation: glow 2s ease-in-out infinite;
  margin-bottom: 20px;
  border-radius: 50%;
}

.introContent h1 {
  font-size: 2.8em;
  color: #00ffcc;
  font-family: 'Audiowide', sans-serif;
  animation: flicker 1.5s infinite;
  position: relative;
  right: 48px;
  text-shadow:
    0 1px 0 #0ff,
    0 2px 0 #0cc,
    0 3px 0 #099,
    0 4px 5px rgba(0, 255, 204, 0.3),
    0 0 20px #0ff,
    0 0 40px #0ff;
    
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 5px #00ffcc); }
  100% { filter: drop-shadow(0 0 25px #00ffcc); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
  70% { opacity: 0.95; }
  90% { opacity: 0.9; }
}

@keyframes bgPulse {
  0% { background-color: #0f0f0f; }
  100% { background-color: #001010; }
}

#introOverlay.fadeOut {
  opacity: 0;
  transform: scale(2);
  pointer-events: none;
}

.error-message {
  font-family: Arial, sans-serif;
}

/* Media Queries */
@media (max-width: 780px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    width: 200px;
    z-index: 150;
  }

  .menu-toggle {
    display: block;
  }

  .logoprincipal{
    display: flex;
    position: relative;
    right: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .info-container,
  .text-and-image,
  .contacto-container {
    flex-direction: column;
    align-items: center;
  }

  .column, 
  .info-text, 
  .info-image-container, 
  .servicios-container,
  form#contact-form {
    flex: 1 1 100%;
  }

  .tab {
    flex: 1 1 100%;
    text-align: center;
  }

  .servicios-container{
  position: relative;
  height: 573px;
  width: 300px;
  right: 5px;
}

form#contact-form {
  position: relative;
  right: 5px;
  height: 573px;
}

#contacto{
background-color: rgba(0, 0, 0, 0.1);
}

#info{
  margin-left: 30px;
  margin-right: 30px;
}

.btn-detalles{
  position: relative;
  top: 40px;
}

main{
  margin: 30px;
}

.acompanamiento{
  margin: 30px;
}


.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-text {
    flex-grow: unset;
    padding: 0 1rem;
  }

  .social-icons,
  .payment-icons {
    display: flex;
    position: relative;
    justify-content: center;
    left: 160px;
  }

  footer img {
    height: 40px;
    width: 40px;
  }

  .introContent{
    position: relative;
    left: 50px;
  }

   .principal {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }

}