.elementor-kit-34{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-dfc6481:#0A1D37;--e-global-color-2436db2:#FF8801;--e-global-color-036dab8:#A0978E;--e-global-color-ba6e34a:#000000;--e-global-color-5b32f94:#FFFFFF;--e-global-color-d7be001:#B0B5BA;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-ec0a399-font-family:"Source Sans Pro";--e-global-typography-ec0a399-font-weight:600;--e-global-typography-ec0a399-text-transform:uppercase;--e-global-typography-fa10527-font-family:"Roboto";--e-global-typography-fa10527-font-weight:600;}.elementor-kit-34 e-page-transition{background-color:#FFBC7D;}.elementor-kit-34 h1{color:var( --e-global-color-dfc6481 );font-family:"logobold", Sans-serif;}.elementor-kit-34 h2{color:var( --e-global-color-dfc6481 );font-family:var( --e-global-typography-fa10527-font-family ), Sans-serif;font-weight:var( --e-global-typography-fa10527-font-weight );}.elementor-kit-34 h3{color:var( --e-global-color-dfc6481 );}.elementor-kit-34 h4{font-family:var( --e-global-typography-fa10527-font-family ), Sans-serif;font-weight:var( --e-global-typography-fa10527-font-weight );}.elementor-kit-34 h5{color:var( --e-global-color-dfc6481 );font-family:var( --e-global-typography-fa10527-font-family ), Sans-serif;font-weight:var( --e-global-typography-fa10527-font-weight );}.elementor-kit-34 h6{color:var( --e-global-color-dfc6481 );font-family:var( --e-global-typography-fa10527-font-family ), Sans-serif;font-weight:var( --e-global-typography-fa10527-font-weight );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.nixss {
    font-family: "logobold", Sans-serif;
    font-weight: 600;
    color: var(--e-global-color-dfc6481);
    text-transform: uppercase;
}
a {
    font-family: "logobold", Sans-serif;
    font-weight: 600;
    color: var(--e-global-color-dfc6481);
}

/* ===== Timeline General ===== */
.timeline,
.nix-circle-timeline {
    display: flex;
    justify-content: center;
    align-items: center; /* centra los círculos y conectores */
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 2rem 10px;
    background: #fff;
    position: relative;
}

/* ===== Timeline Item ===== */
.timeline-item,
.nix-step {
    position: relative;
    width: 180px;
    max-width: 280px;
    text-align: center;
}

.circle,
.nix-circle {
    width: 180px;
    height: 180px;
    background: #f5f6f7;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    /* animation: pulse 4s infinite linear;*/
}

.circle img,
.nix-icon img {
    width: 120px;
    height: auto;
}

.number,
.nix-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #e4002b;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item h3,
.nix-step h3 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 6px;
}

.timeline-item p,
.nix-step p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444;
}

/* ===== Conectores y flechas ===== */
.arrow,
.nix-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow {
    width: 80px;
    height: 2px;
    background: repeating-linear-gradient(to right, #e4002b 0, #e4002b 8px, transparent 8px, transparent 14px);
    animation: move-line 2s linear infinite;
}

.arrow::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -4px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #e4002b;
    animation: blink 1.5s infinite;
}

/* ===== Animaciones ===== */
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(228, 0, 43, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(228, 0, 43, 0);
    }
}

@keyframes move-line {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

@keyframes move-line-vertical {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 20px;
    }
}

@keyframes blink {
    50% {
        opacity: 0.3;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .timeline,
    .nix-circle-timeline {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .arrow {
        width: 2px;
        height: 60px;
        background: repeating-linear-gradient(to bottom, #e4002b 0, #e4002b 8px, transparent 8px, transparent 14px);
        animation: move-line-vertical 2s linear infinite;
    }

    .arrow::after {
        top: auto;
        bottom: -10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid #e4002b;
    }
}

p {
    font-size: 16px !important;
}

/* Menú secundario inicialmente oculto */
.scroll-only-menu {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

/* Menú secundario visible al hacer scroll */
.elementor-sticky--effects.scroll-only-menu {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Opcional: ocultar top bar y header principal al hacer scroll */
.elementor-sticky--effects ~ .header-top,
.elementor-sticky--effects ~ .header-main {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

body:not(.has-scrolled) .scroll-only-menu {
    opacity: 0 !important;
    transform: translateY(-20px) !important;
    pointer-events: none;
}

/* ✅ Muestra el menú solo cuando el usuario hace scroll */
body.has-scrolled .scroll-only-menu.elementor-sticky--effects {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
} /* ===== NIX Seguridad - Formulario "Únete a NIX" ===== */
.nix-form {
    background: #f6f8fb;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    font-family: "Inter", "Roboto", sans-serif;
}

/* Encabezados */
.nix-form h2,
.nix-form h3 {
    color: #0a1d37;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

/* Etiquetas */
.nix-form .elementor-field-label {
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 6px;
}

/* Campos del formulario */
.nix-form input[type="text"],
.nix-form input[type="email"],
.nix-form input[type="tel"],
.nix-form select,
.nix-form textarea {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #111827;
    transition: all 0.25s ease;
}

/* Enfoque (focus) */
.nix-form input:focus,
.nix-form select:focus,
.nix-form textarea:focus {
    border-color: #0a1d37;
    box-shadow: 0 0 0 3px rgba(10, 29, 55, 0.15);
    outline: none;
}

/* Campo de archivo */
.nix-form input[type="file"] {
    background: #f9fafb;
    border: 1px dashed #9ca3af;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}
.nix-form input[type="file"]:hover {
    border-color: #0a1d37;
    background: #f3f4f6;
}

/* Select (solo una flecha, color corporativo) */
.nix-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #111827;
    transition: all 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230A1D37' viewBox='0 0 20 20'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.06l3.71-3.83a.75.75 0 111.08 1.04l-4.25 4.39a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    padding-right: 40px;
}

/* Quita la flecha nativa */
.nix-form select::-ms-expand {
    display: none;
}

/* Hover y focus del select */
.nix-form select:hover {
    border-color: #0a1d37;
}
.nix-form select:focus {
    border-color: #0a1d37;
    box-shadow: 0 0 0 3px rgba(10, 29, 55, 0.15);
}

/* Botón principal */
.nix-form .elementor-button {
    background: linear-gradient(90deg, #0a1d37, #16325c);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    padding: 14px 28px;
    box-shadow: 0 6px 16px rgba(10, 29, 55, 0.25);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nix-form .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(10, 29, 55, 0.35);
}

/* Mensajes (éxito / error) */
.nix-form .elementor-message {
    border-radius: 10px;
    background: #ecf4ff;
    color: #0a1d37;
    padding: 14px;
    text-align: center;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
    .nix-form {
        padding: 22px;
    }
    .nix-form .elementor-button {
        width: 100%;
    }
}

/* ==========================================================
   NIX Seguridad - Formulario Mini Footer (Compacto y elegante)
   ========================================================== */

.nix-form-mini {
    background: transparent; /* se adapta al color del footer */
    padding: 16px 20px;
    border-radius: 10px;
    font-family: "Inter", "Roboto", sans-serif;
    color: #fff;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

/* Título */
.nix-form-mini h3 {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Texto o descripción breve */
.nix-form-mini p {
    font-size: 13px;
    color: #cdd4e0;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* Campos */
.nix-form-mini input[type="text"],
.nix-form-mini input[type="email"],
.nix-form-mini textarea,
.nix-form-mini select {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: #fff;
    transition: all 0.25s ease;
    margin-bottom: 10px;
}

/* Placeholder más sutil */
.nix-form-mini ::placeholder {
    color: #cdd4e0;
    font-size: 13px;
}

/* Enfoque (focus) */
.nix-form-mini input:focus,
.nix-form-mini textarea:focus,
.nix-form-mini select:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
    outline: none;
}

/* Select con flecha blanca */
.nix-form-mini select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 20 20'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.06l3.71-3.83a.75.75 0 111.08 1.04l-4.25 4.39a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 32px;
}
.nix-form-mini select::-ms-expand {
    display: none;
}

/* Botón con gradiente azul corporativo */
.nix-form-mini .elementor-button {
    width: 100%;
    background: linear-gradient(90deg, #0a1d37, #16325c);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 4px;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(10, 29, 55, 0.3);
    text-transform: uppercase;
}
.nix-form-mini .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(10, 29, 55, 0.4);
}

/* Mensajes (éxito / error) */
.nix-form-mini .elementor-message {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .nix-form-mini {
        padding: 12px 16px;
    }
    .nix-form-mini h3 {
        font-size: 16px;
    }
}

/* Contenedor principal horizontal */
.nix-valor-item {
    display: flex;
    align-items: center;
    /* justify-content: center;*/
    gap: 18px; /* espacio entre imagen y texto */
    text-align: left;
    margin: 20px auto;
}

/* Círculo del icono */
.nix-circle-mini {
    width: 80px;
    height: 80px;
    background: #f5f6f7;
    border-radius: 50%;
    /*margin: 0 auto 18px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.nix-circle-mini img {
    width: 50px;
    height: auto;
}

/* Contenedor principal horizontal */
.nix-valor-item {
    display: flex;
    align-items: center;
    /* justify-content: center;*/
    gap: 18px; /* espacio entre imagen y texto */
    text-align: left;
    margin: 20px auto;
}

/* Círculo del icono */
.nix-circle-mini {
    width: 80px;
    height: 80px;
    background: #f5f6f7;
    border-radius: 50%;
    /*margin: 0 auto 18px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.nix-circle-mini img {
    width: 45px;
    height: auto;
}

.nix-btn .elementor-button {
    width: 100%;
    background: linear-gradient(90deg, #0a1d37, #16325c);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 4px;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(10, 29, 55, 0.3);
    text-transform: uppercase;
}
.nix-btn .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(10, 29, 55, 0.4);
}

.readmore-btn {
    display: inline-block !important;
    background: linear-gradient(90deg, #0a1d37, #16325c) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    box-shadow: 0 6px 16px rgba(10, 29, 55, 0.25) !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.readmore-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(10, 29, 55, 0.35) !important;
    color: #fff !important;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'logobold';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.nixseguridad.com/wp-content/uploads/2025/10/15cf175c170b5f746432934f7a4c94dd.woff') format('woff');
}
@font-face {
	font-family: 'logobold';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.nixseguridad.com/wp-content/uploads/2025/10/Intro-Bold.woff') format('woff');
}
/* End Custom Fonts CSS */