/*============================================================================================*/
/* Your custom styles below */

/* Color negro para el menú principal */
.main-menu ul li a {
    color: #FFFFFF !important;
}

/* Color negro cuando pasa el mouse */
.main-menu ul li a:hover {
    color: #000000 !important;
}

/* Menú activo */
.main-menu ul li.active > a {
    color: #000000 !important;
}

header.header.sticky .main-menu ul li a {
    color: #000000 !important;
}

/* ================================
   HERO (TÍTULO PRINCIPAL)
================================ */
.hero-text-left {
    text-align: left;
}

.hero-text-left h3 {
    font-size: 48px;
    margin-left: 40px;
    margin-bottom: 10px;
  	color: #ffffff
}

.hero-text-left p {
    font-size: 18px;
    margin-left: 40px;
    color: #ffffff;
}

.hero_home,
.hero_single {
    background-image: url("/img/FONDO PRINCIPAL.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.home-categories {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.category-card {
    position: relative;
    width: 260px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay oscuro */
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* Texto */
.category-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #ffffff;
    z-index: 2;
}

.category-text h4 {
    font-size: 18px;
    margin: 0;
  	color: #ffffff
}

.category-text span {
    font-size: 13px;
    opacity: 0.8;
}

/* Hover */
.category-card:hover img {
    transform: scale(1.1);
}

.category-card:hover {
    transform: translateY(-5px);
}