/* 1. Importación de la fuente desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Outfit:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* 2. Aplicación global a todo el sitio */
body, h2, h3, h4, h5, h6, p, a, li, span, div {
    font-family: 'Inter', sans-serif !important;
}

.material-icons {
    font-family: 'Material Icons' !important;
}

.col .responsive-img,
.video-responsive{
border-radius: 24px;
}

.header img,
.footer img,
.icons img {
border-radius:0!important;
}

.dynamicform:has(> .margin-block) {
  overflow: hidden;
  margin: 120px auto;
}

a.btn.black {
    font-size: 18px;
    height: 44px;
    padding: 4px 2rem;
}


@media (max-width: 768px) {
    a.btn.black {
        /* 1. Permite que el botón crezca a lo alto si el texto se rompe */
        height: auto !important;
        min-height: 45px; 
        
        /* 2. Forzado de centrado y ajuste de texto */
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        
        /* 3. Evita que el texto toque los bordes redondos */
        padding: 12px 25px !important;
        
        /* 4. Permite saltos de línea */
        white-space: normal !important; 
        
        /* 5. Opcional: bajar un poco el tamaño de fuente si es muy largo */
        font-size: 14px !important;
        
        /* Asegura que el botón no se salga de la pantalla */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   1. ESTILOS BASE Y TIPOGRAFÍA
========================================================================== */
body {
    background-color: #fff;
}

h1 {
    display: block !important;
    font-family: "Outfit", sans-serif;
    width: 100% !important;
    font-size: 4.5rem !important;
    font-weight: 700 !important;
    line-height: 0.95 !important;
    word-wrap: normal !important;
    color: #fff;
    margin-top: 190px;
}

@media (max-width: 768px) {
h1{
    font-size: 2.5rem !important;
    }
}

h2 { 
    font-size: 40px; 
    margin-top: 120px;
}

h3 { 
    color: #1C1D1F; 
    font-size: 28px; 
}

p,
li { 
    font-size: 17px; 
    color: #1C1D1F; 
}

.button-align-left {
   float: left;
}


/* -----------------------------
   BANNER
-----------------------------*/
.banner.text {
  min-width: 70%;
}

.banner.text p {
  color: #fff;
  margin-bottom: 68px;
}

.banner.text img{
    margin-top: 218px;
    float: left;
    border-radius: 0;
}

.dynamicform:has(> .banner.logo) {
  display: flex; 
  align-items: stretch;  
}

.banner.text, .banner.logo{
   flex: 1;
}

.banner.logo {
    display: flex;
    flex-direction: column-reverse;
   margin-bottom: 68px;
}

.banner.logo img{
    border-radius: 0;
    float: right;
}


/*---VISTA MOVIL-----*/
@media (max-width: 768px) {

.dynamicform:has(> .banner.text){
    flex-wrap: wrap;
    flex-direction: column;
}

.banner.text{
  max-width: 100%;
}

.banner.text img {
    margin-top: 28px !important;
    }
}



/*-------------------------
PRIMER CTA
---------------------------*/
.first-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 38px 0;
} 

.first-cta a.btn.black {
    margin-left: 32px;
}

@media (max-width: 768px) {

.first-cta{
flex-direction: column;
}

.first-cta a.btn.black {
    margin-left: 0;
     }

}

/*---------------------------
       VERTICAL CENTER
-----------------------------*/

.dynamicform:has(> .vertical-center) {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 80px 0;
}

.dynamicform:has(> .dos){
    padding-top: 0;
}

@media (max-width: 768px) {

.dynamicform:has(> .vertical-center){
    flex-direction: column;
   }

}


/* ------ BULLETS ------*/

/* El contenedor principal */
.bullets {
  width: 100%;
  padding: 20px;
}

/* La lista (quitamos los puntos por defecto si quieres personalizarlos) */
.bullets ul {
  list-style: none; /* Quitamos el bullet estándar para tener más control */
  padding: 0;
  margin: 0;
}

/* Cada elemento de la lista */
.bullets li {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

/* El nuevo bullet personalizado (un círculo con tu color azul) */
.bullets li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #1C1D1F; 
  border-radius: 50%; 
  margin-right: 15px; /* Espacio entre el punto y el texto */
  flex-shrink: 0; /* Evita que el punto se aplaste si el texto es largo */
}