﻿/* === SECCIÓN PRINCIPAL === */
.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 10%;
    align-items: center;
}

    .info h3 {
       
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .info ul {
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .info li {
        margin-bottom: 0.5rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: black !important;
    }

        .info li i {
            color: red !important;
        }

    .info img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

/* === Botones === */
.btn {
    width: 40%;
    padding: 10px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    color: var(--blanco);
    text-align: center;
}

/* === SECCIÓN RIFA === */
.raffle img {
    width: 100%;
    border-radius: 10px;
}

.raffle i {
    color: red !important;
}

.raffle p {
    color: black !important;
    font-size: 1rem !important;
}

/* Botón alineado a la derecha */
.derechaButton {
    display: block;
    margin-left: auto;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .info,
    .raffle {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}
