* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}

body {
  overflow-x: hidden;
  /* para evitar scroll horizontal */
}
p{
  font-size: 1.2rem;
}
.section {
  padding: 80px 200px;
}

/* Círculos decorativos */
.circle1,
.circle2 {
  width: 2000px;
  height: 2000px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  position: absolute;
  z-index: 1;
}

.circle1,
.circle2 {
  width: 1800px;
  height: 1800px;
  border-radius: 50%;
  background: #00b5fc;
  background-image: linear-gradient(0deg, rgba(0, 181, 252, 0) 0%, rgba(25, 75, 212, 1) 100%), url(/assets/images/pexels-tomas-anunziata-129267-3876410\ \(2\).jpg);
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: 50%;
  /* ambos a la misma altura */
  transform: translateY(-50%);
  /* centra verticalmente */
  z-index: 9999;
  transition: transform 0.5s ease-out;
  /* suaviza el movimiento */
  box-shadow: 2px 2px 20px;
}

.circle1 {
  /* suaviza el movimiento */
}

.circle1 {
  left: -1050px;
  /* la mitad del ancho para que solo se vea el borde */
}

/* Derecha */
.circle2 {
  right: -1050px;
  /* igual pero al otro lado */
}

/* Sección principal */
.principal {
  width: 100%;
  height: 100vh;
  background: #1a1a1a;
  position: relative;
}

/* Título principal */
.principal-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  position: relative;
}

.principal-icon {
  position: absolute;
  font-size: 15rem;
  top: 50%;
  color: rgb(255, 255, 255);
  z-index: 999999999;
  transition: transform 0.9s ease-out;
  /* suaviza el movimiento */
}

.principal-title img {
  width: 180px;
  height: auto;
}

.principal-title h1 {
  font-size: 8rem;
  color: white;
}

.title-1 {
  position: absolute;
  left: 150px;
  z-index: 99999;
}

.title-2 {
  position: absolute;
  right: 100px;
  z-index: 99999;
}

.nav-top {
  top: 0;
  position: sticky;
  z-index: 999;
  width: 100%;
  height: 90px;
  background-color: #e2e9f6;
}

.nav-top ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav-top li {
  list-style: none;
  text-transform: uppercase;
  color: #0d486f;
  font-weight: 700;
  cursor: pointer;
}

.secondary {
  width: 100%;
  height: auto;
}

.business-climate {
  width: 100%;
  height: 100%;
  background: #f5f8ff;
  display: flex;
  justify-content: space-between;
}

.business-climate .content {
  max-width: 900px;
  color: #1a1a1a;
  line-height: 1.6;
}

.business-climate h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 20px;
  text-align: start;
}

.business-climate h3 {
  font-size: 1.4rem;
  color: #004b8d;
  margin-top: 40px;
  margin-bottom: 10px;
}

.business-climate ul {
  list-style: none;
  padding-left: 0;
}

.business-climate ul li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
}

.business-climate ul li::before {
  content: "✔";
  color: #00a19a;
  position: absolute;
  left: 0;
}

.business-img {
  width: 400px;
  height: 900px;
  border-radius: 40px;
  background-color: #003366;
  overflow: hidden;
  /* 🔹 recorta todo lo que sobresalga */
  position: relative;
  /* 🔹 contexto para el video */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.business-img video {
  width: 100%;
  /* 🔹 ocupa todo el ancho del contenedor */
  height: 100%;
  /* 🔹 ocupa todo el alto del contenedor */
  object-fit: cover;
  /* 🔹 mantiene proporción y llena el div */
  border-radius: 40px;
  /* 🔹 opcional si querés que el video siga el borde */
}

.download-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background-color: #00a19a;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: #007f7a;
}

.terciary {
  width: 100%;
  height: auto;
  background:linear-gradient(0deg, rgba(0, 181, 252, 0.575) 0%, rgba(25, 75, 212, 1) 100%);
  text-align: start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.terciary-content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  padding: 80px 0 80px 200px;
  position: relative;
  z-index: 9;
}

.terciary-content h2 {
  font-size: 2.4rem;
  color: white;
}

.terciary-content h3 {
  font-size: 1.5rem;
  color: white;
}

.terciary-content p {
  color: white;
}

.mapa-features {
  background: #f5f8ff;
  text-align: center;
}

.mapa-features h2 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 50px;
}

.cards-container {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  margin: 0 auto;
  padding-top: 0;
}

.card {
  max-width: 300px;
  max-height: 300px;
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.card i {
  font-size: 2.5rem;
  color: #00a19a;
  margin-bottom: 15px;
}

.card h3 {
  color: #003366;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.mapa-img {
  width: 30%;
  height: auto;
  display: flex;
  align-items: end;
  justify-content: end;
}

.mapa-img img {
  width: 700px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 9;
}

.circle3 {
  width: 1000px;
  height: 1000px;
  border-radius: 50% 0 0 0;
  background-color: #1a1a1a;
  position: absolute;
  z-index: 1;
  transition: transform 0.9s ease-out;
  right: 10%;
  box-shadow: 2px 20px 20px ;
}

.mapa-login {
  width: 900px;
  height: 60px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 10px;
  color: white;
  text-transform: uppercase;
}

.fourth{
  width: 100%;
  height: auto;
  display: flex;
}

.fourth-content h2{
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 20px;
  text-align: start;
}
.fourth-content h4{
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
  text-align: start;
  margin-top: 40px;
}
.fourth-content li{
  list-style: none;
  margin-top: 15px;
}
.fourth-graphs {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding: 0px;
  overflow: hidden;
}

/* estilo base de cada barra */
.graph {
  width: 10%;
  background: linear-gradient(0deg, rgba(0, 181, 252, 0.575) 0%, rgba(25, 75, 212, 1) 100%);
  border-radius: 8px 8px 0 0;
  transform: translateY(100%);
  transition: transform 1s ease, height 1s ease;
}

/* alturas finales distintas para dar realismo */
.graph1 { height: 60%; transition-delay: 0.1s; }
.graph2 { height: 80%; transition-delay: 0.2s; }
.graph3 { height: 45%; transition-delay: 0.3s; }
.graph4 { height: 70%; transition-delay: 0.4s; }
.graph5 { height: 55%; transition-delay: 0.5s; }
.graph6 { height: 90%; transition-delay: 0.6s; }

/* cuando el contenedor entra en vista */
.fourth-graphs.active .graph {
  transform: translateY(0%);
}


.fourth-button{
    display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background-color: #00a19a;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}