/*.container {
    width: 80%;
    padding: 20px;
}
*/
/*.offer-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
*/
/*.offer-header {
    position: relative;
    display: flex;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
    align-items: center;
}
*/
/*    .offer-header img {
        width: 90px;
        height: 90px;
        border-radius: 8px;
        object-fit: cover;
        margin-right: 15px;
    }*/

.offer-title {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin: 0;
}

.temperature {
    color: #f87171;
    font-size: 1.1rem;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
}
/*
.offer-details {
    padding: 16px;
    line-height: 1.5;
}
*/
.price {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: bold;
}

.store-name {
    font-size: 0.9rem;
    color: #6b7280;
}

.review {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
}

/*.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}
*/
.time {
    font-size: 0.8rem;
    color: #6b7280;
}

.offer-button {
    display: flex;
    align-items: center;
    background-color: #10b981;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size:16px;
    text-decoration: none;
}

    .offer-button svg {
        margin-left: 5px;
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
.event-card {
    /*display: flex;*/
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Ajusta el valor según el espacio que necesites */
}


.date {
    background-color: rgba(255, 109, 0, 0.8); /* Opacidad del 80% */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    font-weight: bold;
    font-size: 14px;
}


    .date span {
        font-size: 14px;
        text-transform: uppercase;
    }

    .date strong {
        font-size: 24px;
    }

.content {
    display: flex;
    padding: 10px;
   
}

    .content img {
        width: 80px;
        height: 80px;
        border-radius: 4px;
        object-fit: cover;
        margin-right: 15px;
    }

.details {
    display: flex;
    flex-direction: column;
}

.category {
    color: #ff6d00;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

    .category.webinar {
        color: #ff6d00;
    }

    .category.workshop {
        color: #ff6d00;
    }

    .category.conference {
        color: #ff6d00;
    }

h3 {
    font-size: 13px !important;
    margin: 5px 0;
    color: #333;
}

p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

#main-image {
    max-width: 100%; /* Hace que la imagen no exceda el ancho del contenedor */
    height: auto; /* Mantiene la proporción */
    width: 300px; /* Ajusta el ancho deseado para dispositivos grandes */
}

@media (max-width: 768px) {
    #main-image {
        width: 100%; /* En dispositivos pequeños, ocupa todo el ancho del contenedor */
    }
    .description {
        font-size: 12px !important;
    }
}

.transparent-button {
    background-color: transparent;
    color: black;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .transparent-button:hover {
        color: orange;
    }
.tabs {
    display: flex;
    flex-wrap: wrap; /* Permite que los botones se envuelvan a una nueva línea en pantallas más pequeñas */
    gap: 1rem; /* Espaciado entre los botones */
    justify-content: center; /* Centra los botones */
}

.tab-link {
    width: 200px; /* Tamaño para pantallas más grandes */
    text-align: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.nav-icon img {
    width: 80px;
    height: auto;
}

@media (max-width: 768px) {
    .tab-link {
        width: 100px; /* Tamaño más pequeño para pantallas medianas */
    }

    .nav-icon img {
        width: 60px; /* Ajuste de tamaño para las imágenes en pantallas medianas */
    }

    .description {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .tab-link {
        width: 80px; /* Tamaño aún más pequeño para pantallas móviles */
    }

    .nav-icon img {
        width: 50px; /* Ajuste de tamaño para pantallas móviles */
    }
    .description {
        font-size: 12px !important;
    }
   
}
.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.real-price {
    color: #888;
}

.discounted-price {
    color: #f00;
    font-weight: bold;
}
/* Imagen principal */
#main-image {
    max-width: 100%;
    height: auto;
    width: 300px; /* Ancho deseado para pantallas grandes */
}

@media (max-width: 768px) {
    #main-image {
        width: 100%;
    }
    .description {
        font-size: 12px !important;
    }
}


.discount-percentage {
    color: #f00;
    font-weight: bold;
    font-size: 1.5rem;
}

.offer-button {
    background-color: #28a745;
    color: white;
    /*padding: 8px 16px;*/
    /*border-radius: 5px;*/
    text-align: center;
    text-decoration: none;
}
.description {
        font-size: 14px !important;
    }
/* Estilos responsivos */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* Diseño en columnas */
    }
    .description {
        font-size: 12px !important;
    }
    .event-card {
        margin: 5px; /* Reduce el margen */
        padding: 10px;
    }

    h3 {
        font-size: 14px;
    }

    .tab-link {
        width: 100px;
    }

    .nav-icon img {
        width: 60px;
    }
    .content img {
        width: 100%; /* Adaptable al contenedor */
        height: auto;
        border-radius: 4px;
        object-fit: cover;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .content img {
        border-radius: 0; /* Elimina bordes redondeados */
    }

    .details {
        font-size: 14px;
    }
    .description {
        font-size: 12px;
    }
    h3 {
        font-size: 12px;
    }

    .tab-link {
        width: 80px;
    }

    .nav-icon img {
        width: 50px;
    }
    .content img {
        width: 100%; /* Adaptable al contenedor */
        height: auto;
        border-radius: 4px;
        object-fit: cover;
        margin-bottom: 10px;
    }
}
footer {
    background-color: #ff6600; /* Fondo anaranjado */
    color: white; /* Texto blanco */
    padding: 20px 0; /* Espaciado */
}

    footer .social-icons a {
        margin: 0 10px;
        color: white;
        font-size: 24px;
        transition: color 0.3s ease;
    }

        footer .social-icons a:hover {
            color: #ffd700; /* Efecto hover: dorado */
        }

    footer p {
        margin: 0;
        font-size: 14px;
        text-align: center;
        color: white;
    }
h2 {
    font-size: 18px !important;
}

.card {
    display: flex;
    flex-direction: column;
    min-height: 300px; /* Ajusta según la cantidad de contenido */
    
}
