
:root {
  --primary-color: #74BDFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

body {
  font-family: 'DM Sans', sans-serif;
  cursor: url('/resources/cursor-personalizado.png'), auto;
  color: #333333;
}

header {
  height: 80px; /* Ajustalo si querés más alto */
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo negro translúcido */
  
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
}

/* Tamaño por defecto en desktop */
#lang-icon {
  width: 32px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* En mobile */
@media (max-width: 768px) {
  #lang-icon {
    width: 24px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  }
}


/* Estilo para el botón hamburguesa */
#menu-toggle {
  background-color: #74BDFF;
  border: none;
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

/* ----------- HEADER NAVIGATION ADAPTIVE ----------- */

/* NAV DESKTOP */
@media (min-width: 769px) {
  #menu-toggle,
  #menu-overlay,
  .social-icons {
    display: none
  }

  .nav-drawer {
    display: flex;
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    transform: none;
    padding: 0;
  }

  .nav-drawer ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-drawer li a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
  }
}

/* NAV MOBILE */
@media (max-width: 768px) {
  .nav-drawer ul {
    list-style: none;
    padding: 0;
  }

  .nav-drawer li {
    margin: 1rem 0;
  }

  .nav-drawer a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #111;
    font-weight: 500;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
  }

  .social-icons i {
    font-size: 1.5rem;
    color: #333;
  }
}

#menu-overlay.active {
  transform: translateX(0);
}


section {
  padding: 0;
}

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

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  max-width: 1200px ;
  padding: 1.5rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 200;
}

.hero-content h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
  font-weight: 200;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem; /* más chico en mobile */
  }

  .hero-content h3 {
    font-size: 1.2rem;
  }
}

.hero-content strong {
  font-weight: 900;
}

.hero-content button {
  background-color: #AAD6FC;
  color: #333;
  border: none;
  border-radius: 12px;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  cursor: pointer;
  padding: 12px 16px;
}


.hero-content button:hover {
  background-color: #238FF1; /* un poco más oscuro */
  color: #000;
}

.hero-content h3 {
  text-transform: lowercase;
}


.shippuTextChanger {
  display: inline-block;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
  color: #74BDFF;
}
.fade-out {
  opacity: 0;
}
.fade-in {
  opacity: 1;
}


/* About */
#aboutUs {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

#aboutUs .container {
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.aboutUsCarrusel {
  display: block;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

#aboutUsCarrusel {
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.aboutUsLeft {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.5rem;
}



.aboutUsWrapper {
  max-width: 1200px;
  margin: 0 auto;
}


.aboutUsLeft img {
  width: 100%;
  max-width: 500px;
  height: auto;
  flex: 1;
}

.aboutUsLeftText {
  flex: 1;
  max-width: 600px;
}

@media (max-width: 768px) {
  .aboutUsLeft {
    flex-direction: column;
    padding: 1rem 0;
  }

  .aboutUsLeft img,
  .aboutUsLeftText {
    max-width: 100%;
    width: 100%;
  }
}

.teamImageSingle {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* opcional */
}

#aboutUs h3 {
  color: #333;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}


#aboutUs p {
  font-size: 24px;
  color: #333;
  font-family: "DM Sans";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.aboutUsLeftText {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

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

.teamImages {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 400px;
  margin: 0 auto;

  overflow: visible; /* 👈 Muy importante */
}

.teamImages-wrapper {
  width: 100%;
  overflow-x: hidden; /* Oculta scroll horizontal */
}

.teamImages .img {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 8px;
}

/* Posicionamiento específico de cada imagen */
.img-clarita {
  top: 5px;
  left: -30px;
  transform: rotate(-8deg);
  z-index: 2;
}

.img-cielito {
  top: 5px;
  right: -50px;
  transform: rotate(10deg);
  z-index: 1;
}

.img-agus {
  bottom: 0;
  left: 50px;
  transform: rotate(-5deg);
  z-index: 3;
}



/* Clients */
#ourClients {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.carousel-title {
  color: #333;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}


#ourClients img {
  height: 50px;
  object-fit: contain;
}

/* Contenedor del carrusel */
.carousel {
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  padding-top: 2rem;
}

/* Pista del carrusel que se anima */
.carousel-track {
  display: flex;
  width: calc(250px * 10); /* 5 logos * 2 (duplicados) */
  animation: scroll 10s linear infinite;
}

/* Estilo de cada slide */
.carousel-slide {
  flex: 0 0 auto;
  width: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo de las imágenes */
.carousel-slide img {
  max-width: 100%;
  height: auto;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* Services */
#ourServices {
  padding: 1.5rem 0;
}

.textosServices {
  padding-top: 1rem;
}

.textosServices h3 {
    color: #333;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    margin-bottom: .5rem;
}

.textosServices p {
  font-size: 24px;
  font-size: 1.5rem;
}

.textosServices 


.responsive-video {
  position: relative;
  width: 100%;
  max-width: 357px;
  padding-top: calc(361 / 357 * 100%); /* Mantiene la proporción */
  margin-top: 1rem; /* Espacio opcional arriba del video */
}

.responsive-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Opcional: recorta para llenar bien el espacio */
  border-radius: 8px; /* Opcional: bordes redondeados */
}


.videoCard {
  position: relative;
  width: 100%;
  padding-top: calc(361 / 357 * 100%); /* relación de aspecto 357x361 */
  overflow: hidden;
  border-radius: 24px;
  background: black;
}

.videoCard video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.videoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 40%);
  pointer-events: none;
}

.videoOverlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.videoOverlay p {
  font-size: 24px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.videoDarkOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* debajo del texto */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}


.despeImg {
  width: 100%;
  padding-bottom: 1rem;
}

.despeImg img {
  width: 100%;
  overflow: hidden;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .servicesGrid {
    grid-template-columns: 1fr;
  }
}

.servicesContent {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* What we do */
#whatWeDo {
  position: relative;
  overflow: hidden;
  min-height: 400px; /* ajustá según tu contenido */
}

.whatWeDoBackground {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/resources/queHacemos-desktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#whatWeDo > *:not(.whatWeDoBackground) {
  position: relative;
  z-index: 1;
}

.queHacemosPicture {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}

.queHacemos {
  width: 100%;
  height: auto;
  display: block;
}


/* Versión mobile */
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
  .whatWeDoBackground {
    background-image: url('/resources/queHacemos-mobile.png');
  }
}


#whatWeDo h3 {
  text-align: center;
}

.servicesTitle {
  margin: 2rem 0 1rem 0 ;
  display: flex;
  text-transform: lowercase;
  gap: .5rem;
  justify-content: center;
  color: var(--primary-color);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem ;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  min-height: 3rem;
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-label {
  flex: 1;
  text-align: left;
}

.chevron {
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.chevron svg {
  stroke: #4F46E5;
  transition: stroke 0.3s ease;
}

.accordion-item.active .chevron {
  background-color: var(--primary-color);
  transform: rotate(90deg);
}

.accordion-item.active .chevron svg {
  stroke: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  background: #fafafa;
}
.accordion-content p { 
  font-size: 1rem;
}


.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 1rem 1.5rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid #fff;
  border-top: 2px solid #444;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* Contact */
#contactUs h3 {
  font-size: 1.5rem;
  margin: 0;
}

#contactUs p {
  font-size: 24px;
  font-size: 1rem;
  margin: 0;
}


.contactGrid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem ;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contactGrid {
    grid-template-columns: 1fr; /* una columna en mobile */
    padding-left: 16px;
    padding-right: 16px;/* 16px de padding horizontal */
    gap: 0rem  ;
     align-items: flex-start;
  }
}
.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.textContent {
  text-align: left;
}

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

.shippuFormImg {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 1rem 0 0 0;
}


.contactFormWrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contactInfo h3,
.contactInfo p {
  font-size: 24px;
  max-width: 500px;
  text-align: left;
}

.contactFormWrapper form {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  width: 100%;
}

@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }

  .shippuFormImg {
    display: none !important;
  }

  .contactInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

  .contactInfo h3,
  .contactInfo p {
  font-size: 24px;
    text-align: center;
  }
}

form {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

label {
  display: block;
  margin-top: 1rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #4F46E5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Modal de éxito */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-content {
  background: white;
  padding: 2rem 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-content h2 {
  color: #4F46E5;
  margin-bottom: 10px;
}

.success-content p {
  font-size: 24px;
  color: #333;
}


#contactUs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding: 2rem 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  #contactUs {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

#contactUs > .container {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#contactUs a {
  color: var(--Negro, #333);
font-family: "DM Sans";
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-decoration-line: underline;
text-decoration-style: solid;
text-underline-position: from-font;
}

#inputHeadings {
  font-size: 14px;
  font-weight: 800;
}


.inputsContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.inputsContainer div {
  display: flex;
  flex-direction: column;
}

#inputHeadings {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0.25rem;
}



input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.radioButtons {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

button[type="submit"] {
  background-color: #71bfff;
  border: none;
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Modal */
.modal-backdrop {
  font-size: 24px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000b3;
  display: none;
  z-index: 1000;
}

/* Modal fondo oscuro */
.modal {
  display: none; /* se muestra con JS */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Muy alto */
  justify-content: center;
  align-items: center;
}

/* Contenedor del modal */
.modal-content {
  background-color: white;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  z-index: 10000;
  position: relative;
  text-align: center;
}

/* Botón cerrar (X) */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}


#closeModalBtn {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background-color: #4F46E5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}


/* Imagen logo */
.modal-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Botón entendido */
.modal-button {
  background-color: #57A8FF;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}


#entendidoBtn {
  background-color: #459cf5;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
}


#contactUs input,
#contactUs textarea {
  width: 100%;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid #333;
  font-size: 1rem;
  background: transparent;
  outline: none;
  font-family: 'DM Sans';
}

#contactUs button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
}

#radiusButtons h4 {
  margin-bottom: 1rem;
}


#inputLabels input {
  width: 1rem;
  height: 1rem;
}

#radiusButtons input {
  margin: .5rem 0;
}

#inputLabels {
  display: flex;
  gap: .5rem;
  align-items: center;
}

#inputLabels input{
  width: 1rem;
  height: 1rem;
}



/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.footerText {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 1rem;
  font-size: 20px;
  text-align: center;
  flex-wrap: nowrap;       /* Evita salto innecesario */
}

.footerText img {
  width: 20px;
  height: auto;
}


.footerText p {
  margin: 0;
  max-width: 90vw;
  line-height: 1.3;
}


/* Mobile */
@media (max-width: 768px) {
  .footerText {
    padding: 3rem 1rem 1rem 1rem; /* top right bottom left */         /* Permite que baje en mobile si hace falta */
    font-size: 14px;
    gap: 0.25rem;
  }

  .footerText img {
    width: 16px;
  }

  .footerText p {
    font-size: 14px;
  }
}
.starFooter {
  transform: rotate(180deg);
}

.shippuFooter {
  width: 100vw;
  height: 45vh; /* Ajustá esto para que corte justo en la S */
  background-image: url("/resources/shippufotterdesktop.webp"); 
  background-repeat: no-repeat;
  background-size: cover; /* O 'contain' si querés que no se corte a los lados */
  background-position: top center; /* Alinea la imagen arriba */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Imagen diferente en pantallas menores a 768px */
@media (max-width: 768px) {
  .shippuFooter {
    height: 11vh; /* Probá con 18–22vh hasta que quede exacto */
    background-position: top center;
    background-size: cover; /* o contain si querés más control */
  }
}
/* Global paragraph styles */
p {
  font-size: 24px;

}

@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
  p {
  font-size: 24px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .shippuFormImg {
    display: none !important;
  }
}

#menu-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

#menu-overlay.open {
  transform: translateX(0);
}

/* Botón de cierre arriba a la derecha */
#menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #74BDFF;
}

/* Íconos sociales abajo */
.nav-drawer {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-drawer ul {
  margin-top: 4rem;
}

.social-icons {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  color: #74BDFF;
}

.logo-mobile {
  display: block;
  height: 32px;
}

.logo-desktop {
  display: none;
}

@media (min-width: 769px) {
  .logo-mobile {
    display: none;
  }

  .logo-desktop {
    display: block;
    height: 48px;
  }
}


/* Estilo general para el header */
header {
  background-color: transparent;
  position: relative;
  z-index: 1000;
}

/* Contenedor del nav desktop */
.nav-desktop {
  display: none;
}

@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-desktop ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-desktop li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .nav-desktop li {
  min-width: 120px; /* Ajustá si querés más espacio */
  text-align: center;
}

  .nav-desktop li a:hover {
    color: #74BDFF;
  }

  /* Ocultar botón hamburguesa en desktop */
  #menu-toggle {
    display: none;
  }
}

header, header a, header button {
  color: #000 !important;
}


/* Animación base oculta */
.scroll-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Cuando entra en pantalla */
.scroll-show {
  opacity: 1;
  transform: translateY(0);
}



/* === Language Switch Buttons === */
.language-switch-desktop {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.language-switch-desktop .lang-btn,
.language-switch-mobile .lang-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.language-switch-mobile {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}


/* === Botón de idioma único === */
.lang-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  margin-right: 0.75rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Ocultar versiones anteriores de switch de idioma */
.language-switch-mobile,
.language-switch-desktop {
  display: none !important;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
}

.team-member {
  position: relative;
  width: 220px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}


/* Responsive */
@media (max-width: 768px) {
  .team-gallery {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .member {
    flex: unset;
    height: 350px;
  }
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}


.team-gallery {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 507px;
  gap: 1rem;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
}

.member {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: flex 0.6s ease;
  cursor: pointer;
}

.member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;

}

.team-gallery p {
  color: #fff;
}

.overlay h3 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.overlay p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Estado inicial: 1 grande */
.member.active {
  flex: 2.2;
}

/* Hover general: achica todos... */
.team-gallery:hover .member {
  flex: 0.5;
}

/* ...excepto el hovered */
.team-gallery .member:hover {
  flex: 2.2;
  z-index: 2;
}

.team-gallery .member:hover img {
  transform: scale(1.05);
}

.team-gallery .member:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .team-gallery {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .member {
    flex: unset;
    height: 350px;
  }
}


/* ENVOLTURA para scroll horizontal solo en mobile */
@media (max-width: 768px) {
  .team-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
  }

  .team-gallery {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    height: auto;
    width: max-content;
    scroll-snap-type: x mandatory;
  }

  .member {
    flex-shrink: 0;
    width: 50vw; /* 👈 más chico = se ve más del siguiente */
    height: 85vw;
    scroll-snap-align: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }

  .member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }

  .team-gallery:hover .member,
  .team-gallery .member:hover,
  .member.active {
    flex: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .team-pagination {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .team-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .team-dot.active {
    background: #74BDFF;
  }
}


#socialLinks {
  padding: 3rem 1rem;
  background-color: #FAFAFA;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#socialLinks .container {
  max-width: 800px;
  width: 100%;
}

#socialLinks h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 500;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-grid a {
  font-size: 2rem;
  color: #74BDFF;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-grid a:hover {
  transform: scale(1.2);
  color: #238FF1;
}

@media (max-width: 768px) {
  #socialLinks h3 {
    font-size: 1.2rem;
  }

  .social-grid {
    gap: 1.2rem;
  }

  .social-grid a {
    font-size: 1.8rem;
  }
}

@media (min-width: 769px) {
  /* Reset form estilo base */
  #contactForm {
    all: unset;
    display: block;
    width: 100%;
  }

  /* Envoltura del formulario */
  .inputsContainer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }

  /* Estilo de títulos arriba de los inputs */
  #inputHeadings {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 0.25rem;
  }

  /* Inputs y textareas */
  .inputsContainer input,
  .inputsContainer textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    font-family: 'DM Sans', sans-serif;
  }

  /* Botón */
  #contactForm button[type="submit"] {
    background-color: #74BDFF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
  }
}


.sparkle {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F27B9F;
  box-shadow: 0 0 4px #F27B9F, 0 0 8px rgba(242, 123, 159, 0.6);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: sparkle-fade 0.6s ease-out forwards;
}

@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

/* Newsletter: opacidad 70% y ajustes */
#newsletterBackdrop { background-color: rgba(0,0,0,.3; } /* 70% */
#newsletterModal .modal { background-color: rgba(0,0,0,.3); } /* por si usás .modal para fondo */
#newsletterModal .modal-content h3 { margin-top: .25rem; }
#newsletterModal .nl-subcopy { margin: .25rem 0 1rem; opacity:.9; }
#newsletterModal .nl-footnote { opacity:.8; display:block; text-align:center; }

/* Mobile-first del pop-up */
@media (max-width: 480px) {
  #newsletterModal .modal-content {
    width: 94%;
    max-width: 420px;
    padding: 16px;
    border-radius: 12px;
  }
  #newsletterModal .modal-logo { max-width: 120px; }
  #newsletterModal h3 { font-size: 1.15rem; }
  #newsletterModal .nl-subcopy { font-size: .95rem; line-height: 1.3; }
  #newsletterModal .inputsContainer {
    padding: 1rem;
    gap: 1rem;
  }
  #newsletterModal input { font-size: 1rem; padding: .75rem; }
  #newsletterModal button { width: 100%; padding: .9rem 1rem; }
}
