.landing { font-family: 'Roboto', sans-serif; color: #333; background-color: #f4f4f4; }
.header { background-color: #EB5757; color: white; padding-top: 20px; text-align: center;}
.content{padding-left:20px;padding-right:20px;}
h1, h2 { color: #333; }
ul { list-style-type: none; padding: 0;}
li { padding: 8px; }
.footer { background-color: #333; color: white; text-align: center; }
button { background-color: #F2C94C; color: #004B85; border: none; padding: 10px 20px; margin-top: 20px; cursor: pointer; font-size: 16px; border-radius: 5px; }
input[type="text"], input[type="email"], textarea { width: 100%; padding: 8px; margin-top: 6px; border-radius: 4px; border: 1px solid #ccc; }
label { color: #555; }
.feature-icon { color: #F2C94C; }
.cta { background-color: #EB5757; color: white; padding: 20px; text-align: center; }
.certifications { background-color: #f9f9f9; padding: 20px; text-align: center; }
.header img {
    vertical-align: middle;
    margin-right: 15px;
    max-width:100%;
}
.membrete{
    width:50%;
}
        
.personalText {
    font-family: 'Georgia', serif;
    font-style: italic;
    color:black;
}

.complementText {
    width:700px;
    text-align:center;
    color:white;
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-links li {
    margin-bottom: 10px;
    display:inline-block;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.footer-links a img {
    width:200px;
    padding-left:30px;
    padding-right:30px;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.7); 
    animation: fadeIn 0.3s ease-in-out;
    justify-content: center; /* Centra el modal horizontalmente */
    align-items: center; /* Centra el modal verticalmente */
    overflow: hidden;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-in-out;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.close {
    color: #aaa;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.modal-body {
    max-height: 300px;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
    margin-top: 20px;
}

.modal-footer button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-footer .btn-primary {
    background-color: #007bff;
    color: #fff;
}

.modal-footer .btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); }
    to { transform: translateY(0); }
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Ajusta el ancho máximo del carrusel según sea necesario */
    margin: 0 auto; /* Centra el carrusel horizontalmente */
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Espacio entre las columnas */
}



.slider-container2 {
    position: relative;
    height:80px;
    max-width: 800px; /* Ajusta el ancho máximo del carrusel según sea necesario */
    margin: 0 auto; /* Centra el carrusel horizontalmente */
    overflow: hidden;
}

.slider, .slider2 {
    display: flex;
    transition: transform 0.5s ease;
}

.slider img {
    width: 100%;
    height: auto;
}

.slider2 img {
    max-width: 200px;
    margin-left:30px;
    margin-right:30px;
    margin-top:10px;
    height: auto;
    max-height:80px;
}


.slider-container3 {
    
    box-sizing: border-box;
    display: flex;
    margin:auto;
    padding-top: 60px;
}

/* Añadir estilos para el contenedor del slider para alineación vertical */
.slider3 {
    display: flex;
    flex-direction: column; /* Cambia la dirección del flujo a columna */
    align-items: center;
}

.slider3 img {
    width: 100%;
    height: auto;
    max-height:100px;
    max-width: 200px;
    display: block;
}

/* Estilos de las flechas de navegación */
.prev, .next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: black;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}