/* =========================================================================
   VARIABLES & COLOR PALETTES (Basado en la tarjeta de visita Multiservicios Nairon)
   ========================================================================= */
:root {
    /* Colores Corporativos */
    --color-primary: #122b54;
    /* Azul Escudo Principal */
    --color-primary-light: #183971;
    --color-primary-dark: #0a1730;

    --color-secondary: #d41f27;
    /* Rojo Cerrajería/Escudo */
    --color-secondary-light: #e6222a;
    --color-secondary-dark: #ab171f;

    --color-bg: #f9fafb;
    --color-container: #ffffff;

    --text-color: #334155;
    --text-color-light: #64748b;
    --title-color: #0f172a;
    --white: #ffffff;

    /* Tipografía fluid - Inter (Sans-serif premium ultra legible) */
    --font-family: 'Inter', sans-serif;
    --h1-size: clamp(2.5rem, 5vw, 4rem);
    --h2-size: clamp(2rem, 4vw, 3rem);
    --h3-size: 1.5rem;
    --normal-size: 1rem;
    --small-size: 0.875rem;

    /* Peso Tipográfico */
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;

    /* Z-Index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Radio de Borde / Sombras Glassmorphism */
    --border-rd: 1rem;
    --shadow-soft: 0 4px 20px -2px rgba(18, 43, 84, 0.08);
    --shadow-hover: 0 20px 30px -4px rgba(18, 43, 84, 0.15);

    /* Transiciones fluidas */
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =========================================================================
     RESET Y BASES
     ========================================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--normal-size);
    background-color: var(--color-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================================
     UTILIDADES GENERALES
     ========================================================================= */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.container-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding-block: 7rem 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: var(--small-size);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.section-title {
    font-size: var(--h2-size);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-primary-dark);
    max-width: 600px;
}

/* =========================================================================
     BOTONES
     ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 3rem;
    /* Botón píldora súper premium */
    font-weight: var(--font-semibold);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: #f1f5f9;
}

.shadow-glow {
    box-shadow: 0 10px 25px rgba(212, 31, 39, 0.4);
}

/* =========================================================================
     HEADER & NAVEGACIÓN (Efecto Glassmorphism Scroll)
     ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: transparent;
    transition: var(--transition);
}

.scroll-header {
    background: rgba(255, 255, 255, 0.85);
    /* Glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: var(--z-fixed);
}

.logo-shield {
    color: var(--color-secondary);
    font-size: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-size: 0.7rem;
    font-weight: var(--font-black);
    color: var(--color-primary);
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-bottom {
    font-size: 1.4rem;
    font-weight: var(--font-black);
    color: var(--color-secondary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-primary);
    font-weight: var(--font-medium);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s;
}

.nav-link:hover::after,
.active-link::after {
    width: 100%;
}

.nav-link:hover,
.active-link {
    color: var(--color-secondary);
}

.nav-phones {
    display: flex;
    gap: 1rem;
}

.nav-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================================================
     HERO: DISEÑO IMPACTANTE, MODERNO DE GRADIENTES
     ========================================================================= */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Formas abstractas flotantes estilo blob/Vercel */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 31, 39, 0.15);
    /* Rojo leve */
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(18, 43, 84, 0.12);
    /* Azul leve */
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 204, 0, 0.1);
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(18, 43, 84, 0.05);
    color: var(--color-primary);
    border-radius: 2rem;
    font-weight: var(--font-semibold);
    font-size: var(--small-size);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(18, 43, 84, 0.1);
}

.hero-title {
    font-size: var(--h1-size);
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Cards Flotantes del Hero en lugar de Imagen Plana */
.hero-images {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-rd);
    box-shadow: 0 25px 50px -12px rgba(18, 43, 84, 0.15);
    padding: 2rem;
    position: relative;
}

.main-glass {
    max-width: 320px;
    z-index: 2;
    transform: translateY(-20px);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.glass-header i {
    font-size: 1.5rem;
}

.main-glass h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.main-glass p {
    font-size: var(--small-size);
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.glass-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: var(--font-semibold);
    transition: var(--transition);
}

.glass-btn:hover {
    color: var(--color-secondary);
    gap: 0.75rem;
    /* Efecto flecha se mueve */
}

.secondary-glass {
    position: absolute;
    bottom: -30px;
    right: 20px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    background: var(--color-primary);
    color: var(--white);
    z-index: 1;
    animation: floatCardAlt 8s ease-in-out infinite;
}

@keyframes floatCardAlt {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.secondary-glass i {
    color: #ffd700;
    font-size: 2rem;
}

.secondary-glass p {
    font-weight: var(--font-medium);
    line-height: 1.2;
    margin: 0;
}

/* =========================================================================
     TICKER MARQUEE INFINITO (CINTA)
     ========================================================================= */
.ticker-wrapper {
    background-color: var(--color-primary-dark);
    color: var(--white);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    border-top: 4px solid var(--color-secondary);
    border-bottom: 4px solid var(--color-secondary);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.ticker-content span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
    white-space: nowrap;
}

.ticker-content span i {
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.dot {
    color: var(--color-secondary-light) !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================================
     ABOUT / NOSOTROS (Con Arte Visual CSS)
     ========================================================================= */
.about-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-description {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(212, 31, 39, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: var(--small-size);
    color: var(--text-color-light);
}

/* Abstract visual art in replace of simple image */
.abstract-visual {
    position: relative;
    width: 100%;
    height: 450px;
    background: var(--color-bg);
    border-radius: var(--border-rd);
    overflow: hidden;
}

.av-circle {
    position: absolute;
    border-radius: 50%;
}

.av-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    top: 10%;
    right: 10%;
}

.av-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    bottom: 10%;
    left: 10%;
}

.av-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(18, 43, 84, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.av-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--border-rd);
    text-align: center;
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.av-badge h3 {
    font-size: 3rem;
    color: var(--color-secondary);
    line-height: 1;
}

.av-badge p {
    font-weight: var(--font-bold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* =========================================================================
     SERVICIOS: TARJETAS DINÁMICAS
     ========================================================================= */
.services {
    background-color: var(--white);
}

.services-container {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    background-color: var(--color-bg);
    padding: 0;
    border-radius: var(--border-rd);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-dark);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover .srv-title,
.service-card:hover .srv-description {
    color: var(--white);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: var(--border-rd);
    border-top-right-radius: var(--border-rd);
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.srv-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-top: -3.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    background-color: var(--white);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.srv-red {
    background: rgba(212, 31, 39, 0.1);
    color: var(--color-secondary);
}

.srv-blue {
    background: rgba(18, 43, 84, 0.1);
    color: var(--color-primary);
}

.srv-light {
    background: #e2e8f0;
    color: #475569;
}

.service-card:hover .srv-icon-box {
    background: var(--color-secondary);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.srv-content {
    flex: 1;
    /* Empuja el link abajo */
}

.srv-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.srv-description {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    font-size: var(--small-size);
    letter-spacing: 1px;
    margin-top: auto;
}

.service-card:hover .srv-link {
    color: #ffb3b3;
}

.srv-link i {
    transition: transform 0.3s;
}

.srv-link:hover i {
    transform: translateX(5px);
}

/* =========================================================================
     CTA FINAL
     ========================================================================= */
.cta {
    position: relative;
    padding: 6rem 0;
}

.cta-container {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

/* Círculo decorativo CTB */
.cta-container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta-description {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================================================
     FOOTER
     ========================================================================= */
.footer {
    background-color: var(--white);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-top {
    color: var(--text-color-light);
}

.footer-logo .logo-bottom {
    color: var(--color-primary-dark) !important;
}

.footer-description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color-light);
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--color-secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--text-color-light);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:not(.no-hover):hover {
    color: var(--color-secondary);
}

.footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color-light);
    font-size: var(--small-size);
}

/* =========================================================================
     BOTÓN FLOTANTE WHATSAPP & SCROLL UP
     ========================================================================= */
.fab-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    animation: pulseObj 2s infinite;
    z-index: -1;
}

.fab-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.fab-wrapper:hover .fab-icon {
    transform: scale(1.1);
}

@keyframes pulseObj {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.scrollup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--color-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: var(--z-fixed);
}

.show-scroll {
    opacity: 1;
    pointer-events: auto;
    bottom: 2rem;
}

.scrollup:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px);
}

/* =========================================================================
     ANIMACIONES DE ENTRADA (REVEAL)
     ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
     RESPONSIVE DESIGN (MOBILE MENU)
     ========================================================================= */
@media screen and (max-width: 1024px) {

    .hero-container,
    .about-container {
        gap: 3rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-phones {
        display: none;
    }

    /* Escondemos los botones en el movil para limpiar el header, el FAB de WP hace el trabajo */

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: rgba(255, 255, 255, 0.95);
        width: 80%;
        height: 100vh;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        padding: 6rem 3rem;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: var(--font-bold);
        color: var(--title-color);
    }

    .nav-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }

    /* Show menu class JS */
    .show-menu {
        right: 0;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-images {
        display: none;
    }

    /* Simplifica en móvil para mejor conversión sin cargar la pantalla */

    .services-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-link,
    .footer-link.no-hover {
        justify-content: center;
    }
}