* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Prompt", sans-serif;
  /* font-family: "Ruwudu", sans-serif; */
  color: white;
}

/* ------------------------- Sección 1 --------------------------------------*/
.hero-section {
  background: url("./images/Image-seccion.jpg") no-repeat top center / cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 60px 20px; Comentado para adaptar mobile */
  position: relative;
  text-align: center;
}

/* BACKGROUND MOBILE */

@media (max-width: 768px) {
  .hero-section {
    background: url("./images/holiday2024vert_v5.jpg") no-repeat center center /
      cover;
  }
}

/* ------------------------- Header ----------------------- */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.hero-header .logo img {
  height: 40px;
  position: relative; /* o fixed si es sticky */
  z-index: 10;
}

.hero-header .contact-link a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.logo-left img {
  height: 50px;
}

.contact-button {
  position: relative;
  display: inline-block;
  width: 180px;
  height: 40px;
  overflow: hidden;
}

.contact-text {
  position: absolute;
  right: -100%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
  color: white;
  font-weight: 400;
  white-space: nowrap;
}

.contact-button:hover .icon-mail {
  transform: translate(-110px, -50%);
}

.contact-button:hover .contact-text {
  right: 0px;
  opacity: 1;
}

.icon-mail {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.4s ease;
}

/* HEADER MOBILE */

@media screen and (max-width: 768px) {
  .hero-header {
    display: none;
  }
}
/* FIN HEADER MOBILE */

/* ------------------------- FIN Header ----------------------- */

/* --------------------- Imagen de fondo + contenido ------------------------- */

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  /* padding: 40px 30px; Comentado para adaptar mobile */
  border-radius: 100px;
  /* max-width: 90%; Comentado para adaptar mobile */
  overflow: hidden;
  text-align: center;
}

.animacion-logos-desktop {
  margin-top: 380px;
}

@media (max-width: 768px) {
  .animacion-logos-desktop {
    margin-top: 300px;
  }
}

/* .hero-section{
  padding-top: 200px;
}


.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.0); 
  padding: 40px 30px;
  border-radius: 100px;
  max-width: 90%;
  overflow: hidden;
 
} */

/* --------------------- FIN Imagen de fondo + contenido ------------------------- */

/* ------------------- SCROLL ICON ------------------------ */

.scroll-indicator {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 23px;
  opacity: 0.8;
  letter-spacing: 5.5px;
}

.arrow-down {
  font-size: 1.2rem;
  margin-top: 0px;
}

@media (max-width: 1440px) {
  .scroll-indicator {
    bottom: 0px;
  }
}

@media (max-width: 1280px) {
  .scroll-indicator {
    bottom: 0px;
  }
}

@media (max-width: 1024px) {
  .scroll-indicator {
    bottom: 0px;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 0px;
  }
}

/* -------------- FIN SCROLL ICON --------------- */



/* ----------------------------- FIN Imagen de fondo + contenido ----------------------------- */

/* ------------------------------- Sección 2 ------------------------------ */
.section-revolution {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./images/Seccion2.jpg") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  z-index: 1000;
}

.revolution-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  margin: 0 auto;
}

.intro-banner {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
  padding: 15px 0px 20px 20%;
  text-align: left;
  margin-bottom: 60px;
}

.intro-small {
  color: white;
  font-size: 30px;
  /* display: inline-block; */
  text-align: left;
}

.intro-small .underlined {
  text-decoration: underline;
}

.intro-small .arrow {
  margin-left: 8px;
  font-weight: bold;
}

.hello-text {
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  text-align: left;
  font-weight: 400;
  text-decoration: none;
}

.hello-text strong {
  color: #fff;
  font-size: 79px;
  margin-left: 0px;
  cursor: pointer;
  text-decoration: none;
}

.hello-text strong:hover {
  color: #dd8017;
  cursor: pointer;
  text-decoration: none;
}

.email-text {
  font-size: 20px;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
  text-align: left;
  margin-top: 40px;
  font-weight: 400;
  text-decoration: underline;
}

.email-text strong{
  text-decoration: none;
}

.email-text a {
  color: #ffffff;
  text-decoration: none;
}

/* LOGOS de “See the work:” */
.work-section h3 {
  margin-top: 150px;
  margin-bottom: 30px;
  font-size: 20px;
  text-align: left;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.work-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.work-logos img {
  height: auto;
  max-width: 180px;
  object-fit: contain;
}

/* MOBILE DE CONTENIDO SECCION2  */
@media (max-width: 768px) {
  .hello-text {
    font-size: 16px;
  }

  .intro-small {
    font-size: 18px;
    text-align: left;
  }

  .hello-text strong {
    font-size: 50px;
    margin-left: 0px;
  }

  .email-text {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 5%;
  }

  .intro-banner {
    font-size: 16px;
    padding: 15px 0px 20px 5%;
  }

  .work-logos img {
    max-height: 50px;
    max-width: 140px;
  }

  .work-section h3 {
    margin-top: 100px;
    margin-bottom: 30px;
    letter-spacing: 5%;
    font-size: 16px;
    text-align: center;
  }
}

/* TABLET Y LAPTOP SECCION2 */

@media (min-width: 769px) and (max-width: 1366px) {
  .section-revolution {
    min-height: 80vh;
  }
  .hello-text {
    font-size: 28px;
  }

  .intro-small {
    font-size: 30px;
    text-align: left;
  }

  .hello-text strong {
    font-size: 79px;
    margin-left: 0px;
  }

  .email-text {
    margin-top: 40px;
  }

  .intro-banner {
    font-size: 14px;
    padding: 20px 0px 25px 6%;
  }

  .work-logos img {
    max-height: 60px;
    max-width: 180px;
  }

  .work-section h3 {
    margin-top: 120px;
    margin-bottom: 30px;
  }
}

/* ------------------------------- FIN Sección 2 ------------------------------ */

/*  ----------------------- FOOTER --------------------------- */

.site-footer {
  background-color: #000;
  color: #5d5d5d;
  padding: 40px 60px;
  text-align: left;
}

/* Mostrar solo en desktop */
.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 20px; */
  margin-top: 60px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 22%;
}

.footer-toggle {
  background: none;
  border: none;
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 900;
  width: 100%;
  text-align: left;
  padding: 5px 0;
  cursor: pointer;
}

.footer-content {
  font-size: 13px;
  line-height: 20px;
}

.footer-content a{
  color: #5d5d5d;
}

/* --- Mobile FOOTER --- */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
    padding: 40px 0px;
  }

  .footer-logo {
    text-align: center;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: inline-block;
    width: 208px;
    text-align: center;
    padding: 0px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }

  .footer-column {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
  }

  .bsas {
    border-top: none;
  }

  .footer-toggle {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
  }

  .footer-content {
    display: none;
    padding-top: 8 px;
    color: #fff;
  }

  .footer-content a{
  color: #fff;
  }

  .footer-column.active .footer-content {
    display: block;
    font-size: 14px;
  }

  .footer-toggle .arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0s ease;
  }

  /* Rotar flecha cuando la columna está activa */
  .footer-column.active .footer-toggle .arrow {
    transform: rotate(180deg);
  }
}

/* Anulación de escritorio: el interruptor se comporta como el título*/
@media (min-width: 769px) {
  .footer-toggle {
    cursor: default;
    pointer-events: none;
  }

  .footer-toggle .arrow {
    display: none;
  }

  .footer-content {
    display: block !important;
    padding: 0;
  }

  .footer-logo {
    float: left;
    margin-bottom: 0;
  }
}

/* TABLET IGUAL QUE MOBILE PARA QUE NO MODIFICAR EL FOOTER */



/*  ----------------------- FIN FOOTER --------------------------- */
