body{
margin:0;
font-family: 'Poppins', sans-serif;
background:#0f2e22;
color:white;
}

/* HERO */

.hero{
position:relative;
width:100%;
height:110vh;
overflow:hidden;
}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
}

.hero-buttons {
  display: flex;
  flex-direction: column; /* 🔥 en mobile en columna */
  align-items: center;   /* 🔥 centra */
  width: 100%;
  gap: 15px;
}

.hero-buttons a {
  width: 90%;        /* 🔥 ocupan ancho y se centran */
  max-width: 300px;  /* 🔥 no se van al carajo */
  text-align: center;
  font-size: 30px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;  /* 🔥 centra vertical */
  align-items: center;      /* 🔥 centra horizontal */

  text-align: center;       /* 🔥 centra textos */
  padding: 20px;

background:linear-gradient(
to right,
rgba(0,0,0,0.75),
rgba(0,0,0,0.45),
rgba(0,0,0,0.15),
rgba(0,0,0,0)
);

}

.hero-content{

position:absolute;
top:50%;
left:80px;

transform:translateY(-50%);

max-width:600px;

z-index:2;

text-align:center;

}

.hero-content h1{

font-size:64px;
margin:0;

}

.hero-content p{

font-size:26px;
margin:20px 0 30px 0;

}

.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ubi{

display:block;
font-size:150px;
font-weight:800;
line-height:0.9;

}

.brandsen{

display:block;
font-size:56px;
letter-spacing:px;
margin-top:10px;

}

.btn{

padding:15px 30px;
border-radius:8px;
font-size:18px;
font-weight:bold;
cursor:pointer;
text-decoration:none;

}

.btn-download{

background:#1dd75b;
color:white;

}

.btn-business{

background:#ff8c00;
color:white;

}

/* CARRUSEL */

.carousel-section{

padding:60px 0;
text-align:center;

}

.carousel{

overflow:hidden;
width:100%;

}

.carousel-track{

display:flex;
gap:30px;
width:max-content;

animation:scroll 35s linear infinite;

}

.card{

background:white;
color:#222;
padding:20px 40px;
border-radius:10px;
font-weight:bold;
white-space:nowrap;

}

@keyframes scroll{

from{
transform:translateX(0);
}

to{
transform:translateX(-50%);
}

}

.logo-card{

background:white;
border-radius:12px;

padding:20px;

display:flex;
align-items:center;
justify-content:center;

width:160px;
height:90px;

box-shadow:0 8px 20px rgba(0,0,0,0.25);

}

.logo-card img{

max-width:100%;
max-height:60px;

}


.impacto0 {
  padding: 80px 20px;
  text-align: center;
}

.impacto0 h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 10vw, 110px); /* 🔥 magia pura */
  line-height: 0.85;
  font-weight: 900;
  margin: 0;
}

.impacto0 p {
  margin-top: 20px;
  font-size:22px;
}

.impacto0 .img-ubi {
  display: block;
  margin: 30px auto 0 auto;
  width: 100%;
  max-width: 500px;
}

.highlight {
  color: #ffb300;
}

.impacto{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 120px 80px;
  background: #0b3d2e;
  overflow: hidden;
  gap: 40px;
}

.impacto h2{
  font-family: 'Anton', sans-serif;
  font-size: 90px;
  line-height: 0.9;
  letter-spacing: 1px;
  margin: 0;
}

.impacto p{
  margin-top: 20px;
  font-size: 22px;
  color: rgba(255,255,255,0.8);
  max-width: 400px;
}


.impacto{
  position: relative;
  padding: 80px 80px;
  background: #0b3d2e;
  overflow: hidden;
}

.impacto-texto{
  position: relative;

  top: 55%;
  left: 45%;

  transform: translate(-50%, -50%);

  font-size: 22px;
  max-width: 380px;

  color: rgba(255,255,255,0.85);
}

.img-ubi{
  width: 520px;
  position: relative;
  left: -120px;
}

.highlight{
  color: #ffb300;
}

.highlight2{
  color: #ffb300;
}

.impacto-2{
  background: #0b3d2e;
  flex-direction: row-reverse;
}


.impacto-2 p{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.beneficios{
  padding: 120px 80px;
  background: #0f2e22;
  text-align: center;
}

.beneficios h2{
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  margin-bottom: 80px;
}

.beneficios-grid{
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.beneficio{
  max-width: 300px;
}


.beneficio h3{
  font-size: 28px;
  margin-bottom: 10px;
}

.beneficio p{
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

.beneficios img {
  width: 500px; /* probá tamaños: 220, 250, 300 */
  height: auto;
  display: block;
  margin: auto;
  transform: translateX(-150px); /* probá -10, -20, -30 */
}


.beneficios-grid {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;
  gap: 60px; /* espacio entre columnas */
  flex-wrap: wrap; /* para responsive */
}

@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
}



/* FOOTER */

footer{

text-align:center;
padding:40px;
background:#081c14;

}

@media (max-width: 1024px) {
  .impacto,
  .impacto-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .impacto h2,
  .impacto-2 h2,
  .impacto p,
  .impacto-2 p,
  .impacto-texto,
  .impacto .img-ubi,
  .impacto-2 .img-ubi {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .impacto h2,
  .impacto-2 h2 {
    font-size: 42px;
    line-height: 1;
    margin: 0 0 20px 0;
  }

  .impacto p,
  .impacto-2 p,
  .impacto-texto {
    max-width: 100%;
    margin: 0 0 30px 0;
  }

  .impacto .img-ubi {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  }

  .impacto-2 .img-ubi {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  }
}

.cta-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #22c55e; /* verde Ubi */
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  background: #f97316; /* naranja Ubi */
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.cta-final a {
  width: 200px;
  text-align: center;
}

.legales {
  padding: 80px 20px;
  text-align: center;
}

.legales h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.legales-box {
  max-width: 800px;
  margin: auto;
  max-height: 150px;/* 🔥 alto fijo */
  overflow-y: auto; /* 🔥 scroll vertical */
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
  text-align: left;
}

.legales-box p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.legales-box::-webkit-scrollbar {
  width: 6px;
}

.legales-box::-webkit-scrollbar-thumb {
  background: #ffb300;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .legales-box {
    max-height: 220px;
  }
}

.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #ccc;
  background: #0b3d2e; /* mismo tono oscuro */
}

.footer p {
  margin: 5px 0;
}

.footer p:last-child {
  opacity: 0.7;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 999;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}



  .hero-overlay h1 {
    font-size: 34px; /* 🔥 mucho más chico */
    line-height: 1;
  }

  .hero-overlay h2 {
    font-size: 16px;
  }

  .hero-overlay p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero-buttons a {
    padding: 8px 12px;
    font-size: 12px;
  }

@media (max-width: 768px) {

  .hero-overlay h1 {
    font-size: 34px !important;
  }

  .hero-overlay h2 {
    font-size: 18px !important;
  }

  .hero-overlay p {
    font-size: 13px !important;
  }

  .hero-buttons a {
    padding: 8px 12px !important;
    font-size: 15px !important;
  }

}

.hero-buttons a {
  font-size: 15px;
}