/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f7fc;
}

/* ENCABEZADO */
.header {
    text-align: center;
    background: linear-gradient(to right, #005aa7, #0088cc);
    color: white;
    padding: 50px 20px;
}

/* INTRODUCCIÓN */
.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 10%;
    background: white;
    text-align: center;
}

.intro-text {
    flex: 1;
    max-width: 600px;
}

.intro img {
    width: 40%;
    border-radius: 15px;
}

/* HEXÁGONOS */
.hexagon-container {
    text-align: center;
    padding: 50px 5%;
    background: #fff;
}

.hexagon-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hexagon {
    width: 220px;
    height: 250px;
    background: linear-gradient(to bottom, #0088cc, #005aa7);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hexagon img {
    width: 60px;
    margin-bottom: 15px;
}

.hexagon h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hexagon p {
    font-size: 14px;
    padding: 0 10px;
}

/* TESTIMONIOS */
.testimonios {
    text-align: center;
    padding: 50px 10%;
    background: #ececec;
}

.testimonio-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonio-card {
    width: 280px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonio-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.testimonio-card h4 {
    font-size: 18px;
    color: #005aa7;
}

/* IMPACTO CON BARRAS */
.impacto {
    text-align: center;
    padding: 50px 10%;
}

.barras {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.barra {
    width: 150px;
    height: 150px;
    background: #ff5e3a;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.barra h3 {
    font-size: 26px;
    font-weight: bold;
}

.barra p {
    font-size: 14px;
    text-align: center;
}

/* PIE DE PÁGINA */
footer {
 background: #2c2c2c;
 color: white;
 padding: 40px 0;
 text-align: left;
}

.footer-container {
 display: flex;
 justify-content: space-around;
 flex-wrap: wrap;
 max-width: 1200px;
 margin: auto;
}

.footer-section {
 max-width: 300px;
}

.footer-section h3 {
 margin-bottom: 10px;
}

.footer-section p, .footer-section a {
 color: white;
 text-decoration: none;
}

.footer-section ul {
 list-style: none;
 padding: 0;
}

/* Íconos de redes sociales */
.social-icons {
 display: flex;
 gap: 10px;
}

.social-icons a img {
 width: 32px;
 height: 32px;
}

.footer-bottom {
 text-align: center;
 margin-top: 20px;
 border-top: 1px solid gray;
 padding-top: 10px;
}

.footer-bottom a {
 color: white;
 text-decoration: none;
 margin: 0 10px;
}

