/* Importación de la tipografía Poppins */
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* Fondo blanco */
    color: #174974;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.header-container {
    width: 100%;
    background-color: #ffffff; /* Fondo blanco */ 
    padding: 40px 0px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.column-left {
    flex-basis: 50%; /* Asigna 50% de ancho a cada columna */
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: left;
    margin: 20px;
}

.column-left h1,
.column-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
}

.column-left p,
.column-left li {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    list-style-type: none; /* Quita el punto de lista */
}

.column-right {
    flex-basis: 50%; /* Asigna 50% de ancho a cada columna */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.column-right img {
    width: 100%; 
    height: auto; 
    max-width: 100%;  
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2a6495; 
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
    text-align: center;    
    width: 70%;  
    justify-content: center; 
    align-items: center;     
}

.btn:disabled {
    background: #e2f2ff; 
}

.btnwhat {
    display: inline-block;
    padding: 10px 15px;
    background-color: #21aa58; 
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
    text-align: center;    
    width: 70%;  
    justify-content: center; 
    align-items: center;     
    z-index: 1;
    -webkit-animation: wiggle 1.5s linear infinite;
    animation: wiggle 1.5s linear infinite;
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    10% {
        -webkit-transform: rotateZ(-3deg);
        transform: rotateZ(-3deg);
    }
    20% {
        -webkit-transform: rotateZ(2deg);
        transform: rotateZ(2deg);
    }
    25% {
        -webkit-transform: rotateZ(-3deg);
        transform: rotateZ(-3deg);
    }
    30% {
        -webkit-transform: rotateZ(1deg);
        transform: rotateZ(1deg);
    }
    35% {
        -webkit-transform: rotateZ(-1deg);
        transform: rotateZ(-1deg);
    }
    40% {
        transform: rotateZ(2deg);
    }
    50% {
        transform: rotateZ(-1deg);
    }
    60% {
        transform: rotateZ(2deg);
    }
    70% {
        transform: rotateZ(-3deg);
    }
    80% {
        transform: rotateZ(1deg);
    }
    90% {
        transform: rotateZ(-1deg);
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
}

/* ... Código CSS existente ... */

.column-right img.imagen-redonda {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
}


@media (max-width: 1020px) {
    .layout {
        flex-direction: column;
        align-items: center;
    }

    .column-right {
        align-items: center;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-container {
        max-width: 100%; /* 100% en móviles */
    }

/* ... Código CSS existente ... */

.column-right img.imagen-redonda {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

}

/* 
* {
  outline: 1px solid red;
}
*/
