/* ==========================================================================
   SECCIONES HIGHLIGHT (Gaming, Hardware, etc.)
   ========================================================================== */

.highlight-section {
    width: 100%;
    max-width: 1280px;
    height: 400px;
    margin: 0px auto 30px; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5), 
    0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-content {
    position: relative;
    z-index: 2;
    padding-left: 60px;
    max-width: 640px;
    color: #ffffff; 
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-content .titulo {
    font-family: 'Audiowide', sans-serif; /* Consistencia con el carrusel */
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.highlight-content .texto {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* ==========================================================================
   AJUSTE DE BOTÓN TUX (Para que mida 40px exactos en estas secciones)
   ========================================================================== */

.highlight-content .btn-tux-base {
    padding: 0 24px !important; /* Quitamos padding vertical para que no sume altura */
    min-width: 150px;           /* Le damos un poco más de presencia */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}