
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
  background: linear-gradient(90deg, #02084f, #17c9b0, #067968);
  color: #ffffff;

  /* Firefox */
  scrollbar-width: none;
}

/* WebKit (Chrome, Safari, Edge) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  color: white;
  line-height: 1.6;
}
@font-face {
  font-family: 'Space_Grotesk';
  src: url('FONT/Lituus_SpaceGrotesk_Font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


@font-face { 

  font-family: 'Inter';      

  src: url('FONT/Lituus_Inter_Font.woff2') format('woff2'); 

  font-weight: normal; 

  font-style: normal; 

} 

 

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
 /*background: linear-gradient(90deg, #02084f, #17c9b0, #067968);*/
  background: linear-gradient(90deg, #02084f, #0abba0);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  font-size: 1.1rem;
  margin-right: 500px;
}

.nav-links > a:not(:last-child) {
  margin-right: 1.5rem;
}


.nav-links a {
  color: #ffffff; /* fallback sólido */
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* === Menú Hamburguesa === */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* === Estilos para el checkbox (lo ocultamos completamente) === */
.nav-toggle {
  display: none;
}

/* === Estilos del menú (pantalla completa) === */
@media (max-width: 1300px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #02084fbd;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  .nav-links > *:not(:last-child) {
    margin-bottom: 2rem;
  }

  #nav-toggle:checked + .menu-btn + .nav-links {
    display: flex;
  }

  #nav-toggle:checked + .menu-btn + .nav-links + .close-btn {
    display: block;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: white;
  }
}

/* === Estilos para el botón "X" === */
.close-btn {
  display: none;
  font-size: 2rem;
  color: white;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  z-index: 10000;
}

/* Espaciado general del container */
.container-padded {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
}



/* === Hero Section === */
.hero-section {
  margin-top: 0;
  margin-bottom: 0;
/*background: linear-gradient(90deg, #02084f, #17c9b0, #067968);*/
  background: linear-gradient(90deg, #02084f, #0abba0);
  color: #ffffff;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-container > *:not(:last-child) {
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.hero-content {
  flex: 1 1 500px;
}

.hero-subtitle, .hero-title {
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: Space_Grotesk;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 80px;
  margin-bottom: 0.2rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-title {
  font-family: Inter;
  font-size: 40px;
  line-height: 1.25;
  font-weight: bold;
  margin-bottom: 10px; 
}

.hero-description {
  font-family: Inter;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-button {
  color: black;
  background-color: white;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  touch-action: auto;          /* fallback */
  touch-action: manipulation;  /* valor moderno */
}

.hero-button:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Imagen */
.hero-image-container {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  margin-top: 0;
  height: auto;
}

/* Media Queries */

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 13px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-container > div:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
    .hero-button {
  justify-content: center;
  display: flex;
}
}

/* Teléfonos grandes (iPhone Plus, Galaxy Note, etc.) */
@media (min-width: 415px) and (max-width: 480px) {
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-description {
    font-size: 1em;
  }
  .hero-image-container {
  flex: 1 1 100px;
  text-align: center;
}
  .hero-button {
  justify-content: center;
  display: flex;
}
}

/* Teléfonos medianos (la mayoría de smartphones actuales) */
@media (min-width: 360px) and (max-width: 414px) {
  .hero-subtitle {
    font-size: 11px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-description {
    font-size: 0.85em;
  }
    .hero-image-container {
  flex: 1 1 100px;
  text-align: center;
}
    .hero-button {
  justify-content: center;
  display: flex;
}
}

/* Teléfonos pequeños (antiguos o pantallas compactas) */
@media (max-width: 359px) {
  .hero-subtitle {
    font-size: 10px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-description {
    font-size: 0.8em;
  }
    .hero-button {
    padding: 10px 5px;
  justify-content: center;
  display: flex;
}
  .hero-image-container {
  flex: 1 1 100px;
  text-align: center;
  margin-top: -30px;
  margin-bottom: -20px;
}
}


@media (pointer: coarse) {
  .hero-button:hover {
    transform: none;
    background-color: white;
    color: black;
    border-color: transparent;
  }
}



/* === Servicios: Ajustes de diseño === */
.servicios-section {
  background-color: #ffffff;
  color: #02084f;
  margin: 0 auto;
  max-width: 1300px;
  padding: 3.5rem 2rem;
  text-align: center;
  margin-bottom: -40px;
}

.servicios-intro {
  margin-bottom: 3rem;
}

.section-badge {
  background: transparent;
  border: 2px solid #155bd5;
  border-radius: 30px;
  color: #155bd5;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  padding: 8px 18px;
  cursor: default;
}

.servicios-section .section-description2 {
  font-size: 1.1rem;
  margin-top: -200px;
  margin-bottom: 35px;
  line-height: 2.6;
  background-color: #ffffff;
  color: #155bd5;
  padding: 1px 15px;
  border-radius: 12px;
  text-align: center;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.3s ease;
  border: 2px solid #155bd5;
  font-weight: bold;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: #02084f;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.servicios-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1240px;
}

.servicios-list > .servicio-item {
  margin: 1rem;
}

.servicio-item {
  background-color: #ffffff;           /* fallback sólido */
  background-color: rgba(255, 255, 255, 0.66);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.267);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.servicio-item:hover {
  box-shadow: 0 8px 20px rgba(2, 8, 79, 0.2);
}

.servicio-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
  position: relative;
}


.icono-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 8px;
  border: 2px solid #155bd5;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
}

.icono-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background-color: #155bd5;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
  transform: scale(0);
}
.servicio-item:hover .icono-wrapper::before {
  opacity: 1; /* El círculo aparece al hacer hover */
  transform: scale(1); /* El círculo crece a su tamaño completo */
}

.icono-wrapper:hover::before {
  opacity: 1;
  transform: scale(1);
}

.icono-servicio img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.servicio-item:hover .icono-servicio {
  filter: brightness(0) invert(1);
  transform: translateY(0px) scale(1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.servicio-item ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-bottom: 20px;
}

.servicio-item li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 1;
  text-align: left;
  margin-left: 20px;
}

.servicio-item li::before {
  content: "\25C6";
  position: absolute;
  left: -3px;
  top: 0;
  font-size: 1rem;
  color: #155bd5;
}

.servicio-item .mas-informacion,
.servicio-item .mas-informacion2 {
  margin-top: 20px;
  color: #155bd5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  align-self: center;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.servicio-item .mas-informacion > a:not(:last-child)
{
  margin-right: 8px;
}

.servicio-item .mas-informacion:hover {
  color: #00aaff;
}

.servicio-item .mas-informacion .icono{
  width: 16px;
  height: 16px;
  display: inline-block;
}

.servicio-item .mas-informacion .icono {
  transform: rotate(-45deg);
}

.servicio-contenido {
  width: 100%;
  max-width: 600px;
  text-align: left;
  margin-left: 0;
}

/* Responsive tablets */
@media (max-width: 1226px) {
  .servicios-list {
    grid-template-columns: 1fr 1fr;
  }
  /* cerrá esta llave */

  .servicios-list > .servicio-item {
    margin: 15px;
  }

  .servicio-item h3 {
    font-size: 1rem;
  }

  .servicio-item h3 > *:not(:last-child) {
    margin-right: 8px;
  }

  .servicio-item li {
    padding-left: 35px;
    font-size: 0.95rem;
    margin-left: 0;
  }
}

/* Responsive celulares */
@media (max-width: 900px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .servicios-titulo {
    font-size: 13px;
  }

  .servicios-section .section-description,
  .servicios-section .section-description2 {
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .servicios-list {
    grid-template-columns: 1fr;
  }

  .servicios-list > .servicio-item {
    margin: 15px 0;
  }

  .servicio-item h3 {
    font-size: 1rem;
  }

  .servicio-item h3 > *:not(:last-child) {
    margin-right: 6px;
  }

  .mas-informacion {
    font-size: 0.95rem;
  }
}

/* Responsive teléfonos pequeños */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
  }

  .servicios-list {
    max-width: 100%;
    padding: 0;
  }

  .servicios-list > .servicio-item {
    margin: 10px 0;
  }

  .servicio-item h3 {
    font-size: 0.8rem;
  }

  .servicio-item h3 > *:not(:last-child) {
    margin-right: 5px;
  }

  .servicio-item li {
    font-size: 0.78rem;
    padding-left: 28px;
  }

  .servicios-section .section-description2 {
    font-size: 0.95rem;
  }

  .mas-informacion {
    font-size: 0.9rem;
  }
}

/* Responsive teléfonos muy pequeños */
@media (max-width: 338px) {
  .section-title {
    font-size: 1.3rem;
  }

  .servicios-list {
    max-width: 100%;
    padding: 0;
  }

  .servicios-list > .servicio-item {
    margin: 8px 0;
  }

  .servicio-item h3 {
    font-size: 0.7rem;
  }

  .servicio-item h3 > *:not(:last-child) {
    margin-right: 4px;
  }

  .servicio-item li {
    font-size: 0.7rem;
    padding-left: 24px;
  }

  .servicios-section .section-description2 {
    font-size: 0.9rem;
  }

  .mas-informacion {
    font-size: 0.65rem;
  }

  .icono-wrapper {
    width: 50px;
    height: 50px;
  }

  .icono-servicio img {
    width: 100%;
    height: 100%;
  }
}


/* === Contacto === */
.contact-section {
  padding: 5rem 2rem;
  margin: 0 auto;
  background-color: #fafafa;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.contact-wrapper > *:not(:last-child) {
  margin-right: 2rem;
}

.contact-wrapper > * {
  flex: 1 1 45%;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #02084f;
}

.contact-info p {
  font-size: 1rem;
  color: #02084f;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: #edf2fc;
  color: #333;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-icon {
  margin-right: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form > *:not(:last-child) {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
}

.form-row > *:not(:last-child) {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.form-row input,
.form-row textarea {
  flex: 1 1 100%;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #edf2fc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem 1rem;
  background-color: #155bd5;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #1a216e;
}

/* ✅ Responsive: se apila en móviles */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Estilos del formulario de contacto */
.contacto-section {
  padding: 20px 20px;
  margin-top: 0;
  background-color: #ffffff;
  color: #02084f;
  text-align: center;
}

.contact-form-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.contact-form-container h3 {
  color:#155bd5;
  font-size: 32px;
  margin: 10px 0;
  font-weight: bold;
}

.contact-form-container p {
  color: #666;
  margin-bottom: 30px;
}

.contact-form-row {
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-form-row > *:not(:last-child) {
  margin-right: 20px;
  margin-bottom: 20px;
}

.contact-form-row input,
.contact-form-row textarea {
  flex: 1 1 45%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-row textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

.contact-form-row input:focus,
.contact-form-row textarea:focus {
  outline: none;
  border-color: #155bd5;
  box-shadow: 0 0 0 2px rgba(10, 58, 255, 0.1);
}

.contact-form-btn {
  margin-top: 20px;
  background-color: #155bd5;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-btn2 {
  margin-top: 20px;
  background-color: #155bd5;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 50px;
}

.contact-form-btn:hover {
  background-color: #0734d1;
}

.btn-volver-arriba {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.btn-volver-arriba img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.btn-volver-arriba img:hover {
  transform: scale(1.1);
}

/* Media query para pantallas más pequeñas (smartphones) */
@media (max-width: 768px) {
  .btn-volver-arriba {
    bottom: 15px;
    left: 15px;
  }

  .btn-volver-arriba img {
    width: 40px;
    height: 40px;
  }
.contact-form-container {
  margin-top: 30px;
}
  .contact-form-row input,
  .contact-form-row textarea {
    flex: 1 1 100%;
  }

  .contact-form-row > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* Media query para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
  .btn-volver-arriba {
    bottom: 10px;
    left: 10px;
  }

  .btn-volver-arriba img {
    width: 35px;
    height: 35px;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  background-color: #fff;
  max-width: 400px;
  margin-top: 1.5rem;
}

.contact-icon {
  background-color: #155bd5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
  margin-right: 16px;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-details h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #155bd5;
}

.contact-details p {
  margin: 4px 0;
}

.contact-details a {
  color: #02084f;
  text-decoration: none;
  font-size: 1rem;
}

.contact-details a:hover {
  text-decoration: underline;
}

.nav-item {
  display: block;
  cursor: pointer;
}

.nav-item a {
  display: block;
  pointer-events: auto;
}
