/* Fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Colores */
    --primary-dark: #05102A;
    --primary-blue: #002B5C;
    --accent-green: #ccf098;
    --accent-green-hover: #8EBF4B;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --bg-dark-gradient: linear-gradient(135deg, #05102A 0%, #081A45 100%);

    /* Tipografía */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Espaciado */
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === ENCABEZADO === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 16, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    display: none;
    /* Subrayado eliminado */
}

.nav-link:hover {
    color: var(--accent-green);
    /* Cambio de color de texto */
}

.whatsapp-btn-header {
    color: #25D366;
    font-size: 24px;
}

/* === SECCIÓN HERO === */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/fondo-abstracto.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 16, 42, 0.9) 0%, rgba(5, 16, 42, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    color: #c9f19a;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

/* Animaciones */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menú Móvil Toggle */
.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* === SECCIÓN DE SERVICIOS === */
.services-section {
    padding: 0 0 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(30 69 186) 0%, rgba(5 16 42 / 0%) 70%), url("../img/Nucleo.svg") center center / cover no-repeat, var(--primary-blue);
    overflow: hidden;
    text-align: center;
}

.services-header {
    background: #ccf098;
    padding: 20px 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.services-header p {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.services-header p strong {
    font-weight: 700;
}

.services-header p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.services-header p strong {
    font-weight: 700;
}

.arrow-indicator {
    display: block;
    margin: 0 auto 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Services Accordion Layout */
.services-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.services-header p {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.services-header p strong {
    font-weight: 700;
}

.services-header p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.services-header p strong {
    font-weight: 700;
}

.arrow-indicator {
    display: block;
    margin: 0 auto 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Layout de Acordeón de Servicios */
.services-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 auto 40px;
    max-width: 600px;
}

.service-accordion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Comportamiento específico para que el ítem superior abra hacia arriba */
.service-accordion-item:first-child {
    flex-direction: column-reverse;
    justify-content: flex-end;
}

.service-accordion-item:first-child .desc-box.show {
    margin: 0 0 15px 0;
    /* Margen inferior en lugar de superior/inferior */
}

/* Estilo específico para el SVG Superior para abrazar el círculo */
.service-accordion-item:first-child .curved-title-svg {
    z-index: 35;
    position: relative;
    pointer-events: auto;
    /* Ensure it is interactive */
    margin-bottom: -110px;
}

/* Asegurar que el texto mismo capture clics */
.curved-title {
    pointer-events: auto;
}

/* Títulos Curvos SVG */
.curved-title-svg {
    width: 600px;
    height: 150px;
    cursor: pointer;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    z-index: 30;
    pointer-events: auto !important;
    display: block;
}

.service-accordion-item:last-child .curved-title-svg {
    margin-top: -90px;
    /* Adjusted to give more space from circle */
}

.curved-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    fill: #ccf099;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease, opacity 0.3s ease;
    /* Added opacity transition */
    text-transform: uppercase;
    letter-spacing: 3px;
}

.curved-title:hover {
    fill: #ffffff;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.curved-title.active {
    fill: #ffffff;
    filter: drop-shadow(0 0 5px var(--accent-green));
}

.curved-title.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Cajas de Descripción (Verde) - Estilo Acordeón */
.desc-box {
    background: #ccf098;
    border-radius: 25px;
    padding: 25px 35px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 35px;
    margin: 0;
    transition: all 0.4s ease;
}

.desc-box.show {
    max-height: 200px;
    opacity: 1;
    padding: 25px 35px;
    margin: 75px 0;
}

/* Base rotation on Desktop */
.wheel-container {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wheel-container.rotate-top {
    transform: rotate(0deg);
}

.wheel-container.rotate-bottom {
    transform: rotate(180deg);
}

/* Keep internal content upright when wheel rotates */
.center-content-wrapper {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-bottom .center-content-wrapper {
    transform: translate(-50%, -50%) rotate(-180deg);
}

.center-title,
.center-desc {
    transition: opacity 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.desc-box p {
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.desc-box p strong {
    font-weight: 700;
}

/* Contenedor de la Rueda */
.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circuit-bg {
    position: absolute;
    width: 700px;
    height: 700px;
    background: url('../img/Trama circulo.svg') no-repeat center center/contain;
    opacity: 0.8;
    z-index: 0;
}

.services-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
    overflow: visible;
}

.svg-btn {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    fill: var(--accent-green);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.svg-btn:hover {
    fill: #ffffff;
    filter: drop-shadow(0 0 15px var(--accent-green));
}

.center-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 350px;
    height: 350px;
    perspective: 1500px;
    /* Required for 3D effect */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.center-content {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.center-content-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Flip Trigger */
.center-content.is-flipped .center-content-inner {
    transform: rotateY(180deg);
}

.center-front,
.center-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: url('../img/Trama circulo.svg') no-repeat center center/cover,
        radial-gradient(circle, #05102A 0%, #002B5C 100%);
    box-shadow: 0 0 60px rgba(0, 43, 92, 0.9),
        0 0 18px rgb(251 248 248 / 60%);
}

.center-back {
    transform: rotateY(180deg);
}

.center-title h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1.4;
    margin: 0;
}

.center-title h3 span {
    font-size: 32px;
    font-weight: 900;
    color: #ccf098;
    display: block;
    margin-top: 8px;
}

.center-desc-display p {
    font-size: 14px;
    color: white;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 769px) {
    .desc-box {
        display: none !important;
        /* Hide side descriptions on Desktop */
    }
}

/* Botón CTA */
.cta-container {
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* === SECCIONES DE FONDO UNIFICADO === */
.unified-background-wrapper {
    background: url('../img/fondo-abstracto-2.jpg') center/cover;
    position: relative;
    z-index: 1;
    background-size: cover;
}

.unified-background-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 16, 42, 0.85);
    /* Capa oscura para toda la sección */
    z-index: -1;
}

/* === SECCIÓN DE PLANES === */
.plans-section {
    padding: 0 0 60px 0;
    background: transparent;
    /* Fondo eliminado para usar el unificado */
}

.plans-header {
    text-align: center;
    background: #ccf098;
    padding: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.titulo_div {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: none;
    margin: 0;
    color: var(--primary-dark);
    font-size: 24px;
    line-height: 1.4;
}

.plans-header h2 {
    /* Estilos ahora manejados por .titulo_div */
    margin: 0;
}

.plans-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px;
}

/* === NUEVA SECCIÓN DE PLANES (Comparativa) === */
.plans-global-info {
    margin: 50px auto;
    text-align: center;
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
}

.global-info-box {
    border: 1.5px solid #ccf098;
    display: inline-block;
    padding: 25px 60px;
    border-radius: 25px;
    background: #002049;
    box-shadow: 0 0 20px rgba(204, 240, 152, 0.1);
}

.global-info-box h4 {
    margin: 0 0 20px 0;
    color: white;
    font-size: 22px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.5px;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}

.feature-item {
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    max-width: 250px;
}

.feature-item:not(:last-child) {
    border-right: 1.5px solid rgba(204, 240, 152, 0.3);
}

.plans-comparison-container {
    padding: 20px 20px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 35px;
    align-items: stretch;
}

.modules-column,
.plan-column {
    background: #002049;
    border: 2px solid #ccf098;
    /* Unified border color and thickness */
    border-radius: 30px;
    padding: 30px 0 40px;
    /* More bottom padding */
    flex: 1 1 330px;
    /* Ensure equal growing and basis */
    max-width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-height: 750px;
    /* Increased minimum height */
}

.plan-column {
    border: 2px solid #ccf098;
    /* Brighter neon border for plans */
    box-shadow: 0 0 30px rgba(204, 240, 152, 0.15);
    z-index: 1;
}

.column-header h3 {
    color: white;
    font-size: 28px;
    /* Slightly smaller to fit better */
    font-weight: 800;
    text-align: center;
    margin: 10px 0 40px;
    font-family: var(--font-heading);
}

.module-items,
.plan-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    /* Space before button */
}

.module-item,
.feature-check {
    height: 60px;
    /* Aligned height */
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 22px;
    font-weight: 500;
    padding: 0 20px;
}

.module-item:first-child,
.feature-check:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module-item {
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.85);
}

.feature-check i {
    color: #ccf098;
    font-size: 22px;
}

.feature-check.empty {
    opacity: 0;
}

.btn-info {
    margin: auto auto 15px;
    /* Pushes to bottom of stretched column */
    background: #ccf098;
    color: #05102A;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-info:hover {
    background: #bce055;
    transform: scale(1.05);
}

/* Mobile Slider Container */
.plans-slider-container {
    display: flex;
    flex: 2;
    /* Still sharing space but wrapper handles items */
}

.plans-slider-wrapper {
    display: flex;
    width: 100%;
    gap: 35px;
    /* Gap between Plan Pyme and Plan Empresa */
}

.plans-nav-btn {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 1024px) {
    .comparison-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .modules-column,
    .plan-column {
        flex: 1 1 300px;
        border-radius: 30px !important;
        border: 2px solid #ccf098 !important;
    }
}

@media (max-width: 768px) {

    .plans-global-info {
        margin: 40px auto 60px;
        /* More space at the bottom */
        padding: 0 10px;
        width: 100%;
    }

    .plans-comparison-container {
        margin: 0 auto;
        padding: 0 10px !important;
        width: 100%;
    }

    .global-info-box {
        padding: 15px 10px;
        width: 100%;
        border-radius: 20px;
    }

    .global-info-box h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .features-grid {
        display: flex;
        /* Force flex */
        flex-direction: row;
        /* Force horizontal */
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0 5px;
        /* Tiny bit of breathing room */
    }

    .feature-item {
        font-size: 11px;
        /* Small enough to fit 3 in a row */
        padding: 0 5px;
        /* Extremely tight padding */
        flex: 1 1 0;
        /* Force exactly equal width columns */
        max-width: none;
        word-break: break-word;
        /* Allow break in words if needed but stay horizontal */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .feature-item:not(:last-child) {
        border-right: 1px solid rgba(204, 240, 152, 0.3);
    }

    .comparison-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0;
        overflow: visible;
        width: 100%;
        padding: 0;
    }

    .modules-column {
        flex: 0 0 120px;
        /* Balanced between 95px and 150px to leave space for plan columns */
        border-radius: 20px 0 0 20px !important;
        padding-bottom: 40px;
        min-height: auto;
        border: 2px solid #ccf098 !important;
    }

    .column-header {
        height: 80px;
        /* Standardized height for perfect alignment */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .column-header h3 {
        font-size: 14px;
        margin: 0;
        line-height: 1.2;
    }

    .module-item {
        font-size: 13.5px;
        font-weight: 900;
        /* Made extra bold to not get lost */
        padding: 0 2px;
        /* Reduced horizontal padding */
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .plans-slider-container {
        display: flex;
        flex: 1;
        overflow: visible;
        position: relative;
    }

    .plans-slider-wrapper {
        display: flex;
        width: 100%;
        gap: 0;
        overflow: visible;
    }

    .plan-column {
        flex: 1;
        max-width: none;
        border-radius: 0 !important;
        scroll-snap-align: none;
        padding-bottom: 40px;
        min-height: auto;
        margin-left: -1px;
        /* Overlap borders */
        border: 2px solid #ccf098 !important;
        /* Unified thickness on mobile */
    }

    .plan-column#plan-empresa {
        border-radius: 0 20px 20px 0 !important;
    }

    .plan-column .column-header h3 {
        font-size: 14px;
        margin: 0;
        padding: 0 5px;
        /* Restored minimal padding to prevent border touching */
        line-height: 1.2;
    }

    .feature-check {
        height: 50px;
        /* Matches module-item */
    }

    .feature-check i {
        font-size: 14px;
    }

    .btn-info {
        padding: 6px 12px;
        font-size: 10px;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .plans-nav-btn {
        display: none !important;
    }
}

/* === SECCIÓN DE SOPORTE === */
.support-section {
    padding: 80px 0;
    position: relative;
    text-align: left;
    background: transparent;
    /* Fondo unificado */
}

.support-content {
    position: relative;
    z-index: 2;
}

.support-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.support-text {
    flex: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    /* Ligeramente más pequeño para texto más largo */
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #ccf198;
    /* Cambiado a todo verde como se solicitó */
    text-transform: none;
}

.section-title .highlight-text {
    color: var(--accent-green);
    font-weight: 800;
}

.support-check-list {
    list-style: none;
    padding: 0;
}

.support-check-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-white);
}

.support-check-list li i {
    color: var(--text-white);
    /* Alinear con texto arriba */
    color: white;
}

/* Nuevo Ícono de Soporte */
.support-icon {
    flex: 0 8 569px;
    /* Ancho fijo para contenedor de ícono */
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-icon i {
    font-size: 200px;
    /* Ícono grande */
    color: transparent;
    -webkit-text-stroke: 4px white;
    /* Efecto de contorno */
    opacity: 0.8;
}

.support-icon img {
    width: 228px;
    /* Mucho más pequeño según lo solicitado */
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    /* Hacer ícono blanco */
}

/* === SECCIÓN DE HARDWARE (Anteriormente Productos) === */
.hardware-section {
    padding-bottom: 80px;
    background: linear-gradient(180deg, #0030d0, #002eb8);
    /* Azul de Marca */
}

.products-banner {
    background: #ccf098;
    padding: 12px 0;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.products-banner h2 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.hardware-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(5, 16, 42, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.icon-circle img {
    max-width: 60%;
    /* Tamaño aumentado */
    max-height: 60%;
}

.hardware-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hardware-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hardware-item {
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
}

/* === SECCIÓN DE RESULTADOS (Anteriormente Estadísticas) === */
.results-section {
    padding: 0 0 80px 0;
    background: linear-gradient(180deg, #002eb8, #00235b);

}

.results-header-strip {
    background: #05102A;
    /* Encabezado Oscuro */
    padding: 30px 0;
    text-align: center;
    margin-bottom: 60px;
}

.results-header-strip h3 {
    color: #cbf38a;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.result-item {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-number {
    font-size: 48px;
    /* Reducido de 64px */
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
}

.result-item p {
    font-size: 14px;
    /* Ligeramente más pequeño para balance */
    font-weight: 700;
    color: white;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* === SECCIÓN DE CLIENTES === */
.clients-section {
    padding: 80px 0;
    background: #002B5C;
    /* Azul de Marca */
    text-align: center;
}

.clients-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 50px;
    color: var(--accent-green);
    font-weight: 700;
}

.clients-section h2 span {
    color: #ffffff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    /* Blanco */
    transition: 0.3s;
}

.client-logo:hover img {
    opacity: 1;
}

/* === SECCIÓN DE CONTACTO === */
.contact-section {
    padding: 0 0 60px 0;
    background: #d6e6f2;
}

.contact-header {
    background: #d6e6f2;
    padding: 25px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-header p {
    color: var(--primary-dark);
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
    width: 659px;
    margin: auto;
}

.contact-header p strong {
    font-weight: 700;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #ffffff;
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 43, 92, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary-dark);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }
}

/* === PIE DE PÁGINA (Diseño Específico) === */
.site-footer {
    background: #05102A;
    /* Azul muy oscuro de marca */
    color: white;
    padding: 40px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Columnas Izquierda y Derecha */
.footer-left,
.footer-right {
    flex: 1;
    font-size: 11px;
    opacity: 0.7;
    white-space: nowrap;
}

.footer-right {
    text-align: right;
}

/* Columna Central */
.footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
}

/* Navegación (Fila Superior) */
.footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    /* Negrita */
    font-size: 14px;
    transition: color 0.3s;
    text-transform: none;
    /* Título normal, no mayúsculas */
}

.footer-nav a:hover {
    color: var(--accent-green);
}

/* Divisor Horizontal */
.footer-divider-horizontal {
    width: 100%;
    max-width: 600px;
    height: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Fila de Contacto (Fila Inferior) */
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #e0e0e0;
}

.footer-info i {
    font-size: 14px;
    color: white;
    width: 16px;
    text-align: center;
}

/* Divisor Vertical */
.footer-divider-vertical {
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Redes Sociales */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--accent-green);
    transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-center {
        margin: 0;
        width: 100%;
    }

    .footer-left,
    .footer-right {
        white-space: normal;
        text-align: center;
        flex: 0 0 auto;
    }

    .footer-nav {
        gap: 15px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 15px;
    }

    .footer-divider-vertical {
        display: none;
    }

    .footer-info {
        flex-direction: column;
        gap: 10px;
    }

    .footer-divider-horizontal {
        width: 80%;
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo img {
        height: 35px;
        width: auto;
    }

    .hero {
        height: 70vh;
        min-height: auto;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-header h2 {
        font-size: 18px;
    }

    .services-header {
        padding: 15px 15px;
    }

    .wheel-container {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }

    .center-content {
        width: 250px;
        height: 250px;
        padding: 15px;
    }

    .center-content p {
        font-size: 11px;
    }

    .cta-container {
        margin-top: 40px;
        padding: 20px;
        font-size: 15px;
    }

    .contact-header {
        padding: 25px 20px;
        /* Reduced side padding */
    }

    .contact-header p {
        width: 100%;
        /* Override fixed width */
        font-size: 16px;
        /* Slightly smaller if needed */
    }

    .titulo_div {
        font-size: 18px;

    }

    /* Removed duplicate .features-grid that was forcing column layout */

    .support-content {
        flex-direction: column;
        text-align: center;
    }

    .support-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .support-icon {
        margin-bottom: 40px;
        flex: 0;
    }

    .support-icon img {
        width: 90px;
        height: auto;
    }

    .support-text .section-title {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .support-check-list li {
        font-size: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .support-check-list {
        text-align: left;
        display: inline-block;
        margin-top: 10px;
        margin-left: 15px;
    }

    .products-banner h2 {
        font-size: 18px;
        padding: 20px;
    }

    .hardware-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .clients-section h2 {
        font-size: 20px;
    }

    .results-header-strip h3 {
        font-size: 20px;

    }

    /* === MOBILE SERVICES LAYOUT FIX === */
    .services-layout {
        gap: 0 !important;
        margin-bottom: 0px;
        transform: scale(0.9);
        justify-content: center;
    }

    /* Reset SVG Margins & Size */
    .curved-title-svg {
        margin: 0 auto !important;
        width: 100%;
        max-width: 350px;
        height: auto;
        display: block;
    }

    /* Top Item - Text above wheel */
    .service-accordion-item:first-child {
        flex-direction: column-reverse;
        margin-bottom: -20px;
        /* Reduced from -60px */
        z-index: 20;
    }

    .service-accordion-item:first-child .curved-title-svg {
        margin-bottom: -70px !important;
    }

    .service-accordion-item:first-child .desc-box.show {
        margin: 0 0 20px 0;
    }

    /* Bottom Item - Text below wheel */
    .service-accordion-item:last-child {
        margin-top: -20px;
        /* Reduced from -60px */
        z-index: 20;
    }

    .service-accordion-item:last-child .curved-title-svg {
        margin-top: -50px !important;
    }

    /* Wheel Container */
    .wheel-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        z-index: 10;
    }

    .center-content-wrapper {
        width: 250px;
        height: 250px;
    }

    /* === HORIZONTAL OVERFLOW FIX === */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .services-header {
        width: calc(100% + 40px);
        margin-left: -20px;
        border-radius: 0;
        margin-bottom: 20px;
    }

    header {
        width: 100%;
        max-width: 100vw;
    }

    .wheel-container {
        max-width: 100%;
        overflow: hidden;
    }
}

/* === SCROLL FADE IN ANIMATION === */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.whatsapp-float:hover {
    transform: scale(1.15);
    /* Grow effect */
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .desktop-version {
        display: none !important;
    }

    .mobile-version {
        display: block !important;
    }

    .support-section {
        padding-top: 40px !important;
    }
}

/* === RESPONSIVE UTILITIES === */
.mobile-version {
    display: none;
}

.desktop-version {
    display: block;
}