/* Reset y box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body y fuente Montserrat */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: #333737;
  line-height: 1.5;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Fuentes */

h1 {
font-size: 3em;
font-weight: 100;
}
h2 {
  font-size: 2em;
  line-height: 35px;
  font-weight: 100;
}
h3 {
  font-size: 1em;
  font-weight: 100;
}

p {
  font-size: 0.8em;
  font-weight: 100;
}
i {
  margin-right: 10px;
}

a {
  font-size: 0.9em;
  font-weight: 100;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.1s ease;
}

/* FONDOS */
.imagen-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.imagen-fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5); 
  z-index: 1;
}

.fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  transition: transform 2s ease;
  transform-origin: center center;
  pointer-events: none;
}

.fondo.zoom-activo {
  transform: scale(1.2);
}



/* ANIMACIÓN TEXTOS */

.zoom-text, .slide-text {
  opacity: 0;
  transition: transform 1.5s ease, opacity 0.8s ease;
}

.zoom-text {
  transform: scale(2);
}

.zoom-activo {
  transform: scale(1);
  opacity: 1;
}

.slide-text {
  transform: translateX(-50px);
}

.slide-activo {
  transform: translateX(0);
  opacity: 1;
}

.zoom-text,
.slide-text {
  transition-delay: 0s;
}

@media (max-width: 600px) {
  .slide-text, .zoom-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .slide-activo, .zoom-activo {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* NAVEGACION SUAVE */
html {
  scroll-behavior: smooth;
}

/* CONTENIDOS */

.contenido {
  position: relative;
  z-index: 2;
  max-width: 75%;
  text-align: center;
}

@media (max-width: 768px) { 
  .contenido {
    max-width: 90%;
  }
}

/* BOTONES SECUNDARIOS */

.botonessecundarios {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}
.botonessecundarios a {
   width: 175px;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #333737;
  border: 1px solid #333737;
}

.botonessecundarios a:hover {
  color: #757F7F;
  border-color: #757F7F;
}




/* HEADER */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 10px auto auto auto;
  align-items: center;
  padding:1px 5px 1px 5px;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50px; 
}

header .container.scroll-activo {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  margin-top: 5px;
  margin-left: 15px;
  margin-right: 20px;
   display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.desktop-nav {
  display: flex;    
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  color: #333737;
  cursor: pointer;
  text-align: center;
  padding: 5px 5px 5px 5px;
}

.desktop-nav a:hover,
.desktop-nav a.active-link {
  color: #757F7F;
}

.boton-agora {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100px;
  border: 1px solid #AEC3C3;
  border-radius: 50px;
  position: relative;
  
}

.boton-agora .logoagora {
  height: 20px; 
  width: auto;
  display: block;
}

.boton-agora:hover {
 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hamburguesa */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  margin-left: 40px;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333737;
  transition: all 0.3s ease;
}

/* Menú móvil */
.mobile-menu {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.mobile-nav {
  display: flex;
  background-color: white;
  border-radius: 5%;
  flex-direction: column;
  align-items: center;
  padding: 20% 10%;
  max-width: 700px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav a {  
  width: 100%;  
  text-align: center;  
  color: #333737;
  padding: 0px 60px;
  margin-bottom: 10px;
  border: 1px solid #AEC3C3;
  border-radius: 50px;      
}

.mobile-nav a.active-link {
  color: #AEC3C3;
}

.mobile-nav .boton-agora {
  justify-content: center;
  padding: 5px 40px;
}

/* Hamburguesa */
.menu-toggle:checked ~ .mobile-menu {
  display: flex;
  opacity: 1;
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #333737;
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: #333737;
}

/* Bloquear scroll */
.menu-toggle:checked ~ .mobile-menu {
  overflow: hidden;
}

@media (max-width: 768px) {
  header .container {
    justify-content: center;
    padding:1px 20px 1px 20px ;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .logo {
    padding-left: 35px;
  }
  .mobile-menu:not(.visible) {
    display: none;
  }
}


/* SECCIONES */

/* HERO */
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .ojo {
  width: 175px;
  margin-left: auto;
  margin-right: auto;
}

.ojo img {
  width: 100%;
  height: 100%;
}

#hero h1 {
  margin-bottom: 50px;
}

#hero h1 span {
  color: #AEC3C3;
}

#hero h3 {
  line-height: 25px;
  margin-bottom: 100px;
}

#hero .botoneshero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

#hero a {
  width: 250px;
  padding: 4px 10px;
  background-color: #333737;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: white;
  text-align: left;
}

#hero a:hover {
  background-color: #757F7F;
  color: white;
}

@media (max-width: 768px) {
  #hero .ojo {
    width: 125px;
  }
  #hero h1 {
    font-size: 2.5em;
    margin-bottom: 25px;
  }
  #hero h3 {
    font-size: 1em;
    margin-bottom: 50px;
  }
}

/* NOSOTROS */

#nosotros {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding-top: 120;
  overflow: hidden;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
}

#nosotros h2 {
  margin-top: 100px;
  margin-bottom: 20px;
}

#nosotros h2 span {
  color: #AEC3C3;
}

#nosotros h3 {
  line-height: 25px;
  margin-bottom: 10px;
}

.contenedor-cuadros-nosotros {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  flex-direction: row;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.cuadro-nosotros {
  width: 330px;
  height: 250px;
  padding: 15px 10px 20px 10px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cuadro-nosotros h3 {
  border: 1px solid #333737;
  border-radius: 50px;
  padding: 5px;
  text-align: center;
  margin-bottom: 20px;
  color: #333737;
}

.lista-nosotros {
  list-style: none;
  padding: 0;
  margin-left: 10px;
  text-align: center;
  font-size: 0.9em;
  align-items: center;
}

.lista-nosotros li {
  margin-bottom: 25px;
}

.lista-vanguardia {
  list-style: none;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
  font-size: 1em;

}

.lista-vanguardia li {
  margin-bottom: 5px;
}

 .contenedor-cliente {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.cliente {
width: auto;
height: 100px;
}

.logocliente {
  height: 100px;
  width: auto;
}

@media (max-width: 768px){
  .contenedor-cuadros-nosotros {
  flex-direction: column;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
 .contenedor-cliente {
  flex-direction: column;
  gap: 5px;
 }

}

/* SOLUCIONES */

#soluciones {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding-top: 120;
  overflow: hidden;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
}

#soluciones h2 {
  margin-top: 120px;
  margin-bottom: 20px;
}

#soluciones h2 span {
  color: #AEC3C3;
}

#soluciones h3 {
  line-height: 25px;
}

.contenedor-cuadros-soluciones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.cuadro-soluciones {
  width: 330px;
  height: 400px;
  padding: 15px 10px 20px 10px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cuadro-soluciones h3 {
  border: 1px solid #333737;
  border-radius: 50px;
  padding: 5px;
  color: #333737;
  text-align: center;
  margin-bottom: 20px;
}

.cuadro-soluciones .pedu {
  line-height: 1.3;
  margin-bottom: 10px;
}

.lista-soluciones {
  list-style: none;
  padding: 0;
  margin-left: 10px;
  text-align: left;
}

.lista-soluciones .empresas {
  color: #5E6666;
}

.lista-soluciones .educacion {
  color: #333737;
}

.lista-soluciones li {
  margin-bottom: 15px;
}

.lista-soluciones .sol {
  align-items: center;
  gap: 8px;
  font-size: 1em;
  line-height: 1.3;
}

.lista-soluciones .desc {
  margin-left: 26px; 
  line-height: 1.3;
}

.soluciones-logoagora {
  height: 30px;
  width: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1px;
}

.cuadro-soluciones .pedu {
  line-height: 1.3;
  margin-bottom: 10px;
}

.btn {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 0;
  width: 250px;
  padding: 4px 10px;
  background-color: #333737;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: white;
  text-align: left;
}

.btn:hover {
  background-color: #757F7F;
  color: white;
}

@media (max-width: 768px){
  .contenedor-cuadros-soluciones {
  flex-direction: column;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
}

/* PRECIOS */

#precios {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding-top: 120;
  overflow: hidden;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
}

#precios h2 {
  margin-top: 200px;
  margin-bottom: 20px;
}

#precios h3 {
  line-height: 25px;
}

#precios h2 span, #precios h3 span {
  color: #AEC3C3;
}

.saas {
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 10px 5px 0 5px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.contenedor-cuadros-precios {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  flex-direction: row;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.cuadro {
  width: 330px;
  height: 150px;
  padding: 5px;
  border-radius: 25px;
}

.cuadro h3 {
  border: 1px solid #333737;
  border-radius: 50px;
  padding: 5px;
  color: #333737;
}

.cuadro p {
 padding: 10px;
 color: #333737;
}

@media (max-width: 768px){
  .contenedor-cuadros-precios {
  flex-direction: column;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#precios h2 {
  margin-top: 120px;
}
}

/* CONTACTO */
#contacto {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center; 
  align-items: center; 
}

#contacto h2 {
  margin-bottom: 30px;
}

#contacto h2 span {
  color: #AEC3C3;
}

.carrusel {
  position: relative;
  overflow: hidden;
  width: 500px;
  height: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  border-radius: 25px;
   background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.carrusel-contenedor {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content; 
  align-items: flex-start;
}

.carrusel-item {
  flex: 0 0 auto; 
  width: 500px;
  display: flex;             
  flex-direction: row;       
  align-items: flex-start;      
  text-align: left;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  color: #333737;
  line-height: 20px;               
}

.carrusel-item p .item-titu {
  font-size: 1.5em;
  color: #333737;
}

#contacto h3 {
  line-height: 25px;
  margin-bottom: 30px;
}

#contacto p {
  margin-bottom: 20px;
}

#contacto p .demo {
  font-size: 1em;
  font-weight: 600;
  color: #AEC3C3;
}

#contacto .boton {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#contacto a {
  padding: 4px 10px;
  width: 150px;
  background-color: #333737;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: white;
  text-align: center;
}

#contacto a:hover {
 background-color: #757F7F;
 color: white;
}

.formulario {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}

.formulario.visible {
  visibility: visible;
  opacity: 1;
}

.caja {
  position: relative;
  background-color: white;
  padding: 2rem;
  width: 75%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.cerrar-formulario {
  position: absolute;
  top: 4px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333737;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid white;
  border-radius: 50px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

form textarea {
  border-radius: 25px;
  resize: vertical;
  min-height: 150px;
}

.enviar-formulario {
  width: 120px !important;
  padding: 4px 10px;
  border-radius: 50px;
  background-color: #AEC3C3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: white;
  text-align: center !important;
}

.enviar-formulario:hover {
  background-color: #333737;
}

.mensaje-respuesta {
  margin-top: 30px;
  text-align: center;
  color: #f06005;
}


@media (max-width: 768px) {
.carrusel {
    width: 350px;
  }

.carrusel-item {
  width: 350px;
}
  .formulario {
    margin-top: 30px;
  }
  .caja {
    margin: 20px;
    width: 90%;
  }
}

/* FAQ */
#faq {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#faq h2 {
  margin-bottom: 30px;
}

#faq h2 span {
  color: #AEC3C3;
}

.accordion-container {
  max-width: 100%;
}

.accordion {
  padding: 5px;
  overflow: hidden;
  background-color: transparent;
  text-align: left;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 4px 10px;
  cursor: pointer;
  margin-bottom: 5px;
  color: #333737;
  background-color: white;
  border: 1px solid #333737;
  border-radius: 50px;
}

.accordion-toggle--principal {
 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.accordion:not(.open) > .accordion-toggle:hover {
  color: #757F7F;
  border: 1px solid #757F7F;
}

.accordion-toggle svg path {
  fill: #333737;
}

.accordion-toggle:hover svg path {
  fill: #757F7F;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 0 5px;
  border-radius: 15px;
 
}

.accordion-content--principal {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.accordion-content ul {
  margin-left: 5px;
  padding-left: 15px;
  font-size: 0.9em;
}

.accordion-content span {
  color: #757F7F;
}

.accordion p {
  padding-left: 5px;
  padding-right: 5px;
}

.accordion-content p a {
  color: #757F7F;
}

.accordion.open > .accordion-toggle {
  color: #757F7F;
  border: 1px solid #757F7F;
}


.accordion.open > .accordion-content {
  padding: 5px;
  max-height: 500px;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.nested-accordion {
  margin-top: 5px;
}

.accordion-toggle svg {
  margin-left: auto;
}

.accordion.open > .accordion-toggle svg {
  transform: rotate(180deg);
}

.accordion.open > .accordion-toggle svg path {
  fill: #757F7F;
}


@media (max-width: 768px) {
    #faq h2 {
        font-size: 1.8em;
    }
}

/* FOOTER */
.footer {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
  flex-direction: column;
  background-color: #333737; 
  padding: 40px;
  color: #AEC3C3;
}

.footer-contenido {
  position: relative;
  display: flex;
  justify-content: center;
  width: 75%;
  flex-direction: row;
  gap: 60px;
  margin-left: auto;
  margin-right: auto;

}

.footer-col {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li i {
  min-width: 18px;
}

.footer-col ul .direccion {
  align-items: flex-start;
}
.footer-col ul .direccion i {
  padding-top: 3px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #AEC3C3;
  font-size: 1em;
}

.footer-col ul li a:hover {
  color: white;
}

.copy {
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.copy hr {
  border: none;
  height: 1px;
  background-color: #AEC3C3;
  margin-top: 30px;
  margin-bottom: 15px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.copy p {
 text-align: center;
}

@media (max-width: 768px) {
  .footer-contenido {
    flex-direction: column;
  }
}



