/* =========================
   RESET BÁSICO
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   BODY
========================= */
body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* =========================
   HEADER SUPERIOR
========================= */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

/* LOGO */
.logo img {
    max-height: 80px;
}

/* INFO DE CONTACTO */
.contact-info {
    display: flex;
    gap: 30px;
}

.info-item {
    text-align: right;
}

.info-item span {
    font-weight: bold;
    display: block;
}

.info-item small {
    color: #777;
}

/* =========================
   DIVISOR NARANJA
========================= */
.orange-divider {
    width: 100%;
    height: 6px;
    background-color: #f57c00;
}

/* =========================
   CONTENEDOR PRINCIPAL
========================= */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* TITULO */
.container h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #004d40;
    font-size: 1.8rem;
}

/* =========================
   MISIÓN Y VISIÓN
========================= */
.mision-vision {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
    width: 80px;
    margin-bottom: 15px;
}

.card h2 {
    color: #00695c;
    margin-bottom: 10px;
}

.card p {
    color: #555;
}

/* =========================
   BOTONES EN GRID
========================= */
.grid-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.btn {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #00695c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #004d40;
    transform: translateY(-3px);
}
.contacto-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    background-color: #ffffff; 
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
  }

  .contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  /* Estilo para los iconos de Font Awesome */
  .fa-solid {
    color: #e67e22; /* Color naranja de tu referencia */
    font-size: 2.5rem;
  }

  .texto-info {
    display: flex;
    flex-direction: column;
  }

  .numero {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
  }

  .email {
    color: #1e201d;
    font-size: 0.9rem;
  }
/* Estilo para las etiquetas de descripción (Línea telefónica / Correo electrónico) */
.texto-info small {
    color: #0a0202; /* Un gris claro visible */
    font-size: 0.9rem;
    display: block; /* Asegura que esté en una línea propia */
    margin-top: -2px; /* Ajuste opcional para pegarlo más al número */
}

/* Opcional: Para que el correo y el número tengan el mismo peso */
.numero, .email {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    display: block;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .mision-vision {
        flex-direction: column;
    }

    .grid-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: right;
    }
}

@media (max-width: 500px) {
    .top-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .grid-buttons {
        grid-template-columns: 1fr;
    }
}
