* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", sans-serif;
    background: #ff9447; 
}


/* ===== HERO HEADER ===== */
.hero-header {
    position: relative;
     background: url("fondo2.jpg") center / cover no-repeat;

    height: 600px;
}

/* ===== DEGRADADO ===== */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 132, 0, 0.9) 0%,
        rgba(255, 132, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.0) 55%
    );
    z-index: 1;
}

/* ===== NAV ===== */
.nav {
    position: relative;
    z-index: 2;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    color: #fff;
    font-size: 15px;
}

.nav a {
    color: #fff;
    text-decoration: none;
}

.nav li {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.nav li:hover {
    opacity: 1;
}

/* ===== CONTENEDOR TARJETAS ===== */
.info-bar {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 0 20px;
    z-index: 2;
}

/* ===== TARJETAS ===== */
.box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    width: 300px;

    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
    text-align: center;
}

.box-center {
    width: 380px;
}

/* TEXTO */
.comentario {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

/* ESTRELLAS */
.stars {
    margin-top: 10px;
}

.stars i {
    color: #f5b301;
    font-size: 15px;
}

/* REDES */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.socials a {
    color: #000;
    font-size: 22px;
    transition: transform .2s ease, color .2s ease;
}

.socials a:hover {
    color: #ff8400;
    transform: scale(1.2);
}



/* ================== CATEGORÍAS ================== */
.categorias{
    background:#ff9447;
    padding:80px 20px;
}

.categorias-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.categoria-card{
    position:relative;
    height:420px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.categoria-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.categoria-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding:35px;
    text-align:center;
}

.categoria-overlay h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.btn-categoria{
    background:#ff9447;
    color:#fff;
    padding:12px 35px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-categoria:hover{
    background:#ffa95f;
    transform:translateY(-3px);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .info-bar {
        flex-wrap: wrap;
        justify-content: center;
        bottom: -200px;
    }
    
    
    
}
