@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
/* ========== COLOR VARIABLES ========== */
:root {
  --sky-accent: #3b9fd8;
  --white: #ffffff;
  --gray-text: #7a8fa8;
  --electric-blue: #1d59ff;
  --blue-logo: #000f4c;
  --dark-blue: #030621;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}

body {
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  background-color: var(--white);
  color: var(--dark-blue);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== UTILITIES ========== */

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== END UTILITIES ==========*/

/* ========== Header ========== */
.hero-section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--blue-logo);
  text-align: center;
  padding-top: 5vh;
}

.hero-logo-img {
  width: 80% ;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  right: 50%;
  max-width: 900px;
  margin: 0 auto;
  bottom: 3rem;
  color: var(--gray-text);
  animation: bounce 2s infinite;
  transition: color 0.3s, opacity 1.5s ease;
  opacity: calc(1 - var(--scrolled, 0));
  pointer-events: calc((1 - var(--scrolled, 0)) * auto); /* no funciona en todos los browsers */
}
.scroll-indicator svg {
  width: 40px;
  height: 40px;
}

.scroll-indicator:hover {
  color: var(--sky-accent);
}

.scroll-indicator .svg-mobile {
  display: none;
}

/* ========== Fin Header ========== */

/* ========== Section about us ========== */
.about-section {
  height: 100%;
  background: var(--white);
  color: var(--dark-blue);
}

.aboutUs {
  background-color: var(--white);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 75px 0 25px 50px;
}

.aboutUs h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.aboutUsLine {
  height: 1px;
  width: 5rem;
  background-color: var(--dark-blue);
}

.aboutUsLine:first-child {
  width: 10rem;
}

.aboutUs-foundersImage {
  position: relative;
  width: 100%;
}

.aboutUs-foundersImage img {
  margin: 0 !important;
  width: calc(100% - 30px);
  border-left: 15px solid var(--white);
  border-right: 15px solid var(--white);
}

.aboutUs-foundersImage-top,
.aboutUs-foundersImage-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 15px;
  background: var(--dark-blue);
}

.aboutUs-foundersImage-bottom {
  top: initial;
  bottom: 0;
  background-color: var(--electric-blue);
}

.aboutUs-foundersNames {
  background: var(--white);
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 10vw, 6rem);
  flex-wrap: wrap;
}

.aboutUs-foundersNames h3 {
  font-size: clamp(1.25rem, 3rem, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ========== End Section about us ========== */

/* ========== Section info ========== */
.info {
  padding-bottom: 0vh;
  background-color: var(--white);
}
.info-lista {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 15vw;
  padding-right: 10px;
}

.info-lista-item {
  display: flex;
  align-items: center;
}
.info-lista-item:first-child,
.info-lista-item:nth-child(2),
.info-lista-item:nth-child(4) {
  align-items: flex-start;
}

.info-lista-item:first-child > .info-lista-viñeta {
  margin-top: 18px;
}
.info-lista-item:nth-child(2) > .info-lista-viñeta,
.info-lista-item:nth-child(4) > .info-lista-viñeta {
  margin-top: 18px;
}

.info-lista-item-texto {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0;
  display: initial;
  width: 90%;
}

.info-lista-item-capitular {
  float: none;
  font-size: 50px;
  line-height: 0.4;
  margin-right: 4px;
  margin-left: 4px;
  color: var(--electric-blue);
  font-weight: 400;
}

.info-lista-ultimo-resaltado {
  color: var(--electric-blue);
  margin: 0 5px;
  line-height: 1;
}

.info-lista-viñeta {
  width: 30px;
  height: 3px;
  background: var(--electric-blue);
  margin-top: 4px;
  margin-right: 10px;
}

/* ========== End Section info ========== */

/* ========== Section Services ========== */
.services-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}
.services-lista {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.services-lista-items {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  list-style: none;
  gap: 5px;
  padding: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
}
.service-item-separador {
  margin: 0 auto;
  width: 32px;
  height: 2px;
  background: var(--electric-blue);
}
.service-item {
  position: relative;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  text-align: center;
  padding-bottom: 0.5rem;
}
/* ========== End Section Services ========== */

/* ==========  Section contact ========== */
.contact-section {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--blue-logo);
  color: var(--white);
}

.logo-silueta-img {
  transform: scale(0.9);
  width: 100vw;
  height: auto;
}

.contact-content {
  position: absolute;
  text-align: center;
}

.contact-website {
  font-size: clamp(2rem, 3rem, 3rem);
  font-weight: 400;
  letter-spacing: normal;
  color: var(--white);
  padding-bottom: 2rem;
}

.contact-links {  
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0.15rem;
  color: var(--gray-text);
  font-size: clamp(0.75rem, 1.2rem, 1.5rem);
}

.contact-mails {
  padding-bottom: 1rem;
  gap: 4rem;
}

.contact-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.contact-link svg {
  transition: transform 0.3s;
}

.contact-link:hover {
  color: var(--sky-accent);
}

.contact-link:hover svg {
  transform: scale(1.1);
}

/* ========== End Section contact ========== */

/* ========== Footer ========== */
.copyright {
 display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  width: 100%;
} 

.copyright h3 {
 text-align: center;
 font-size: clamp(0.5rem, 1rem, 1rem);
 font-weight: 400;
 color: var(--gray-text);  
}

/* ========== End Footer ========== */

/* ========== RESPONSIVE ========== */

@media (max-width: 1100px) {
  .info-lista {
    padding-left: 5vw;
  }  
  .contact-section { 
    height: auto; 
    padding: 1rem 1rem; 
  } 
  .logo-silueta-img { 
    transform: scale(0.8); 
  } 
  .contact-website { 
    font-size: 2rem; 
  } 
  .contact-mails { 
    gap: 1rem; 
  } 
  .contact-links { 
    font-size: clamp(1rem, 1rem, 1rem); 
  }
}



@media (max-width: 820px) {
  .aboutUs-foundersNames {
    justify-content: space-around;
    padding: 0 10px;
    gap: 0;
  }
  .aboutUs-foundersNames h3 {
    font-size: 30px;
  }
  .info-lista-resaltado {
    font-size: 40px;
  }
  .info-lista-item,
  .info-lista-item-texto {
    font-size: 20px;
  }
  .logo-silueta-img { 
    transform: scale(0.8); 
  } 
  .contact-website { 
    font-size: 2rem; 
  } 
  .contact-links { 
    font-size: 1rem; 
  } 
  .contact-mails { 
    flex-direction: column; 
    align-items: center;
    padding-bottom: 1rem;
  } 
    .copyright h3 { 
    font-size: 0.8rem; 
  }
}



@media (max-width: 768px) {
  .aboutUs {
    padding-left: 25px;
  }
    .aboutUs h2 {
    font-size: 1.5rem;
  }
  .aboutUsLine:first-child {
    width: 3rem;
  }
  .aboutUsLine {
    width: 1rem;
  }
  .hero-section {
    justify-content: center;
    align-items: center;
    padding-top: 0 !important;
  }
  .scroll-indicator .svg-desktop {
    display: none;
  }
  .scroll-indicator .svg-mobile {
    display: initial;
  }
  .aboutUs-foundersNames {
    justify-content: center;
    gap: 5vw !important;
  }
  .aboutUs-foundersNames h3 {
    font-size: 4vw;
  }
  .info-lista-item:first-child > .info-lista-viñeta,
  .info-lista-item:nth-child(2) > .info-lista-viñeta,
  .info-lista-item:nth-child(4) > .info-lista-viñeta {
  align-items: flex-start;
  margin-top: 12px;
  }
  .info-lista-item-capitular {
    font-size: 6vw !important;
  }
  .info-lista-item-texto {
    font-size: 3vw !important;
  }
  .info-lista-viñeta {
    width: 3vw !important;
  }
.contact-section { 
        align-items: center;
    padding: 1rem 1rem; 
  } 
  .logo-silueta-img { 
    display: flex;
    transform: scale(0.8); 
  } 
  .contact-website { 
    font-size: 1.8rem; 
  } 
  .contact-links { 
    font-size: 0.95rem; 
    letter-spacing: 0.1rem; 
  } 
  .contact-link { 
    gap: 1rem; 
  } 
  .copyright { 
    padding: 0; 
  }
  .copyright h3{ 
    font-size: 0.75rem;
  }
}





@media (max-width: 480px) {
  
  .info-lista-item:first-child > .info-lista-viñeta,
  .info-lista-item:nth-child(2) > .info-lista-viñeta,
  .info-lista-item:nth-child(4) > .info-lista-viñeta {
  align-items: flex-start;
  margin-top: 8px;
  }
  .info-lista-viñeta {
    width: 3vw !important;
    height: 2px !important;
  }
  .stat-item {
    flex-direction: column;
    height: 4px;
  }
  .stat-item::before {
    width: 24px;
    height: 4px;
  }
  .founders-names {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .contact-section { 
    padding: 1rem 1rem; 
  } 
  .logo-silueta-img { 
    transform: scale(0.8); 
  } 
  .contact-content { 
    position: flex; 
  } 
  .contact-website { 
    font-size: 1.25rem; 
  } 
  .contact-link { 
    gap: 0.3rem; 
    padding-bottom: 1rem;
  } 
  .contact-link svg { 
    transform: scale(0.8); 
  }
  .contact-links { 
    font-size: 0.7rem; 
  } 
  .contact-mails { 
    flex-direction: column; 
    gap: 1rem; 
  } 
  .copyright h3{ 
    position: relative;
    font-size: 0.6rem; 
  } 
}



@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}
/* ========== END RESPONSIVE ========== */