/* /assets/css/main.css */

/* Reset simple */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #050608;
    color: #f8f9fa;
    padding-top: 70px; /* altura navbar fixed */
}

/* NAVBAR GLASS */
.navbar-glass {
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(16px);
}

/* HERO */
.hero-section {
    min-height: 90vh;
    position: relative;
    background: #050608 url('../img/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 123, 255, 0.65), transparent 60%),
                linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.95));
}

/* Elevar el contenido sobre el overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Badge pills en hero */
.hero-badges .badge-pill {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.35);
}

/* Tarjeta de formulario en hero */
.hero-card {
    background: rgba(8, 8, 10, 0.94);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Secciones */
.section-title {
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Servicio cards */
.service-card {
    background: linear-gradient(145deg, #111317, #050608);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.12);
    color: #0d6efd;
    font-size: 1.3rem;
}

/* Cards info */
.info-box {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

#clientes .client-card {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.15), #050608);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logos proveedores */
.proveedor-logo {
    max-height: 60px;
    opacity: 0.85;
    transition: opacity .2s ease, transform .2s ease;
}

.proveedor-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Sección WhatsApp */
.bg-whatsapp {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

/* Footer */
footer.bg-black {
    background-color: #000;
}

/* Formularios */
.form-control,
.form-select {
    border-radius: 0.75rem;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Responsivo */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }
}
