/* app_design/css/anuncios.css */

.anuncios-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

#anunciosCarousel .carousel-inner {
    padding: 1rem 0;
}

.anuncio-card {
    position: relative; /* Necesario para posicionar el label */
    border-radius: 0.5rem;
    padding: 1.5rem 2rem;
    margin: 0 auto;
    max-width: 75%;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #dee2e6;
    border-left-width: 5px;
}

.anuncio-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.anuncio-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Etiqueta "Anuncio" */
.anuncio-label {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo blanco sutil */
    color: #6c757d; /* Texto gris */
    padding: 0.2em 0.6em;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10; /* Asegura que esté por encima del contenido */
}


/* --- Esquemas de Color --- */

/* 1. Azul (Info) */
.carousel-item:nth-child(4n + 1) .anuncio-card {
    background-color: #e7f1ff;
    border-left-color: #0d6efd;
}
.carousel-item:nth-child(4n + 1) .anuncio-card h5 { color: #0a58ca; }
.carousel-item:nth-child(4n + 1) .anuncio-card p { color: #3f5a8c; }

/* 2. Verde (Éxito) */
.carousel-item:nth-child(4n + 2) .anuncio-card {
    background-color: #e6f8f0;
    border-left-color: #198754;
}
.carousel-item:nth-child(4n + 2) .anuncio-card h5 { color: #146c43; }
.carousel-item:nth-child(4n + 2) .anuncio-card p { color: #3a634c; }

/* 3. Amarillo (Advertencia) */
.carousel-item:nth-child(4n + 3) .anuncio-card {
    background-color: #fff8e1;
    border-left-color: #ffc107;
}
.carousel-item:nth-child(4n + 3) .anuncio-card h5 { color: #b38600; }
.carousel-item:nth-child(4n + 3) .anuncio-card p { color: #7d6200; }

/* 4. Rojo (Peligro/Urgente) */
.carousel-item:nth-child(4n + 4) .anuncio-card {
    background-color: #fdeaea;
    border-left-color: #dc3545;
}
.carousel-item:nth-child(4n + 4) .anuncio-card h5 { color: #b02a37; }
.carousel-item:nth-child(4n + 4) .anuncio-card p { color: #733138; }


/* Estilo para cuando el anuncio es un enlace */
.anuncio-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.anuncio-link:hover .anuncio-card {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Estilo para los controles del carrusel */
#anunciosCarousel .carousel-control-prev,
#anunciosCarousel .carousel-control-next {
    width: 5%;
}

#anunciosCarousel .carousel-control-prev-icon,
#anunciosCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
}
