/* Tipografía general */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
    color: #262626;
}

/* Texto más fuerte (subtítulos, botones, etc.) */
.medium {
  font-weight: 500;
}

/* Títulos estilo abogado */
h1 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1px;
    font-size: 14px;
}

h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 16px;
}

p {
    font-size: 13px;
}

/* Barra azul tipo nav */

header {
    background-color: #04224B;
    width: 100%;
    max-height: 60px;
}

.contenedor-a {
    max-width: 90%;
    margin: auto;
}

.cabecera {
    display: flex;
    align-items: center;
}

.cabecera h1 {
    color: #F2F0F0;
    padding: 8px 10px;
}

.logo {
    max-width: 60px;
}

/* Hero Banner */

.hero-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.hero-img {
    max-height: 45vh;
    overflow: hidden;
}

.hero-img img {
    position: relative;
    top: -70px;
}

.contenedor-c {
    max-width: 90%;
    margin: auto;
}

.hero-banner h2 {
    color: #04224B;
    padding: 15px 0;
}

.pitch {
    background-color: #E5E9ED;
    padding: 10px 0;
}

.boton {
    background-color: #087F8C;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-align: center;
    max-width: 300px;
    margin: 15px auto;
}

.boton a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;

}

.boton img {
    width: 15px;
}

.boton {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.boton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Sección de credibilidad */

.credibilidad {
    background-color: #E5E9ED;
    text-align: center;
}

.contenedor-b {
    max-width: 70%;
    margin: auto;
}

.tres-bullets {
    display: flex;
    flex-direction: column;
    padding: 30px 0px;
}

.box {
    margin: 20px 30px;
}

.icon-box {
    margin-bottom: 20px;
}

.icon-box img {
    width: 50%;
    margin: auto;
}

/* Main CTA */

.main-cta {
    text-align: center;
}

.main-cta-img {
    width: 100%;
}

.main-cta h2 {
    margin: 40px 0;
}

.button-section {
    background-color: #E5E9ED;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.main-cta .boton {
    max-width: 300px;
    width: 100%;
}

.main-cta .boton a {
    padding: 12px 40px;
}

/* Footer */

footer {
    background-color: #04224B;
    color: #F2F0F0;
    padding: 40px 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
}

.footer-contacto {
    margin-top: 40px;
}

/* =========================
   BASE (Mobile first)
   ========================= */

body {
  font-size: 13px;
}

/* =========================
   >= 720px (Tablet)
   ========================= */

@media (min-width: 720px) {

    h1 {
        font-size: 18px;
    }
    
  h2 {
    font-size: 25px;
  }

    .contenedor-b {
        max-width: 80%;
    }
    
    .hero-section {
        flex-direction: row;
        margin-bottom: 0;
    }
    
    .hero-img {
        max-width: 38%;
        max-height: 100vh;
    }
    
    .hero-banner {
        max-width: 62%;
    }
    
    .hero-img img {
        position: relative;
        top: 0px;
    }
    
    .hero-banner h2 {
        padding: 40px 0;
    }

    .tres-bullets {
        flex-direction: row;
        padding: 30px 0px;
    }
    
    .box {
    margin: 20px 20px;
        max-width: 25%;
}

.icon-box {
    margin-bottom: 20px;
}

.icon-box img {
    width: 50%;
    margin: auto;
}
    
/* =========================
   >= 1360px (Laptop/Desktop)
   ========================= */

@media (min-width: 1360px) {

  .contenedor-a {
    max-width: 1260px;
  }

  .contenedor-b {
    max-width: 900px;
  }
    
    .contenedor-c {
        max-width: 85%;
    }

  h2 {
    font-size: 54px;
      line-height: 1.2;
  }
    
    h3 {
        font-size: 24px;
    }
    
    p {
        font-size: 18px
    }
    
    .hero-img {
        max-height: 90vh;
    }

    .hero-img img {
    top: -85px;
}
    
    .hero-banner h2 {
        padding: 60px 0
    }
    
    .main-cta .boton {
    max-width: 600px;
    width: 100%;
}
    
    .button-section a {
        font-size: 24px;
    }
    
}

/* =========================
   >= 1920px (Pantallas grandes)
   ========================= */

@media (min-width: 1920px) {

        h1 {
        font-size: 24px;
    }
    
    
  h2 {
    font-size: 54px;
      line-height: 1.2;
  }
    
    h3 {
        font-size: 32px;
    }
    
    p {
        font-size: 24px
    }
    
  .contenedor-a {
    max-width: 1600px;
  }

  .contenedor-b {
    max-width: 1100px;
  }

        .hero-banner h2 {
        padding: 120px 0
    }
    
    .pitch {
    padding: 45px 0;
}

    .boton {
        max-width: 600px;
        margin: 60px auto;
        font-size: 32px;
    }
    
    .boton img {
    width: 30px;
}

}

    /* =========================
   Animaciones
   ========================= */
    
    
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}