/* ==========================================================================
   Estilos Principales - OWL System Computers
   Diseño Premium / Glassmorphism y Micro-animaciones
   ========================================================================== */

/* Variables CSS para diseño armónico y adaptativo */
:root {
    --bg-dark: #000000;
    /* Fondo negro puro */
    --card-bg: rgba(20, 20, 20, 0.6);
    /* Ajustado para contrastar con el fondo negro puro */
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-color: #ffd319;
    /* Amarillo/Dorado ojos de búho */
    --accent-hover: #ffc700;
    --accent-blue: #4da6ff;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
}

html {
    scroll-behavior: smooth;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 20px 40px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.png');
    background-size: 72%;
    /* Incrementado un 30% (de 55% a 72%) */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}


/* Capa de oscurecimiento y difuminado de fondo */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 20, 20, 0.35) 0%, #000000 100%);
    z-index: 0;
    /* Colocado detrás de la marca de agua */
}

/* Contenedor Principal */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Encabezado */
.header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Contenedor del Logo con Efecto de Resplandor */
.logo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 211, 25, 0.25) 0%, rgba(255, 211, 25, 0) 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulseGlow 4s infinite alternate ease-in-out;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 12px 24px rgba(255, 211, 25, 0.4));
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.brand-name span {
    color: var(--accent-color);
    margin-left: 8px;
    position: relative;
    display: inline-block;
}

/* Indicador de Estado En Construcción */
.badge-status {
    background: rgba(255, 211, 25, 0.1);
    border: 1px solid rgba(255, 211, 25, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 211, 25, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulseDot 1.5s infinite ease-in-out;
}

/* Tarjeta Principal (Glassmorphic) */
.main-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 50px;
    box-shadow: var(--shadow-premium);
    transform: translateZ(0);
    will-change: transform, backdrop-filter;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

/* Línea decorativa superior */
.main-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Sección Introductoria */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Grid de Misión y Visión */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 211, 25, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 211, 25, 0.1);
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: inset 0 2px 5px rgba(255, 211, 25, 0.1);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.15rem;
    text-align: justify;
}

/* Sección Pilares */
.pillars-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-smooth);
}

.pillar-item:hover {
    transform: translateY(-3px);
    border-color: rgba(77, 166, 255, 0.3);
    /* Acopla un sutil tono azul */
    background: rgba(255, 255, 255, 0.03);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.9;
}

.pillar-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.pillar-item p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sección de Contacto */
.contact-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.contact-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 5px;
}

.contact-links {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 750px;
    justify-content: center;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn i {
    font-size: 2.2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
}

.btn-text strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.btn-text span {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Estilo botón Email */
.email-btn {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.email-btn i {
    color: var(--accent-blue);
}

.email-btn:hover {
    background: rgba(77, 166, 255, 0.08);
    border-color: rgba(77, 166, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(77, 166, 255, 0.1);
}

/* Estilo botón Whatsapp */
.phone-btn {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.phone-btn i {
    color: #25d366;
    /* Verde Whatsapp */
}

.phone-btn:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.1);
}

/* Pie de Página (Footer) Profesional */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    margin-top: 30px;
    color: var(--text-muted);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
}

.links-col ul,
.contact-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.links-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-col li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col i {
    color: var(--accent-color);
    margin-top: 4px;
}

.badge-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--text-main);
}

.sello-badge {
    height: 205px;
    /* Agrandado otro 40% adicional (de 147px a 205px) */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: var(--transition-smooth);
    animation: hoverFloat 4s infinite alternate ease-in-out;
}

.sello-badge:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   Animaciones Keyframes
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    from {
        transform: scale(0.9);
        opacity: 0.4;
    }

    to {
        transform: scale(1.1);
        opacity: 0.75;
    }
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 211, 25, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 211, 25, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 211, 25, 0);
    }
}

@keyframes hoverFloat {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-6px);
    }
}

/* ==========================================================================
/* ==========================================================================
   Menú de Navegación Fijo (Navbar) y Secciones
   ========================================================================== */

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    transform: translateZ(0);
    will-change: transform, backdrop-filter;
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-brand-link:hover {
    transform: scale(1.05);
}

.nav-logo-small {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 211, 25, 0.3));
}

.nav-brand-link span {
    color: var(--accent-color);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255, 211, 25, 0.05);
    border-color: rgba(255, 211, 25, 0.3);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 211, 25, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 211, 25, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(255, 211, 25, 0.2);
}

.page-section {
    padding-top: 80px;
    /* Offset para el navbar fijo al scrollear */
    margin-top: -40px;
    /* Compensación visual */
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.page-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

/* Estilos de la Pestaña de Productos y Clientes */
.products-section,
.clients-section {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 40%, #ffd319 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tab-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid,
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.client-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 211, 25, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Nuevas cartas de productos - Estilo premium e interactivo */
.product-card {
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 211, 25, 0.35); /* Dorado de OWL */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.product-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-category-top {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin-top: 2px;
}

.product-card-image-box {
    width: 100%;
    height: 190px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-image-box {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 211, 25, 0.15);
}

.product-card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-image-box img {
    transform: scale(1.04);
}

.product-card-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.info-grid-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    transition: var(--transition-smooth);
}

.product-card:hover .info-grid-item {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
}

.info-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-value {
    color: var(--accent-color) !important;
}

.delivery-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.delivery-value {
    color: #00ff88 !important;
}

/* Indicador de velocidad de entrega */
.delivery-indicator {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 10px;
    flex-shrink: 0;
}

.delivery-indicator .bar {
    width: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1px;
    transition: var(--transition-smooth);
}

.delivery-indicator .bar:nth-child(1) { height: 4px; }
.delivery-indicator .bar:nth-child(2) { height: 7px; }
.delivery-indicator .bar:nth-child(3) { height: 10px; }

/* Asignaciones de velocidad */
.delivery-indicator.speed-1 .bar:nth-child(1) { background: #00ff88; }
.delivery-indicator.speed-2 .bar:nth-child(1),
.delivery-indicator.speed-2 .bar:nth-child(2) { background: #00ff88; }
.delivery-indicator.speed-3 .bar:nth-child(1),
.delivery-indicator.speed-3 .bar:nth-child(2),
.delivery-indicator.speed-3 .bar:nth-child(3) { background: #00ff88; }

.client-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.product-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.client-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Adaptabilidad Móvil (Responsive)
   ========================================================================== */

@media (max-width: 900px) {
    body::before {
        background-size: 90%;
        /* Ajuste proporcional para tabletas */
    }

    .main-card {
        padding: 40px 30px;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .products-grid,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-links {
        flex-direction: column;
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 600px) {
    body::before {
        background-size: cover;
        background-position: center top;
    }

    body {
        padding: 85px 10px 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        gap: 20px;
    }

    .brand-name {
        font-size: 1.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }

    .brand-name span {
        margin-left: 0;
    }

    .badge-status {
        font-size: 0.65rem;
        padding: 6px 12px;
        text-align: center;
    }

    .logo-wrapper {
        width: 90px;
        height: 90px;
    }

    .main-card {
        padding: 25px 15px;
        gap: 30px;
        border-radius: var(--border-radius-md);
    }

    .intro-section h2 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .tab-title {
        font-size: 1.5rem;
    }

    .tab-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .product-card,
    .client-card,
    .mv-card,
    .pillar-item {
        padding: 25px 20px;
    }

    .contact-btn {
        padding: 12px 15px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .contact-btn i {
        font-size: 1.5rem;
    }

    .btn-text {
        text-align: center;
    }

    .btn-text span {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-col li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .sello-badge {
        height: 140px;
    }
}