/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap");

body {
    font-family: "SUSE", sans-serif;
    font-weight: bold;
    font-size: 15px;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #000;
}

a {
    color: #67c776;
    text-decoration: none;
}
a:hover { color: #e30052; }

h1, h2, h3, h4, h5 { margin: 5px 0; }
h1 { font-size: 32px; color: #67c776; text-align:center; padding:10px; }
h2 { font-size: 20px; color: #67c776; }
h3 { font-size: 18px; }
h4 { font-size: 16px; color: white; }

/* Contenedor principal */
#contenedor {
    padding-top:50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

.contenido{
        padding-top:160px;
}

/* Grid de entradas */
.entradabusca {
    display: grid;
    grid-template-columns: 1fr; /* 1 por defecto móvil */
    gap: 20px;
    width: 100%;
}

/* Tablet */
@media (min-width: 768px) {
    .entradabusca {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PC grande */
@media (min-width: 1024px) {
    .entradabusca {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tarjeta de entrada */
.entrada {
    background-color: #F4F4F4;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-align: center;
    padding: 10px;
    transition: 0.3s;
    font-size: 15px;
}

.entrada:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



/* Imagen dentro de la tarjeta */
.entrada img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
}

/* Botón compra */
.compra {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color:#67c776;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}
.compra:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Audio */
.entrada audio {
    width: 100%;
    margin-top: 10px;
}

/* Precios */
.precio-antes { text-decoration: line-through; color: red; }
.precio { color: #67c776; font-weight: bold; }

/* Alerta */
.alerta {
    padding: 20px;
    font-size: 20px;
    color: #e30052;
    background: black;
    text-align: center;
    border-radius: 8px;
}

/* Responsive móvil */
@media (max-width: 768px) {
    .entrada img { max-width: 100%; }
    .entrada { padding: 8px; font-size: 14px; }
    .compra { font-size: 14px; padding: 8px 10px; }
}
