
body {
    background-color: #f9fafd;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: #03133e;
    line-height: 1.6;
    -webkit-font-smoothing:"antialiased";
}

/* HEADER */
#mi-header{

background-color: #03133e;
padding: 15px 40px;
position: relative;
}

/* CONTENEDOR */

.contenedor{
    
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo img{
    width: 200px;
    height: auto;
}

/* MENÚ PC */

.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu a{
    color: #f9fafd;
    text-decoration: none;
}

.menu a:hover{
    color: #efb508;
}

.menu a:active{
    color: rgb(16, 109, 191);
}
.hamburguesa {
    display: none;
}

/*CONTENIDO PRINCIPAL*/

.hero{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  gap: 40px;
  margin: auto;
  padding: 40px 0;
}

.hero-texto h3{
  font-size: 20px;
  margin-bottom: 100px;
  font-size: clamp(15px, 2vw, 20px);
}

.hero-texto h1{
  font-size: 80px;
  line-height: 1.0;
  margin: 0;
  font-size: clamp(42px, 5vw, 80px);
}

.hero-texto p{
  font-size: 20px;
  margin-top: 25px;
  font-size: clamp(13px, 1vw, 20px);
}

.social-box a{
  display: inline-block;
  background: #efb508;
  color: #03133e;
  padding: 5px 5px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 80px;
  text-decoration: none !important;
}

/* IMAGEN GENERAL */
.hero-imagen img{
  width: 100%;
  height: auto;
 
}
.img-pc{
  display: block;
  padding: 10px;
  max-width: 100%;

}

.img-movile{
  display: none;
}
/* SECCIÓN PROBLEMAS */
* {
  box-sizing: border-box;
}

/* SECCIÓN */
.problemas {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #03133e, #0d6efd);
  color: white;
}

/* TÍTULO */
.problemas h2 {
  font-size: clamp(24px, 5vw, 36px);
  margin-bottom: 40px;
}

/* CONTENEDOR */
.problemas-contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* TARJETAS */
.problema {
  width: 100%;
  padding: 20px;
  border-radius: 10px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* oscurece la imagen SIN position */
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;

  color: white;
}

/* TEXTOS */
.problema h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.problema p {
  font-size: 15px;
}

/*================SECCION 3====================*/
.seccion3 {
  background: #fefdfd;
  color: #0b1e3c;
  padding: 80px 20px 0px; /* 👈 sin espacio abajo */
  margin: 0;
  text-align: center;

  position: relative;
  overflow: hidden; /* 🔥 CLAVE */
}

.seccion3 .contenido {
  max-width: 900px;
  margin: auto;
  margin-bottom: 23%;
}

.seccion3 h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.seccion3 .descripcion {
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.7;
  margin-bottom: 35px;
  color: #1f2f4a; /* azul más suave para lectura */
}

.seccion3 .beneficios p {
  font-size: clamp(15px, 2vw, 18px);
  margin: 8px 0;
  font-weight: 500;
}

.fx-brocha {
  position: absolute;
  bottom: -30px; /* 👈 ajusta hasta que quede perfecta */
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .seccion3 .contenido {
    margin-bottom: 80px; /* 👈 valor fijo, no porcentaje */
  }
  .fx-brocha {
    bottom: -280px; /* 👈 la bajas más en celular */
  }
}
/*=================SECCIÓN 4 - CSS CALCULADORA====================*/
.calculadora-seccion {
  background: #0b1e3c;
  padding: 0px 0px;
  color: white;
  margin-top: 0;
}

.contenedor {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

/* COLUMNAS */
.col-izquierda,
.col-derecha {
  flex: 1;
}

/* TEXTO DERECHA */
.col-derecha h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.col-derecha p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #dbe3f0;
}

/* CALCULADORA */
.calculadora-seccion {
  background: #03133e;
  padding: 80px 20px;
  color: white;
}

.calc-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.col-izquierda,
.col-derecha {
  flex: 1;
}

/* TEXTO DERECHA */
.col-derecha h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.col-derecha p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #dbe3f0;
}

.contacto {
  margin-top: 20px;
  font-size: 18px;
  color: white;
}

/* CALCULADORA */
.calc-box {
  background: white;
  color: #0b1e3c;
  padding: 40px;
  border-radius: 12px;
}

.planes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.planes button {
  flex: 1;
  padding: 12px;
  border: 1px solid #0b1e3c;
  background: white;
  color: #0b1e3c;
  cursor: pointer;
  border-radius: 6px;
}

.planes button:hover {
  background: #0b1e3c;
  color: white;
}

.precio {
  margin: 20px 0;
}

input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.calcular-btn {
  background: #0b1e3c;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

#resultado {
  margin-top: 20px;
  font-size: 26px;
}

.incluye {
  margin-top: 25px;
  font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .calc-wrapper {
    flex-direction: column;
  }

  .planes {
    flex-direction: column;
  }

  .planes button {
    width: 100%;
  }
}
/*======================CARRUSEL===========================*/
/* CONTENEDOR GENERAL */
.aristi-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK (animación) */
.aristi-track {
  display: flex;
  width: max-content;
  animation: aristi-scroll 25s linear infinite;
}

/* SLIDES */
.aristi-slide {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 20px;
}

.aristi-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

/* ANIMACIÓN */
@keyframes aristi-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*======================SECCION 6=====================*/

.proceso {
  padding: 80px 20px;
  background: #f5f7fa;
  text-align: center;
}

/* 🔥 TITULO CON IMAGEN */
.titulo-proceso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 40px;
  color: #0b1e3c;
}

.titulo-proceso img {
  width: 35px;
  height: auto;
  opacity: 0.8;
}

/* GRID */
.pasos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.paso {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

/* ICONOS */
.paso img {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
  filter: grayscale(100%);
}

/* TITULO PASOS */
.paso h3 {
  margin-bottom: 10px;
  color: #0b1e3c;
  font-size: 17px;
}

/* TEXTO */
.paso p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* 📱 MÓVIL */
@media (max-width: 768px) {

  .titulo-proceso img {
    width: 25px;
  }

  .pasos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .paso {
    padding: 15px;
    text-align: center;
  }

  .paso img {
    width: 45px;
    height: auto;
    margin: 0 auto 10px auto;
  }

  .paso h3 {
    font-size: 18px;
  }

  .paso p {
    font-size: 14px;
  }
}
/*======================SECCIÓN 7======================*/
/* FOOTER */
.footer-pro {
  background: #03133e;
  color: white;
  padding: 60px 20px 20px;
}

/* CONTENEDOR */
.footer-wrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* COLUMNAS */
.footer-brand,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.footer-brand img {
  width: 160px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfd8ea;
  line-height: 1.6;
}

/* TITULOS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

/* LINKS */
.footer-links a {
  display: block;
  color: #cfd8ea;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #efb508;
}

/* CONTACTO */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cfd8ea;
}

/* BARRA FINAL */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #cfd8ea;
}
/* ================== CELULAR ================== */
@media (max-width: 768px){

.hamburguesa{
  display: block;  
  font-size: 28px;
  color: #f8f9fc;
}

.menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fbf8f8;

    max-height: 0;
    overflow: hidden;
    transition:max-height 0.05s ease;
}

.menu.activo{
    max-height: 400px;
}

.menu ul{
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    margin: 0;
}

.menu a{
    display: block;
    background-color: #03133e;
    color: #fcfafa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin: 5px 0;
    transition: 0.35;
}

.menu li{
    width: 80%;
}

/* HOVER PRO */
.menu a:hover {
    background: #efb508;
    color: #050505;
  }

  /*CLICK*/
  .menu.activo{
    transform: scale(0.97);
  }
 /*HERO INFORMATION RESPONSIVA*/
  .hero{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 100px; /* espacio para que entre la onda */
    padding: 0;
    margin: 0%;
    width: 100%;

  }

  .hero-texto h3{
    margin-bottom: 25px;
  }

  .hero-texto p{
    margin-top: 10px;
    margin-bottom: 5px;
  }


  .img-movile{
    display: block !important;
    width: 100%;
    height: auto;
  }

  .img-pc{
    display: none !important;
  }
/*SECCIÓN 3*/

  /* RESPONSIVE PROBLEMAS*/
  .problemas {
    padding: 40px 15px;
  }

  .problemas-contenedor {
    gap: 15px;
  }

  .problema {
    padding: 15px;
  }
}

/*PÁGINA DE CONTACTO*/

/* ================= CONTACT PAGE ================= */
/* ================= CONTACT HERO ================= */

.contact-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #03133e, #0d6efd);
  color: white;
}

.contact-hero-wrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.contact-hero-text {
  flex: 1;
}

.contact-hero-text h1 {
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 20px;
}

.contact-hero-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* FORM */
.contact-hero-form {
  flex: 1;
}

.contact-hero-form form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  color: #0b1e3c;
}

/* INPUTS */
.contact-hero-form input,
.contact-hero-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BOTÓN */
.contact-hero-form button {
  width: 100%;
  padding: 14px;
  background: #0b1e3c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-hero-form button:hover {
  background: #efb508;
  color: #0b1e3c;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .contact-hero-wrap {
    flex-direction: column;
    text-align: center;
  }

  .contact-hero-form form {
    padding: 25px;
  }
}

