body{
font-family: Arial, sans-serif;
}


.hero {
    height: auto;
    min-height: 90vh;

    background-color: #000; /* ← relleno negro */
    background-image: var(--hero-bg);

    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.edit{
    height: auto;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO dentro del hero */
.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.navbar {
    min-height: 70px;
     background-color: var(--navbar-color) !important;
    overflow: visible; /* PERMITE que el logo sobresalga */
}

.colorTitulo {
    color: var(--navbar-color);
}

.background{
    background-color: var(--navbar-color);
}

h2{
    color: var(--navbar-color) !important;
}

.navbar .nav-link.active {
    color: #ffc107 !important;
    font-weight: 600;
}

/* Contenedor del logo */
.logo-wrapper {
    position: relative;
}

/* Logo grande que sobresale */
.navbar-logo {
    height: 100px;        /* tamaño grande */
    width: auto;
    position: absolute;
    top: -30px;           /* sobresale hacia arriba */
    left: 0;
}

/* Ajuste del texto LIMFUSA */
.logo-wrapper span {
    margin-left: 110px;  /* deja espacio al logo */
}

.hero .titulo{
    color: hsl(234, 100%, 50%);
}


.servicios-wrapper {
    width: 100%;
}

.servicios-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

.servicio-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* Desktop */
    width: 350px;
}

.servicio-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.2rem;
    text-align: center;
}

/* 🔥 MÓVIL REAL: tarjeta gigante */
@media (max-width: 768px) {
    .servicios-row {
        padding: 0; /* sin márgenes */
    }

    .servicio-card {
        width: 100vw;          /* TODA la pantalla */
        max-width: 100vw;
        border-radius: 0;      /* look tipo app */
    }

    .servicio-img {
        height: 55vh;          /* MÁS DE MEDIA PANTALLA */
    }

    .card-body {
        padding: 2rem;
        font-size: 1.1rem;
    }
}


.admin-section {
    width: 100%;
    padding: 60px 20px;  
    margin-bottom: 40px; 
}

.admin-section h2 {
    margin-bottom: 30px;
}

.admin-section {
    background: #f8f9fa;
    border-radius: 12px;
}
