/* ===============================
   ESTILOS GENERALES
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f9fdfc;
    color: #333;
}

/* ===============================
   NAVBAR (Unificado)
=============================== */
header {
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, #ffffff, #daf0e4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

.logo img {
    height: 80px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    text-decoration: none;
    color: #0f5c4c;
    font-weight: 530;
    transition: color 0.3s;
}

.menu li a:hover,
.menu li a.activo {
    color: #000000;
    font-weight: 600;
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
    background: linear-gradient(rgba(0, 150, 136, 0.8), rgba(0, 77, 64, 0.8)), url('../../fundacion/fotos_fundacion/foto1.jpg');
    /* Ajustar ruta de imagen si es necesario */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================
   BLOG / HISTORIA
=============================== */
.blog-section {
    padding: 60px 5%;
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #009688;
    margin-bottom: 40px;
}

.blog-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.blog-image {
    flex: 1;
    min-width: 300px;
}

.blog-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-text {
    flex: 1;
    min-width: 300px;
}

.blog-text h3 {
    font-size: 1.8rem;
    color: #00796b;
    margin-bottom: 20px;
}

.blog-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* ===============================
   PASOS PARA DONAR
=============================== */
.steps-section {
    padding: 60px 5%;
    background: #e0f2f1;
    text-align: center;
}

.steps-section h2 {
    font-size: 2.5rem;
    color: #00796b;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #009688;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    color: #333;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* ===============================
   FORMULARIO DE DONACIÓN
=============================== */
.donation-form-section {
    padding: 60px 5%;
    background: #f9fdfc;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0f2f1;
}

.form-wrapper h2 {
    text-align: center;
    color: #009688;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}

input:focus {
    border-color: #009688;
    outline: none;
}

/* Botones de Monto */
.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amount-btn {
    padding: 12px;
    background: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s;
}

.amount-btn:hover {
    background: #e0e0e0;
}

.amount-btn.selected {
    background: #e0f2f1;
    border-color: #009688;
    color: #00796b;
}

#customAmount {
    grid-column: span 2;
    margin-top: 10px;
}

/* Botón Donar */
.donate-btn {
    width: 100%;
    padding: 15px;
    background: #009688;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.donate-btn:hover {
    background: #00796b;
}

.security-note {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
}

/* ===============================
   FOOTER
=============================== */
footer {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 0;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}