:root {
    --primary: #2B2B2B;
    --gris: #939393;
    --secondary: #F43B47;
    --boton-hover: #F81927;
    --celeste: #326ec9;
    --white: #ffffff;
    --border-light: #c3c3c3;
    --tag-economia: #fe9077;
    --tag-expres: #ffdc82;
    --tag-gobierno-sociedad: #b9c5dd;
    --tag-salud: #c6e4fe;
    --tag-educacion: #bae5c7;
    --tag-energia: #FFEFB6;
    --tag-internacional: #FCBDDF;
    --tag-deportes-espectaculos: #C3F0F3;
    --tag-seguridad: #ffd8d8;
}

/* Focus visible para accesibilidad */
:focus-visible {
    outline: 3px solid var(--celeste);
    outline-offset: 2px;
}

.boton-rojo:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

html body {
    font-family: "Rubik", sans-serif;
    font-weight: 300;
    color: var(--primary);
}

main {
    padding-top: 80px;
}

main h1 {
    font-size: 48px;
    font-weight: 400;
}
p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

/* Boton Rojo */
.boton-rojo {
    display: flex;
    background-color: var(--secondary);
    width: 165px;
    padding: 7px 0;
    border-radius: 8px;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    transition: all 300ms ease;
}

.boton-rojo:hover {
    background-color: var(--boton-hover);
}

/* Tableros */
.tableros-container {
    justify-content: space-between;
    padding: 5px;
    gap: 40px 5%;
}

.tablero-preview {
    width: 30%;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tablero-preview .tablero--img {
    position: relative;
    height: 180px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
}

.tablero-preview .tablero--img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.tablero-preview .tablero-icon--lateral {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transform: translateX(100%);
    transition: transform 1s ease 400ms;
    right: 0;
    height: 45%;
    padding: 0%;
    background-color: #ffffff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* Efecto al mostrar el tablero */
.tablero-preview:hover .tablero-icon--lateral {
    transform: translateX(0);
}

/* Efecto al salir el tablero */
.tablero-preview:not(:hover) .tablero-icon--lateral { 
    transition: transform 600ms ease;
    transform: translateX(100%);
}

.tablero-preview .tablero--content h2.tablero--titulo,
.tablero-preview .tablero--content h3.tablero--titulo {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: all 750ms ease;
}

.tablero-preview:hover h3, .tablero-preview:hover h2 {
    color: var(--secondary);
}

.tablero-preview .tablero--content {
    padding-top: 10px;
}

.tablero-preview p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}

.tablero-preview hr + p {
    font-size: 16px;
}

.tablero-preview hr {
    margin: 0.3rem 0;
}

.tablero-preview .tag {
    display: inline-block;
    padding: 2px 10px;
    margin-bottom: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    margin-right: 5px;
}

.tag--economia {
    background-color: var(--tag-economia);
}

.tag--expres {
    background-color: var(--tag-expres);
}

.tag--gobierno-sociedad {
    background-color: var(--tag-gobierno-sociedad);
}

.tag--salud {
    background-color: var(--tag-salud);
}

.tag--educacion {
    background-color: var(--tag-educacion);
}

.tag--energia {
    background-color: var(--tag-energia);
}

.tag--internacional {
    background-color: var(--tag-internacional);
}

.tag--deportes-espectaculos {
    background-color: var(--tag-deportes-espectaculos);
}

.tag--seguridad {
    background-color: var(--tag-seguridad);
}

#tableros-recientes .boton-rojo {
    width: 350px;
    margin: 2rem auto 32px;
}

/* Media Queries */
@media (max-width: 1400px) {
    main h1 {
        font-size: 44px;
    }
    
    p {
        font-size: 18px;
        line-height: 1.66;
    }

    .boton-rojo {
        font-size: 16px;
    }

    /* Tableros */
    .tablero-preview .tablero--img {
        height: 165px;
    }

    .tablero-preview .tablero--titulo {
        font-size: 20px;
        margin-bottom: 0.2rem;
    }

    .tablero-preview p {
        font-size: 16px;
        line-height: 18px;
    }

    .tablero-preview .tag {
        font-size: 14px;
        padding: 2px 8px;
        margin-right: 3px;
    }

    .tablero-preview hr + p {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    main h1 {
        font-size: 40px;
    }

    p {
        font-size: 16px;
    }

    /* Tableros */
    .tableros-container {
        gap: 40px 2%;
    }

    .tablero-preview {
        width: 32%;
    }

    .tablero-preview .tablero--img {
        height: 150px;
    }
}

@media (max-width: 992px) {
    /* Tableros */
    .tablero-preview {
        width: 46%;
    }

    .tablero-preview .tablero--img {
        height: 155px;
    }

    .tablero-preview .tag {
        font-size: 14px;
        padding: 2px 6px;
        margin-right: 1px;
    }
} 

@media (max-width: 768px) {
    .tableros-container {
        gap: 22px 5%;
    }

    .tablero-preview {
        width: 100%;
    }

    .tablero-preview .tablero--img {
        height: 225px;
    }

    .tablero-preview .tag {
        padding: 2px 8px;
        margin-right: 3px;
    }
} 

@media (max-width: 576px) {
    main h1 {
        font-size: 30px;
    }

    /* Tableros */
    .tablero-preview .tablero--img {
        height: 160px;
    }

    .tablero-preview .tablero--titulo {
        font-size: 18px;
    }

    .tablero-preview p {
        font-size: 15px;
    }

    .tablero-preview .tag {
        font-size: 13px;
    }

    .tablero-preview hr + p {
        font-size: 14px;
    }
    
} 
