body {
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero {
    height: 100vh;
    background: #f5f5f5;
}

.hero h1 {
    color: #0d1b2a;
}

.text-warning {
    color: #c9a24a !important;
}

/* SERVICIOS */
.servicios span {
    color: #c9a24a;
}

.servicio-card {
    padding: 20px;
    border: none;
    background: #0d1b2a;
    color: white;
    border-radius: 10px;
    transition: 0.3s;
}

.servicio-card:hover {
    transform: translateY(-5px);
}

/* CONTACTO */
.contacto {
    background: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

.seccion-full {
    min-height: 100vh;
    min-height: 100dvh; /* 🔥 solución moderna para móviles */
}

/* Alternar colores tipo diseño elegante */
#inicio {
    background: #f5f5f5;
}

#quienes {
    background: white;
}

#servicios {
    background: #0d1b2a;
    color: white;
}

#contacto {
    background: #f8f9fa;
}

/* Títulos */
.titulo-seccion {
    font-size: 3rem;
    font-weight: bold;
}

.titulo-seccion span {
    color: #c9a24a;
}

/* LADO IZQUIERDO */
.servicios-left {
    background: #0d1b2a;
}

/* LADO DERECHO */
.servicios-right {
    background: #f5f5f5;
}

/* ITEMS DE SERVICIO */
.servicio-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    gap: 15px;
    transition: 0.3s;
    height: 100%;
}

.servicio-item:hover {
    transform: translateY(-5px);
}

/* ICONOS */
.icono {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* TEXTO */
.servicio-item p {
    margin: 0;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.seccion-full {
    scroll-snap-align: start;
}

@media (max-width: 768px) {

    .servicios-left, .servicios-right {
        height: auto;
        text-align: center;
    }

    .servicio-item {
        flex-direction: column;
        text-align: center;
    }

    .icono {
        margin-bottom: 10px;
    }
}
.servicios-right .servicio-item p {
    color: #0d1b2a;
}

@media (max-width: 768px) {

    .seccion-full {
        padding-top: 100px; /* espacio para navbar */
        padding-bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Evita que el contenido quede pegado */
    .container, .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

}