/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General */
body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background-color: #fff;
}

/* Header */
.site-header {
    background-color: #006400;
    padding: 10px 30px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

/* Menú */
.main-nav {
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #006400;
    font-weight: 600;
}

/* Hero */
.hero-banner {
    background: url('../img/hero.jpg') center/cover no-repeat;
    height: 400px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.hero-banner .btn-hero {
    margin-top: 20px;
    padding: 10px 20px;
    background: #ffffff;
    color: #006400;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

/* Secciones */
.mapa-banner, .luchador-donaciones, .pilares {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.mapa, .banner-abrir, .luchador, .donaciones, .pilar {
    background: #f5f5f5;
    padding: 20px;
    width: 45%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.pilares .pilar {
    width: 30%;
}

/* Súmate */
.sumate {
    text-align: center;
    padding: 50px 20px;
}

.btn-normal {
    margin-top: 20px;
    padding: 10px 20px;
    background: #006400;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Footer */
.site-footer {
    background-color: #CE1126;
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
}

.footer-column ul {
    list-style: none;
    margin-top: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

/* Botón flotante */
.boton-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #006400;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
}