/* Estilos generales para limpiar márgenes por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Contenedor principal de la cabecera */
.main-header {
    background-color: #a4beff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* El contenedor principal hereda la estética del header */
.main-content {
    background-color: #a4beff;
    min-height: 80vh;          /* Asegura que el contenido ocupe casi toda la pantalla */
    padding: 40px 20px;        /* Espaciado interno para que el texto no toque los bordes */
}

/* Alineación interna con Flexbox */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.section {

}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    /*background: #FFF;*/
}

/* Control del tamaño del logo */

/* --- Control del logo para pantallas grandes (Computadoras) --- */
.logo-img {
    height: 100%;    /* Ajusta aquí la altura máxima que desees para PC */
    width: auto;     /* Mantiene la proporción de aspecto original */
    max-width: 100%; /* Evita que se desborde de su contenedor */
    display: block;
    transition: height 0.3s ease; /* Transición suave al cambiar de tamaño */
}

/* --- Ajustes exclusivos para Pantallas de Celulares (Mobile) --- */
@media (max-width: 768px) {
    
    /* 1. Forzamos a que el contenedor se ordene en filas/renglones diferentes */
    .header-container {
        flex-direction: column; 
        gap: 15px;         /* Espacio de separación entre el logo y el menú */
        padding: 15px 10px;
        text-align: center;
    }

    .site-container {
        background-color: #FFF;
    }

    /* 2. Reducimos el tamaño del logo grande para que no ocupe toda la pantalla */
    .logo-img {
        height: 70px;       /* Ajusta esta altura a tu gusto para móvil */
        margin: 0 auto;     /* Centra el logo horizontalmente */
    }

    /* 3. Ajustamos el menú para que se distribuya de forma limpia en su propio renglón */
    .main-nav ul {
        justify-content: center; /* Centra los enlaces de navegación */
        gap: 15px;              /* Reduce un poco el espacio entre enlaces en móvil */
        flex-wrap: wrap;        /* Si son muchos enlaces, bajan de renglón sin romperse */
    }
    
    .main-nav a {
        font-size: 0.9rem;      /* Hace el texto un poco más cómodo para pantallas táctiles */
    }
}


/* Estilos del menú de navegación */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Separación entre los enlaces */
}

.main-nav a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Efecto visual al pasar el cursor */
.main-nav a:hover {
    color: #007bff; /* Color azul al pasar el mouse */
}

/* Sección de Servicios */
.services-section {
    padding-bottom: 60px;
    padding-top: 20px;
}

.services-title {
    text-align: center;
    font-size: 2rem;
    color: #333333;
    background: #FFF;
    width: 100%;
    margin: 40px auto 40px auto;
    padding: 20px 0px 20px 0px;
}

/* Configuración de la cuadrícula responsiva */
.services-grid {
    width: 100%;
    margin: auto;
    display: grid;
    /* Crea columnas de mínimo 300px; si no caben, bajan de fila automáticamente */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Espacio de separación entre las cajas */
}

/* Diseño de cada caja rectangular */
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Sombra suave */
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empuja el botón siempre hacia abajo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto al pasar el mouse sobre la caja */
.service-card:hover {
    transform: translateY(-5px); /* Eleva la tarjeta sutilmente */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.35rem;
    color: #222222;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Diseño del botón "Conocer más" */
.btn-more {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: #007bff; /* Color azul igual al hover del menú */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

/* Efecto al pasar el mouse sobre el botón */
.btn-more:hover {
    background-color: #0056b3; /* Azul más oscuro */
}

/* Contenedor que recorta y da forma a la imagen */
.service-image-container {
    width: 100%;
    /*height: 80%;*/ /* Define una altura fija idéntica para todas las fotos */
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Control estricto de la imagen */
.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta y adapta la imagen sin deformarla ni estirarla */
    transition: transform 0.3s ease;
}

/* Efecto opcional: la imagen hace zoom suave cuando pasas el mouse por la tarjeta */
.service-card:hover .service-card-img {
    transform: scale(1.05);
}

/* --- Ajustes exclusivos para Pantallas de Celulares (Mobile) --- */
@media (max-width: 768px) {
    
    .main-content {
        padding: 0;
    }
    /* Removemos los bordes, sombras y fondos extras de las tarjetas */
    .services-grid .service-card {
        border: none;             /* Elimina el borde gris fino */
        box-shadow: none;         /* Elimina la sombra de fondo */
        background-color: transparent; /* Hace que se fusione con el fondo general */
        padding: 15px 0;          /* Reduce el espaciado para aprovechar la pantalla */
    }

    /* Opcional: Quitamos el efecto de elevación al pasar el dedo en celular */
    .services-grid .service-card:hover {
        transform: none;
        box-shadow: none;
    }
}


/* Contenedor de la grilla secundaria */
.services-grid-secondary {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
}

/* Tarjeta completamente nueva estructurada en fila */
.service-card-row {
    display: flex !important;
    flex-direction: column !important; /* Ahora que es solo texto, fluye mejor verticalmente por tarjeta */
    align-items: flex-start !important;
    justify-content: space-between; /* Mantiene los botones alineados abajo si los textos varían de tamaño */
    padding: 24px;
    background-color: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    min-height: 180px; /* Le da una altura uniforme a todas las cajitas compactas */
    box-sizing: border-box;
}

/* Contenedor de la imagen forzado a la izquierda */
.service-image-container-side {
    width: 90px !important;
    height: 90px !important;
    flex-shrink: 0 !important; /* Evita que el flexbox aplaste el círculo */
    border-radius: 50%;
    overflow: hidden;
    margin: 0 !important;
}

.service-image-container-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenedor de textos alineados a la izquierda */
.card-horizontal-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
    height: 100%;
}

.card-horizontal-content h3 {
    font-size: 16px !important;
    margin: 0 0 6px 0 !important;
    font-weight: 700;
    color: #111111;
}

.card-horizontal-content p {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #666666 !important;
    margin: 0 0 12px 0 !important;
}

/* Botón secundario compacto */
.btn-more-small {
    background: transparent;
    border: 1px solid #cccccc;
    color: #444444;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-more-small:hover {
    background-color: #00bcd4; /* Tu celeste WebZero */
    border-color: #00bcd4;
    color: #ffffff;
}

/* RESPONSIVE: Control estricto en pantallas medianas y chicas */
@media (max-width: 992px) {
    .services-grid-secondary {
        grid-template-columns: 1fr; /* Se apilan en una sola columna */
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .service-card-row {
        flex-direction: column !important; /* En celulares muy chicos vuelve a ser vertical para que no se rompa el texto */
        text-align: center !important;
        padding: 16px;
    }
    .card-horizontal-content {
        align-items: center !important;
        text-align: center !important;
        margin-top: 10px;
    }
}




.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

/* Clase que añadiremos con JS para mostrarlo */
.modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Ajustes sobre tu contenedor base */
.modal-content {
    position: relative; /* Asegura la posición del botón de cierre */
    padding: 32px 24px 24px 24px;
    text-align: left; /* Alineación limpia para lectura */
    font-family: sans-serif;
}

/* Encabezado */
.modal-header-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #eef2f5;
    padding-bottom: 12px;
}

.modal-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00bcd4; /* Color celeste/azul de WebZero */
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.modal-content h3 {
    margin: 0;
    font-size: 24px;
    color: #111111;
    font-weight: 700;
}

/* Contenido Principal */
.modal-lead {
    font-size: 17px;
    font-weight: 600;
    color: #00bcd4; /* Color de acento de tu marca */
    line-height: 1.4;
    margin-bottom: 14px;
}

.modal-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

/* Caja de Beneficio */
.modal-benefit-box {
    background-color: #f8f9fa;
    border-left: 4px solid #00bcd4;
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00bcd4;
    display: block;
    margin-bottom: 2px;
}

.modal-benefit-box p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

/* Área del botón */
.modal-action-area {
    display: flex;
    justify-content: flex-end;
}

.modal-btn-cta {
    background-color: #111111; /* Negro o color principal de WebZero */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.modal-btn-cta:hover {
    background-color: #00bcd4; /* Cambia al celeste en el hover */
    color: #ffffff;
}



/* Contenedor general de la sección */
.testimonials-section {
    background-color: #ffffff;
    font-family: sans-serif;
    margin-top: 40px;
}

.testimonials-container {
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Encabezado */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00bcd4; /* Celeste WebZero */
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.testimonials-header h2 {
    font-size: 2.2rem;
    color: #111111;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.testimonials-header p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

/* Grilla Responsiva */
.testimonials-grid {
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Tarjeta de Testimonio */
.testimonial-card {
    background-color: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px 30px 30px 30px;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

/* Detalle estético de comillas */
.testimonial-quote-icon {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(0, 188, 212, 0.15); /* Celeste WebZero con opacidad sutil */
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

/* Texto de la opinión */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

/* Autor del testimonio */
.testimonial-author {
    border-top: 1px solid #eaeaea;
    padding-top: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: #111111;
    font-weight: 700;
}

.author-info span {
    font-size: 0.8rem;
    color: #777777;
    margin-top: 2px;
}

/* Brands section */

.brands-section {
    padding-bottom: 80px;
    background-color: #FFF;
    padding-top: 40px;
}

/* RESPONSIVE: Adaptaciones para celulares */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    .testimonials-header h2 {
        font-size: 1.8rem;
    }
    .testimonial-card {
        padding: 30px 24px 24px 24px;
    }
    .services-section {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 40px;
    }
}




/* Estilos principales del Footer Premium */
.main-footer {
    background-color: #0d0f12; /* Fondo oscuro moderno, más profundo que el gris previo */
    color: #ffffff;
    padding-top: 60px;
    font-family: sans-serif;
    border-top: 1px solid #1a1f26;
}

/* Distribución de columnas limpia mediante CSS Grid */
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 50px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    box-sizing: border-box;
}

/* Estilos de los títulos con línea decorativa sutil */
.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: #ffffff; 
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #00bcd4; /* Detalle visual en el celeste de WebZero */
}

/* Párrafo descriptivo */
.footer-col p {
    font-size: 0.9rem;
    color: #94a3b8; /* Gris azulado suave que reduce la fatiga visual */
    line-height: 1.6;
    margin: 0;
}

/* Listas de navegación y contacto */
.footer-links, .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Enlaces con microinteracción de deslizamiento lateral sutil */
.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00bcd4; /* Cambia al celeste de tu marca */
    transform: translateX(4px); /* Pequeño desplazamiento hacia la derecha al pasar el mouse */
}

/* Estructura para los datos de contacto interactivos */
.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 2px;
}

.contact-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #00bcd4;
}

.contact-text {
    color: #e2e8f0;
    font-weight: 500;
}

/* Barra inferior de derechos reservados */
.footer-bottom {
    background-color: #07080a; /* Fondo aún más oscuro para separar la sección */
    padding: 24px 0;
    border-top: 1px solid #1a1f26;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    letter-spacing: 0.3px;
}

/* RESPONSIVE: Ajustes finos para pantallas móviles */
@media (max-width: 480px) {
    .main-footer {
        padding-top: 40px;
    }
    .footer-grid {
        gap: 30px;
        padding-bottom: 30px;
    }
    .footer-col h3 {
        margin-bottom: 16px;
    }
}



/* Contenedor del componente en la esquina */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5000; /* Asegura quedar por encima de cualquier otro elemento */
    font-family: Arial, sans-serif;
}

/* Botón flotante circular */
.whatsapp-toggle-btn {
    background-color: #25D366; /* Verde oficial */
    color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    /* Centrado perfecto del nuevo SVG */
    display: flex;
    justify-content: center;
    align-items: center;
    
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Efecto de salto suave al pasar el cursor */
.whatsapp-toggle-btn:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

/* Caja de Chat principal */
.whatsapp-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background-color: #e5ddd5; /* Fondo clásico texturizado gris/arena */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Clase para abrir la ventana */
.whatsapp-chat-box.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Encabezado del chat */
.whatsapp-chat-header {
    background-color: #075E54; /* Verde oscuro de WhatsApp */
    color: #ffffff;
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%23075E54" xmlns="http://w3.org"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.agent-info h4 {
    margin: 0;
    font-size: 0.95rem;
}

.agent-info p {
    margin: 2px 0 0 0;
    font-size: 0.75rem;
    color: #cfd8dc;
}

.chat-close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

.chat-close-btn:hover {
    opacity: 1;
}

/* Cuerpo de la conversación */
.whatsapp-chat-body {
    padding: 20px;
    height: 180px;
    overflow-y: auto;
}

.chat-bubble {
    background-color: #ffffff;
    padding: 8px 12px;
    border-radius: 0 8px 8px 8px;
    font-size: 0.85rem;
    color: #333333;
    max-width: 85%;
    margin: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Pie de entrada del mensaje */
.whatsapp-chat-footer {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-chat-footer input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #dddddd;
    border-radius: 20px;
    font-size: 0.85rem;
    outline: none;
}

.whatsapp-chat-footer button {
    background-color: #075E54;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.whatsapp-chat-footer button:hover {
    background-color: #128C7E;
}


/* Contenedor flexible para la nueva tanda de logos */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 45px; /* Espaciado compacto y prolijo */
}

/* Forzado estricto de dimensiones secundarias */
.brand-item-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px; /* Altura ideal optimizada para lectura de logotipos corporativos */
    max-width: 130px; /* Evita que logos horizontales muy largos se deformen */
}

.brand-item-premium img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Mantiene la proporción del logo sin estirarlo */
    

}

/* Efecto Hover dinámico */
.brand-item-premium:hover img {

}

.contact-section {
    background: linear-gradient(
        135deg,
        #0d0f12 0%,
        #151922 100%
    );
    margin-top: 80px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 100px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-tag {
    display: inline-block;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-section h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-benefit {
    color: #ffffff;
    font-weight: 600;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    text-decoration: none;

    padding: 22px 42px;

    border-radius: 12px;

    font-size: 1.15rem;
    font-weight: 700;

    transition: all .3s ease;

    box-shadow:
        0 10px 30px rgba(37,211,102,.35);
}

.contact-whatsapp-btn:hover {
    transform: translateY(-4px);
    background: #1ebe5d;
    box-shadow:
        0 15px 40px rgba(37,211,102,.45);
}

@media (max-width:768px){

    .contact-section {
        padding: 70px 20px;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-whatsapp-btn {
        width: 100%;
        padding: 20px;
    }

}

/* ==========================
   SINGLE SERVICIO
========================== */

.single-servicio {
    background: #ffffff;
    padding-bottom: 80px;
}

/* Breadcrumbs */

.breadcrumbs {
    background: #f8fafc;
    border-bottom: 1px solid #eaeaea;
}

.breadcrumbs .site-container {
    padding: 14px 20px;
}

.breadcrumbs a {
    color: #666666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #00bcd4;
}

.breadcrumbs span {
    color: #111111;
    font-weight: 600;
}

/* Hero */

.servicio-hero {
    padding: 70px 20px 50px;
    text-align: center;
}

.servicio-categorias {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    background: #eef8fb;
    border: 1px solid #d5eef3;
    color: #00bcd4;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    margin: 4px;
}

.servicio-hero h1 {
    font-size: 3rem;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.servicio-excerpt {
    max-width: 850px;
    margin: 0 auto 30px auto;
    color: #666666;
    font-size: 1.15rem;
    line-height: 1.7;
}

.servicio-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.info-item {
    background: #fafafa;
    border: 1px solid #eaeaea;
    padding: 12px 18px;
    border-radius: 6px;
    color: #444444;
    font-size: 14px;
}

/* Botones */

.servicio-botones {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-servicio {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
}

.btn-presupuesto {
    background: #00bcd4;
    color: #ffffff;
}

.btn-presupuesto:hover {
    background: #0097a7;
}

.btn-whatsapp-servicio {
    background: #25D366;
    color: #ffffff;
}

.btn-whatsapp-servicio:hover {
    background: #1ebe5d;
}

/* Imagen */

.servicio-imagen {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.servicio-imagen img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Contenido */

.servicio-content {
    margin: 0 auto;
    padding: 0 20px;
}

.servicio-content h2 {
    font-size: 2rem;
    color: #111111;
    margin-top: 50px;
    margin-bottom: 20px;
}

.servicio-content h3 {
    font-size: 1.4rem;
    color: #111111;
    margin-top: 35px;
    margin-bottom: 15px;
}

.servicio-content p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.servicio-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.servicio-content li {
    margin-bottom: 10px;
    color: #555555;
}

/* CTA */

.servicio-cta {
    margin-top: 80px;
}

.servicio-cta-box {
    background: linear-gradient(
        135deg,
        #0d0f12 0%,
        #151922 100%
    );

    border-radius: 12px;

    padding: 60px 40px;

    text-align: center;

    max-width: 1000px;
    margin: auto;
}

.servicio-cta-box h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.servicio-cta-box p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Relacionados */

.servicios-relacionados {
    margin-top: 80px;
}

.servicios-relacionados h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #111111;
}

.servicios-grid-related {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.servicio-related-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease;
}

.servicio-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.servicio-related-card img {
    width: 100%;
    display: block;
}

.servicio-related-card h3 {
    padding: 20px;
    color: #111111;
    font-size: 1.1rem;
}

/* Responsive */

@media (max-width: 768px) {

    .servicio-hero {
        padding: 50px 20px;
    }

    .servicio-hero h1 {
        font-size: 2rem;
    }

    .servicio-excerpt {
        font-size: 1rem;
    }

    .servicios-grid-related {
        grid-template-columns: 1fr;
    }

    .servicio-cta-box {
        padding: 40px 25px;
    }

}

.servicio-datos {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.servicio-datos-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.dato-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 24px;
    transition: all .3s ease;
}

.dato-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.dato-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00bcd4;
    font-weight: 700;
    margin-bottom: 12px;
}

.dato-card strong {
    font-size: 16px;
    color: #111111;
}

.dato-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dato-tag {
    background: #eef8fb;
    border: 1px solid #d6eef3;
    color: #00bcd4;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
}


.servicio-resumen {
    margin: 80px 0;
}

.servicio-resumen-grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 30px;
}

.servicio-info-card,
.servicio-cta-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
}

.card-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00bcd4;
    font-weight: 700;
    margin-bottom: 12px;
}

.servicio-info-card h2,
.servicio-cta-card h2 {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 25px;
}

.dato-grupo {
    margin-bottom: 24px;
}

.dato-grupo strong {
    display: block;
    color: #111111;
    margin-bottom: 10px;
    font-size: .95rem;
}

.dato-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dato-tag {
    background: #eef8fb;
    border: 1px solid #d5eef3;
    color: #00bcd4;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.dato-grupo span {
    color: #666666;
}

.servicio-cta-card {
    background:
        linear-gradient(
            135deg,
            #0d0f12 0%,
            #151922 100%
        );
}

.servicio-cta-card h2 {
    color: #ffffff;
}

.servicio-cta-card p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.cta-beneficios li {
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
}

.servicio-cta-card .contact-whatsapp-btn {
    width: 100%;
}

@media (max-width: 992px) {

    .servicio-resumen-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .servicio-info-card,
    .servicio-cta-card {
        padding: 25px;
    }

    .servicio-info-card h2,
    .servicio-cta-card h2 {
        font-size: 1.7rem;
    }

}

.servicio-categorias-listado {
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00bcd4;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: #111111;
    margin-bottom: 15px;
}

.section-header p {
    color: #666666;
    max-width: 700px;
    margin: auto;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.categoria-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 28px;
    text-decoration: none;
    transition: all .3s ease;
}

.categoria-card:hover {
    transform: translateY(-4px);
    border-color: #00bcd4;
    box-shadow: 0 10px 20px rgba(0,0,0,.04);
}

.categoria-nombre {
    display: block;
    color: #111111;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.categoria-cantidad {
    color: #777777;
    font-size: .9rem;
}

@media (max-width: 992px) {

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

}

@media (max-width: 768px) {

    .categorias-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

}

.servicio-categorias-listado {
    padding: 90px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 15px;
}

.section-header p {
    color: #666666;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.categoria-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 35px 30px;
    text-decoration: none;
    text-align: center;
    transition: all .3s ease;
}

.categoria-card:hover {

    transform: translateY(-6px);

    border-color: #00bcd4;

    box-shadow:
        0 15px 30px rgba(0,0,0,.05);

}

.categoria-icono {

    font-size: 2.8rem;

    margin-bottom: 18px;

}

.categoria-card h3 {

    color: #111111;

    font-size: 1.25rem;

    margin-bottom: 10px;

}

.categoria-card span {

    color: #777777;

    font-size: .9rem;

}

@media (max-width: 992px) {

    .categorias-grid {

        grid-template-columns: repeat(2,1fr);

    }

}

@media (max-width: 768px) {

    .categorias-grid {

        grid-template-columns: 1fr;

    }

    .section-header h2 {

        font-size: 2rem;

    }

}

.proceso-section {
    padding: 90px 0;
    background: #fafafa;
    margin: 80px 0;
}

.proceso-header {
    text-align: center;
    margin-bottom: 50px;
}

.proceso-tag {
    display: inline-block;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.proceso-header h2 {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 15px;
}

.proceso-header p {
    max-width: 700px;
    margin: auto;
    color: #666666;
    line-height: 1.7;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.proceso-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    transition: all .3s ease;
}

.proceso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.proceso-numero {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #eef8fb;

    border: 2px solid #00bcd4;

    color: #00bcd4;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;
    font-weight: 700;
}

.proceso-card h3 {
    font-size: 1.1rem;
    color: #111111;
    margin-bottom: 12px;
}

.proceso-card p {
    color: #666666;
    line-height: 1.6;
    font-size: .95rem;
}

@media (max-width: 1200px) {

    .proceso-grid {
        grid-template-columns: repeat(3,1fr);
    }

}

@media (max-width: 768px) {

    .proceso-grid {
        grid-template-columns: 1fr;
    }

    .proceso-header h2 {
        font-size: 2rem;
    }

}

.proceso-icono{
    font-size:2rem;
    margin-bottom:15px;
}

.proceso-card{
    position:relative;
}

.proceso-numero{
    margin-bottom:15px;
}

.beneficios-section {
    padding: 90px 0;
}

.beneficios-header {
    text-align: center;
    margin-bottom: 50px;
}

.beneficios-tag {
    display: inline-block;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.beneficios-header h2 {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 15px;
}

.beneficios-header p {
    color: #666666;
    max-width: 700px;
    margin: auto;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.beneficio-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all .3s ease;
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,.04);
}

.beneficio-icono {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    background: #eef8fb;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #00bcd4;
    font-weight: 700;
}

@media(max-width:992px){

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

}

@media(max-width:768px){

    .beneficios-grid{
        grid-template-columns:1fr;
    }

}

.clientes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.cliente-card{
    padding:30px;
    background:#fafafa;
    border:1px solid #eaeaea;
    border-radius:8px;
    text-align:center;
    font-weight:600;
}

/* ==========================
   FAQ
========================== */

.faq-section {
    padding: 90px 0;
    background: #fafafa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 50px;
}

.faq-item {

    background: #ffffff;

    border: 1px solid #eaeaea;

    border-radius: 8px;

    margin-bottom: 15px;

    overflow: hidden;

    transition: all .3s ease;

}

.faq-item:hover {

    border-color: #00bcd4;

    box-shadow:
        0 10px 20px rgba(0,0,0,.03);

}

.faq-item summary {

    list-style: none;

    cursor: pointer;

    padding: 24px 30px;

    font-size: 1.05rem;

    font-weight: 600;

    color: #111111;

    position: relative;

    transition: all .3s ease;

}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {

    content: '+';

    position: absolute;

    right: 30px;

    top: 50%;

    transform: translateY(-50%);

    color: #00bcd4;

    font-size: 1.8rem;

    font-weight: 300;

    transition: all .3s ease;

}

.faq-item[open] summary::after {

    content: '−';

}

.faq-item[open] summary {

    background: #eef8fb;

}

.faq-content {

    padding: 0 30px 30px;

    color: #666666;

    line-height: 1.8;

    font-size: .95rem;

}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-tag {
    display: inline-block;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-header p {
    color: #666666;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.7;
}

.faq-cta {
    padding: 80px 0;
}

.faq-cta-box {

    background:
        linear-gradient(
            135deg,
            #0d0f12 0%,
            #151922 100%
        );

    border-radius: 12px;

    padding: 60px 40px;

    text-align: center;

}

.faq-cta-tag {

    display: inline-block;

    color: #00bcd4;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 15px;

}

.faq-cta-box h2 {

    color: #ffffff;

    font-size: 2.4rem;

    margin-bottom: 20px;

}

.faq-cta-box p {

    color: #cbd5e1;

    max-width: 700px;

    margin: 0 auto 35px;

    line-height: 1.8;

}

.faq-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}

.faq-btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 22px 42px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 12px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 600;

    transition: all .3s ease;

}

.faq-btn-secondary:hover {

    background: rgba(255,255,255,.08);

    border-color: #00bcd4;

}

@media (max-width:768px){

    .faq-cta-box {

        padding: 40px 25px;

    }

    .faq-cta-box h2 {

        font-size: 2rem;

    }

    .faq-cta-buttons {

        flex-direction: column;

    }

    .faq-btn-secondary,
    .contact-whatsapp-btn {

        width: 100%;

    }

}