body {
    font-family: 'Inter Tight', sans-serif;
}

/* COLORES */
.text-pink { color:#D82D81; }
.btn-pink { background:#D82D81; color:#FFF; }
.linea-pink { border-top:4px solid #D82D81; width:40%; }
.titulo-pink { color:#D82D81; font-weight:900; }

/* HERO */
.hero-img {
    height:450px;
    object-fit:cover;
}

@media (max-width:768px){
    .hero-img { height:300px; }
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
    top:0;
    left:0;
}

.bg-light-transparent{
    background:rgba(209,209,209,0.5);
}




/* BOTONES */
.boton-home {
    max-width: 280px;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.boton-home:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* NOTICIAS */
.noticia-img {
    aspect-ratio:16/9;
    object-fit:cover;
    transition: transform 0.3s ease;
}

.noticia-img:hover {
    transform: scale(1.03);
}

.noticia-texto {
    background-color: #D82D81;
    border-bottom: 2px solid #D2D3D5;
    width: 100%;
    
    padding: 12px 10px; /* más aire */
    text-align: center; /* 🔥 centrado */
    
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.noticia-link {
    display:block;
    padding:10px; /* más separación entre cards */
    color:#FFF;
    text-decoration:none;
    font-weight:600;
}

/* mantener color siempre blanco */
.noticia-link,
.noticia-link:visited,
.noticia-link:focus,
.noticia-link:active {
    color: #FFF !important;
    text-decoration: none;
}

/* ❌ sacamos efecto hover de fondo */
.noticia-link:hover {
    color:#FFF;
}

/* AGENDA */
.agenda-img {
    transition: transform 0.3s ease;
}

.agenda-img:hover {
    transform: scale(1.03);
}

/* RESPONSIVE AGENDA */
@media (max-width:768px){
    .fondoAgenda {
        padding: 50px 0;
    }
}


.boton-estilo {
    display: block;
    width: 100%;
    padding: 18px 20px;

    background-color: #D82D81;
    color: #FFF;

    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;

    border-radius: 20px;

    box-shadow: 4px 4px 4px #bfc3c7;

    transition: all 0.2s ease;
}

/* hover */
.boton-estilo:hover {
    transform: translate(3px, 3px);
    box-shadow: 4px 4px 0px #bfc3c7;
    color: #FFF;
}

/* click */
.boton-estilo:active {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px #bfc3c7;
}

/* evitar azul visitado */
.boton-estilo,
.boton-estilo:visited {
    color: #FFF;
    text-decoration: none;
}



/* BOTON DESTACADO */
.boton-destacado {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 20px 20px 20px; /* centrardo ultimo 20px*/
    background-color: #D82D81;
    color: #FFF;

    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 600;

    text-decoration: none;
    border-radius: 40px;

    box-shadow: 0px 0px 0px #bfc3c7; /*sombra de boton*/

    transition: all 0.2s ease;
}

/* ICONO */
.icono-circulo {
    position: absolute;
    left: 15px;

    width: 80px;
    height: 80px;

    background-color: #F28C34; /* naranja */
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
}

.icono-circulo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* TEXTO */
.texto-boton {
    width: 100%;
    text-align: center;
}

/* HOVER */
.boton-destacado:hover {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px #bfc3c7; /*4px 4px 0px #bfc3c7;*/
    color: #FFF;
}

/* CLICK */
.boton-destacado:active {
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px #bfc3c7;
}

/* EVITAR AZUL */
.boton-destacado,
.boton-destacado:visited {
    color: #FFF;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .boton-destacado {
        font-size: 16px;
        padding: 15px 15px 15px 15px; /*ultimo 15 lo centra texto*/
    }

    .icono-circulo {
        width: 65px;
        height: 65px;
        left: 15px;
    }

    .icono-circulo img {
        width: 28px;
    }
}


/* CONTENEDOR TRANSLUCIDO  EN HERO*/
.hero-box {
    background-color: rgba(209, 209, 209, 0.35);
    backdrop-filter: blur(4px); /* 🔥 efecto moderno */
    padding: 12px;
}


/* LINKS TENDENCIAS */
.hero-link {
    color: #FFF;
    text-decoration: none;
    font-family: 'Inter Tight', sans-serif;
}

.hero-link:hover {
    text-decoration: underline;
}

/* HERO BLOQUE GENERAL */
.hero-buscador {
    background: rgba(209,209,209,0.35);
    backdrop-filter: blur(6px);
    border-radius: 12px;
}

/* TITULO */
.hero-label {
    /*background: rgba(209,209,209,0.5);*/
    padding: 4px;
    color: #FFF;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
}

/* BOTON */
.hero-btn {
    background-color: #D82D81;
    color: #FFF;
    border: none;
}

.hero-btn:hover {
    background-color: #c0266f;
}

/* TENDENCIAS */
.hero-tendencias small {
    color: #FFF;
}

/* BADGES */
.hero-badge {
    background-color: rgba(0,0,0,0.3);
    color: #FFF;
    padding: 6px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.hero-badge:hover {
    background-color: #D82D81;
    color: #FFF;
}



#seccionLoader {
    min-height: 200px;
}

#contenidoSeccion h2 {
    color: #D82D81;
    font-family: 'Inter Tight', sans-serif;
}

.btn-login {
    background: linear-gradient(135deg, #D82D81, #b8226a);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    padding: 10px 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(216, 45, 129, 0.3);
}

.btn-login i {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

/* HOVER */
.btn-login:hover {
    background: linear-gradient(135deg, #c02673, #9e1c5c);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(216, 45, 129, 0.4);
}

/* CLICK */
.btn-login:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(216, 45, 129, 0.4);
}

/* ICONO ANIMADO */
.btn-login:hover i {
    transform: translateX(3px);
}

/* DISABLED (para cuando metas loader/login) */
.btn-login:disabled {
    background: #d9a0bd;
    cursor: not-allowed;
    box-shadow: none;
}


/*menu usuarios*/
.dropdown-menu {
    border-radius: 10px;
    border: none;
}

.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    padding-left: 18px;
}

.dropdown-header {
    font-size: 0.9rem;
    color: #6c757d;
}

/*nav*/
.navbar-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.navbar .dropdown-menu {
    border-radius: 10px;
    border: none;
}

.navbar .dropdown-item:hover {
    background-color: #f5f5f5;
}