

/* --- Estructura Principal (Layout) --- */
#corporativo {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    padding-left: 4%;
	font-family: 'Montserrat', sans-serif;
    font-size: 16px; 
    color: #acbcbb;
}

/* El título ocupa el 100% arriba */
.title {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 25px;
    
}

/* Bloque de texto (50%) */
#informacion {
    flex: 0 0 50%;
    width: 50%;
    box-sizing: border-box;
    padding-right: 30px;
}

.butt-link {
    display: inline-block;
    margin-top: 20px;
}

/* --- Contenedor de Grecas (50% a la derecha) --- */
.grecas {
    flex: 0 0 50%;
    width: 50%;
    box-sizing: border-box;
    display: flex;
    margin: 0 0 0 -15px;
    padding: 35px 0 15px;
}

/* Cada columna interna de las grecas */
.grecas > div {
    width: 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
    
    /* CENTRADO HORIZONTAL */
    display: flex;
    justify-content: center; 
    
    /* Animación existente */
    opacity: 0;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: grecas;
    animation-timing-function: linear;
}

/* Ajuste de las imágenes */
.grecas > div figure {
    margin: 0; /* Elimina márgenes por defecto del figure */
    width: 100%;
    display: flex;
    justify-content: center;
}

.grecas > div img {
    display: block;
    width: 80%; /* Tu regla original */
    height: auto;
}

/* Tiempos de animación */
.grecas > div.f2 { animation-delay: 0.6s; }
.grecas > div.f3 { animation-delay: 1.2s; }

@keyframes grecas {
    0% { opacity: 0.3; }
    40% { opacity: 1; }
    60% { opacity: 1; }
    100% { opacity: 0.3; }
}

.butt-link-corporate {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: transparent;
    color: #aaccb7; /* Color similar al título */
    border: 1px solid #728b7c;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.8s ease;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
    #informacion, 
    .grecas {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
    }
    
    .grecas {
        margin-left: 0;
        justify-content: space-around;
        margin-top: 20px;
    }
}