/*  css cards vmv */

.card-container {
    display: flex;
    gap: 184px;
    padding-top: 50px; 
    justify-content: center; 
    border-radius: 5px;
    
}

.card {
    background-color: white;
    width: 250px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.card::before {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 8px;
    background-color: #ff9b26; /* Default color */
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Colors for each card */
.card.mission::before {
    background-color: #ff9b26;
}

.card.vision::before {
    background-color: #27c9cc;
}

.card.values::before {
    background-color: #5096ff;
}

.icon {
    font-size: 2em;
    margin-top: 10px;
}

.title {
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}

.description {
    color: #777;
    font-size: 0.9em;
    margin-top: 10px;
}

.step {
    font-weight: bold;
    color: #666;
    margin-top: 15px;
    font-size: 1em;
}


/*  */
.container-box {
    background-color: #256D85;
    padding: 50px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #256D85; 
    
}

/* Logo */ .logo { position: relative; 
    top: 10px; 
    left: 20px; /* Ajusta la distancia del borde derecho */
     width: 300px; /* Ajusta el tamaño según sea necesario */ 
     z-index: 10; /* Asegura que esté por encima de otros elementos */}

body {

margin: 0;
padding: 0;

display: flex;
flex-direction: column;
align-items: center;
}
.section-container {
width: 90%;
max-width: 650px;
margin: 20px 0;
display: flex;
background-color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.icon-section {
flex: 0 0 80px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
font-size: 80px;
color: #003366;
}
.text-section {
flex: 2;
padding: 20px;
color: white;
background-color: #003366;
display: flex;
flex-direction: column;
justify-content: center;
}
.text-section h2 {
font-size: 24px;
margin-bottom: 10px;
}
.text-section p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
text-align: justify;
}
.text-section .signature {
font-style: italic;
font-size: 14px;
margin-top: 10px;
}

/* Estilo del botón de vision vision y  valores */
.button-to-info {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
color: white;
background-color: #256D85;
text-decoration: none;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, transform 0.2s;
}

.button-to-info:hover {
background-color: #003366;
transform: translateY(-3px);
}

