/* Importación de las fuentes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Quicksand:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

/* Estilos para la primera sección (donaciones.html) */
#section1 {
    font-family: 'Quicksand', sans-serif;
}

#section1 header {
    background-color: #fff;
    padding: 0; /* Eliminar padding lateral */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

#section1 nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background-color: #fff; /* Añadir fondo para que se vea mejor */
    color: #519259;
}

#section1 .logo {
    width: 255px;
    height: 74px;
    opacity: 1;
}

#section1 nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0; /* Eliminar márgenes */
}

#section1 nav ul li {
    margin: 0; /* Eliminar márgenes */
}

#section1 nav ul li a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 550;
    font-size: 20px;
}

#section1 .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    background: linear-gradient(to right, #2E5D33 80%, #F8CF17 20%);
}

#section1 .text-container {
    flex: 1;
    color: white;
    text-align: left;
    padding: 0px;
}

#section1 .text-container h1 {
    font-size: 2.55em;
    margin-top: 150px;
    margin-left: 30px;
}

#section1 .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section1 .image-container img {
    border-radius: 50%;
    max-width: 350px;
    max-height: 350px;
    margin-top: 150px;
    margin-left: 120px;
}

/* Estilos para la segunda sección (donaciones2.html) */
#section2 {
    font-family: 'Quicksand', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: #064635;
    position: relative; /* Necesario para posicionar la cita */
    margin-top: 0px;
}

#section2 h2 {
    font-size: 44px;
    margin-bottom: 5px;
    margin-right: 120px;
    margin-top: 30px;
}

#section2 hr {
    border: none;
    border-top: 2px solid #064635; /* Ajusta el grosor de la línea aquí */
    margin-bottom: 20px;
    margin-right: 140px;
}

#section2 .donation-content {
    display: flex;
    justify-content: space-between;
}

#section2 .donation-text {
    flex: 1;
    padding-right: 20px;
    max-width: 500px;
}

#section2 .donation-text p {
    line-height: 1.6;
    font-size: 22px;
    margin-top: 0;
    color: #064635;
}

#section2 .payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 235px;
    margin-top: 30px;
}

#section2 .payment-buttons button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

#section2 .payment-buttons .paypal {
    background-color: #ffc439;
}

#section2 .payment-buttons .paypal img {
    height: 20px; /* Ajusta el tamaño de la imagen de PayPal */
    width: auto; /* Mantiene la proporción de la imagen */
}

#section2 .payment-buttons .venmo {
    background-color: #2FD9A9;
    color: white;
}

#section2 .payment-buttons .venmo img {
    height: 20px; /* Ajusta el tamaño de la imagen de Venmo */
    width: auto; /* Mantiene la proporción de la imagen */
}

#section2 .payment-buttons .pay-later {
    background-color: #ffc439;
}

#section2 .payment-buttons .pay-later img {
    height: 18px; /* Ajusta el tamaño de la imagen de Pay Later */
    width: auto; /* Mantiene la proporción de la imagen */
}

#section2 .payment-buttons .debit-credit {
    background-color: #000000;
    color: white;
}

#section2 .payment-buttons .debit-credit img {
    height: 18px; /* Ajusta el tamaño de la imagen de Pay Later */
    width: auto; /* Mantiene la proporción de la imagen */
    margin-right: 5px;
}

#section2 .powered-by {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #666;
}

#section2 .powered-by img {
    height: 14px; /* Ajusta el tamaño de la imagen de "Powered by" */
    width: auto; /* Mantiene la proporción de la imagen */
}

#section2 .logos {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}

#section2 .logos img {
    max-width: 180px;
    max-height: 75px;
}
