.page-header,
.main-container{
	display: none;
}


/* Configuraciones Generales */
:root {
    --primary-color: #20315C; /* Azul institucional */
    --accent-color: #DBA514;  /* Dorado elegante */
    --text-color: #333;
    --bg-light: #f9f9f9;
}

/*body {
    font-family: 'Quetzalli Sans', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
}*/

.container_co {
		font-family: 'Arial', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

/* Header */
.hero-section {
		
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 50px;
    
}

/* Tarjetas de Información */
.info-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 100px;
    opacity: 0; /* Invisible al inicio */
    transform: translateY(50px); /* Desplazado hacia abajo */
    transition: all 0.8s ease-out;
}

.info-card.reverse {
    flex-direction: row-reverse;
}

.image-box img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.content-box {
    flex: 1;
}

.content-box h2 {
    color: var(--primary-color);
    font-size: 3.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-box p {
		font-family: 'Quetzalli Sans', sans-serif;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Botón Redondeado */
.btn-round {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-round:hover {
    background-color: #b8962d;
}

/* Clase que activa la animación */
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .info-card, .info-card.reverse {
        flex-direction: column;
        text-align: center;
    }
}