/*# sourceMappingURL=user.min.css.map */

:root {
    --primary: #08088F;
    --primary-dark: #04045C;
    --primary-light: #3400E7;
    --accent: #5B33FF;
    --background: #F5F6FF;
    --text: #0A0A0A;
}

.text-primary {
    --phoenix-text-opacity: 1;
    color: #08088F;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    /* fondo blanco semitransparente */
    backdrop-filter: blur(6px);
}

.navbar .nav-link:hover {
    color: #3400E7 !important;
    /* Azul Bootstrap al pasar el mouse */
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    /* asegura que quede sobre todo el contenido */
}

body {
    padding-top: 80px;
    /* evita que el contenido quede tapado por la navbar fija */
}


/* Botón de WhatsApp / demostración */

.btn-phoenix-primary {
    background-color: #1b9ce1 !important;
    border: none;
    color: white !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phoenix-primary:hover {
    background-color: #08088F !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 150, 199, 0.4);
}


/* Logo ligeramente más grande y centrado */

.navbar .d-flex img {
    width: 45px;
    height: auto;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.navbar .d-flex img:hover {
    transform: scale(1.1);
}


/*navbar close*/

#home {
    display: flex;
    align-items: center;
    /* centra verticalmente */
    justify-content: center;
    /* centra horizontalmente */
    min-height: 95vh;
    /* casi toda la pantalla */
    padding: 4rem 2rem;
    /* margen vertical uniforme */
    background-color: var(--bs-body-bg);
}


/* Contenedor interno */

#home .hero-container-small {
    display: flex;
    align-items: center;
    /* centra verticalmente texto e imagen */
    justify-content: space-between;
    gap: 4rem;
    /* más separación entre texto e imagen */
    max-width: 1400px;
    /* más ancho */
    width: 100%;
}


/* Columna de texto */

#home .col-12.col-lg-6 {
    flex: 1;
    text-align: left;
    /* texto alineado a la izquierda */
}


/* Columna de imagen */

#home .col-12.col-lg-auto {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===== IMÁGENES ===== */

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container img {
    width: 110%;
    /* agranda la imagen */
    max-width: 650px;
    /* antes 520px */
    height: auto;
    border-radius: 1.2rem;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}


/* ===== TEXTO ===== */

#home h1 {
    font-size: clamp(2.5rem, 3.2vw + 1rem, 4.5rem);
    /* más grande y fluido */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

#home p {
    font-size: clamp(1.2rem, 1vw + 0.8rem, 1.5rem);
    /* más grande */
    max-width: 600px;
    color: var(--bs-body-color);
    margin-bottom: 2.5rem;
}


/* ===== BOTÓN ===== */

#home a.btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    #home .hero-container-small {
        gap: 3rem;
    }
    #home h1 {
        font-size: 3rem;
    }
    .hero-image-container img {
        max-width: 550px;
    }
}

@media (max-width: 992px) {
    #home {
        padding: 3rem 1.5rem;
    }
    #home .hero-container-small {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    #home .col-12.col-lg-6 {
        text-align: center;
        /* centrado solo en móvil */
    }
    .hero-image-container img {
        max-width: 90%;
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    #home {
        padding: 2.5rem 1rem;
        min-height: auto;
    }
    #home h1 {
        font-size: 2.2rem;
    }
    #home p {
        font-size: 1rem;
    }
}

.imagen-iz {
    transform: translateX(-200px);
    transition: transform 0.3s ease-in-out;
}

.image-stack {
    position: relative;
    width: 760px;
    height: 440px;
    transform: translate(17rem, -5rem);
}

.image-stack .imagen {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}


/* Posiciones iniciales ligeramente desplazadas y rotadas */

.image-stack .imagen:nth-child(1) {
    transform: rotate(-5deg) translateX(-10px);
    z-index: 1;
}

.image-stack .imagen:nth-child(2) {
    transform: rotate(5deg) translateX(10px) translateY(-10rem);
    ;
    z-index: 2;
}

#tecnologias {
    background: #ffffff;
}

#tecnologias h2 {
    color: #222;
}

.tech-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.tech-group {
    min-width: 250px;
    padding: 1rem 2rem;
    border-right: 2px solid #ffffff;
    transition: transform 0.3s ease;
}

.tech-logos {
    display: flex;
    gap: 2rem;
}

.tech-item {
    flex: 0 0 auto;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.tech-item img {
    height: 80px;
    width: auto;
    filter: grayscale(15%);
    transition: all 0.3s ease;
}

.tech-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.tech-group {
    background: rgba(var(--phoenix-light-rgb), var(--phoenix-bg-opacity));
}


/* Responsivo */


/*SECCIÓN CLIENTES */

.seccion-clientes {
    padding: 60px 0;
    background-color: #ffffff;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 60px;
    max-width: 1200px;
}

.carousel-track {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    transition: transform 0.5s ease-in-out;
}

.cliente-logo {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.cliente-logo img {
    max-height: 60px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cliente-logo img:hover {
    filter: none;
    opacity: 1;
}


/* --- Banderas debajo --- */

.banderas {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.banderas img {
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}


/* --- Flechas --- */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 0, 231, 0.85);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #08088f;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.cliente-logo-sin-burbuja {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cliente-logo-sin-burbuja img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    margin-bottom: 8px;
}

.cliente-logo-sin-burbuja:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


/* Bandera centrada */

.flag-icon {
    display: block;
    margin: 0 auto;
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/* Margen lateral del carrusel */

#carouselClientes .carousel-inner {
    padding-left: 50px;
    padding-right: 50px;
}


/* Flechas */

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.custom-arrow {
    filter: invert(30%) sepia(90%) saturate(400%) hue-rotate(200deg);
}


/*seccion close*/

#nosotros {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}


/* Video fondo */

#nosotros video {
    object-fit: cover;
    object-position: center 50%;
    /* Baja el video. Aumenta el valor si quieres más parte superior visible */
}


/* Oscurecido */

#nosotros .bg-dark {
    z-index: 1;
}


/* Efecto diagonal (clip-path) */

.diagonal-mask::before,
.diagonal-mask::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 200px;
    background: #fff;
    z-index: 3;
}


/* Parte superior con diagonal */

.diagonal-mask::before {
    top: 0;
    clip-path: polygon(0 0, 100% 40%, 100% 0);
}


/* Parte inferior con diagonal */

.diagonal-mask::after {
    bottom: 0;
    clip-path: polygon(0 100%, 100% 60%, 100% 100%);
}


/* Botón play hover */

#nosotros .btn-light:hover {
    background-color: #08088f;
    color: #fff;
    transform: scale(1.05);
    transition: all 0.3s ease;
}


/* Suaviza la entrada del texto */

#nosotros h2,
#nosotros p,
#nosotros button,
#nosotros a {
    animation: fadeInUp 1.2s ease both;
}

#nosotros h2 {
    color: #ffffff;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Modal video */

.modal-backdrop.show {
    opacity: 0.9 !important;
}

.learn-btn {
    position: relative;
    top: -20px;
    /* sube 30px */
}

.acordeon {
    width: 100%;
    max-width: 1800px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
}


/* Botón del acordeón */

.acordeon-btn {
    display: block;
    margin: 1.5rem auto;
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transform: translateY(-1rem);
}

.acordeon-btn:hover {
    background: #0b5ed7;
}


/* Icono del botón */

.acordeon-icon {
    transition: transform 0.3s ease;
}

.acordeon-content {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fb;
    transition: max-height 0.6s ease, padding 0.4s ease;
}

.acordeon.active .acordeon-content {
    max-height: 2000px;
    /* suficiente para mostrar las tres tarjetas */
}

.acordeon.active .acordeon-icon {
    transform: rotate(180deg);
}


/* === Tarjetas alineadas horizontalmente === */

.info-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.info-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    min-height: 280px;
    border: 1px solid #e0e0e0;
    margin: 12px;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #08088F;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p,
.info-card li {
    color: #444;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 18px;
    list-style-type: disc;
}

.info-card.historia {
    flex: 2;
    /* ocupa el doble de espacio que una card normal */
    min-height: 280px;
}


/* Opcional: ajusta el texto y centra el título */

.info-card.historia h2 {
    color: #08088F;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}


/* Responsivo: se apilan en pantallas pequeñas */

@media (max-width: 900px) {
    .info-grid {
        flex-direction: column;
    }
    .info-card {
        min-height: auto;
    }
}


/*seccion servicios*/


/* =========================
   SECCIÓN GENERAL
========================= */

#productos {
    background-color: #f8faff;
    padding: 6rem 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}


/* Título */

#productos h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}


/* =========================
   TARJETAS DE PRODUCTO
========================= */

.producto-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    cursor: pointer;
}


/*Efecto hover general (todas las tarjetas) */

.producto-card:hover {
    transform: translateY(-6px);
    background-color: #e9f1ff;
    /* Azul muy claro */
    box-shadow: 0 0 25px rgba(0, 51, 102, 0.4);
    /* Sombra azul */
}


/* Imagen */

.producto-card img {
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}


/* Títulos */

.producto-card h3 {
    color: #0b2245;
    font-weight: 700;
}

.producto-card p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* =========================
   TARJETA DESTACADA (CENTRAL)
========================= */

.destacado {
    color: #ffffff;
    transform: scale(1.05);
    transition: all 0.4s ease;
}


/* 🔹 Hover especial para la central */


/* Textos dentro de la central */

.destacado h3,
.destacado h6 {
    color: #000000;
}

.destacado p {
    color: #000000;
}


/* =========================
   BOTONES DE ACCIÓN (BURBUJA)
========================= */

.acciones {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
}


/* Botones tipo burbuja */

.dropdown .btn,
.btn-primary,
.btn-outline-primary {
    border-radius: 50px;
    padding: 0.6rem 1.3rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}


/* Botones de dropdown */

.dropdown .btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.dropdown .btn:hover {
    background-color: #ffffff;
    color: #003366;
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(0, 51, 102, 0.4);
}


/* Botón principal (más información) */

.btn-primary {
    background-color: #ffffff;
    color: #003366;
    border: 2px solid #000000;
}

.btn-primary:hover {
    background-color: #00264d;
    color: #ffffff;
    transform: scale(1.08);
}


/* Botón contorno */

.btn-outline-primary {
    border: 2px solid #003366;
    color: #003366;
    background-color: transparent;
}

.btn-outline-primary:hover {
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(0, 51, 102, 0.4);
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 51, 102, 0.25);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #e9f1ff;
    color: #003366;
}

@media (max-width: 992px) {
    .destacado {
        transform: none;
    }
}

.destacado {
    color: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 51, 102, 0.6);
    transform: scale(1.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.destacado::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.destacado:hover::before {
    opacity: 1;
}

.destacado:hover {
    transform: scale(1.09);
    box-shadow: 0 0 45px rgba(0, 136, 255, 0.8);
}

.destacado h3 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(0, 150, 255, 0.8);
    margin-bottom: 1rem;
}


/* Subtítulo */

.producto-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #3400E7;
    letter-spacing: 1px;
}


/* Párrafo */

.producto-card p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1rem;
}


/* Imagen con brillo suave */

.destacado img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease;
}

.destacado:hover img {
    transform: scale(1.08);
}

.dropdown .btn,
.btn-primary {
    background: rgba(0, 0, 0, 0.15);
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.dropdown .btn:hover,
.btn-primary:hover {
    background: #ffffff;
    color: #003366;
    transform: scale(1.1);
}

.btn-primary {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
    background: #ffffff;
    font-weight: 700;
}

.btn-primary:hover {
    color: #000000;
    transform: scale(1.1);
}

#productos {
    margin-bottom: 2rem !important;
    /* antes podría ser mucho más grande */
    padding-bottom: 0 !important;
    /* elimina relleno extra */
}


/* Elimina separación extra del fondo decorativo y svg */

#productos+.position-relative {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Opcional: reduce margen superior de testimonios */

#testimonios {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}


/*testimonios*/

.fa-star {
    color: #ffeb3b !important;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.6);
}

.testimonios-section .text-content {
    position: relative;
    left: -80px;
    top: 50px;
}

@media (max-width: 991px) {
    .testimonios-section .text-content {
        left: 0;
        top: 0;
        text-align: center;
    }
}

section.testimonios {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1e88e5 100%);
    color: #fff;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}


/* Fondo de textura o degradado animado */

section.testimonios::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: moveGlow 10s linear infinite;
}

@keyframes moveGlow {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(10%, 10%);
    }
}


/* Títulos */

section.testimonios h4 {
    color: #82b1ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section.testimonios h2 {
    font-weight: 800;
    color: #000000;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}


/* Párrafos */

section.testimonios p {
    color: #e3f2fd;
    font-size: 1.05rem;
}


/* Avatar con efecto */

.testimonial-avatar-container {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-avatar-container img {
    border: 4px solid #ffffff;
    box-shadow: 0 0 25px rgba(30, 136, 229, 0.6);
    transition: all 0.3s ease;
}

.testimonial-avatar-container:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(33, 150, 243, 0.8);
}


/* Texto del testimonio */

.carousel-item h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #000000;
    font-style: italic;
    transition: color 0.3s ease;
}


/* Nombre y cargo */

.carousel-item h6 {
    color: #000000;
    margin-bottom: 0;
}


/* Efecto de entrada al cambiar */

.carousel-item {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
}


/* Indicadores personalizados */

.carousel-indicators [data-bs-target] {
    background-color: #000000;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #2196f3;
    opacity: 1;
    width: 12px;
    height: 12px;
}


/* Ajuste responsive */

@media (max-width: 768px) {
    section.testimonios {
        padding: 3rem 1rem;
    }
    section.testimonios h2 {
        font-size: 1.6rem;
    }
    .carousel-item h3 {
        font-size: 1.05rem;
    }
}

.carousel-inner {
    text-align: center;
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    transition: transform 0.6s ease-in-out;
}


/* Color y estilo del texto */

.text-azul {
    color: #0d3b66;
    /* Azul oscuro elegante */
    text-shadow: 1px 1px 8px rgba(13, 59, 102, 0.3);
}


/* Flechas personalizadas */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 30px;
    filter: brightness(0) invert(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    transition: transform 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: scale(1.2);
}


/* Flechas con fondo circular azul */

.custom-arrow {
    background-color: #0d3b66;
    border-radius: 50%;
    padding: 15px;
    filter: none;
    box-shadow: 0 0 10px rgba(13, 59, 102, 0.4);
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    /* Debe coincidir con el valor usado en JS */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Oculta la barra de scroll en Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Oculta barra en Chrome/Safari */
}

.cliente-logo {
    flex: 0 0 auto;
    width: 120px;
    /* o el tamaño que necesites */
    text-align: center;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}


/*precios*/

.pricing-section {
    background: #f8f9fa;
}

.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}


/* Fondo degradado azul para el plan destacado */

.bg-gradient-primary {
    background: linear-gradient(180deg, #0046b8 0%, #007bff 100%);
}


/* Efecto del ícono */

.icon-box img {
    transition: transform 0.3s ease;
}

.pricing-card:hover .icon-box img {
    transform: scale(1.1);
}


/* Botones tipo burbuja */

.scale-btn {
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: none;
}

.scale-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}


/* Plan destacado más grande */

.featured {
    transform: scale(1.08);
    z-index: 2;
    border: none;
}

.featured:hover {
    transform: scale(1.1);
}


/* Iconos */

.fa-check {
    color: #007bff;
}

.fa-times {
    color: #dc3545;
}


/* Responsivo */

@media (max-width: 992px) {
    .featured {
        transform: scale(1);
    }
}

#planes-precios .card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

#planes-precios .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

#planes-precios .card-header {
    font-size: 1.1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

#planes-precios ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

#planes-precios button {
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

#planes-precios button:hover {
    transform: scale(1.05);
}

.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #007bff;
    /* Azul */
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}

.icon-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #e0e0e0;
    /* Gris claro */
    color: #6c757d;
    /* Gris oscuro */
    font-size: 13px;
    font-weight: bold;
}

.team-item {
    margin-left: auto;
    margin-right: auto;
}


/*seccion close*/


/*footer*/

.footer-default {
    padding-top: 4rem;
    padding-bottom: 3rem;
    margin-top: 0;
    /* elimina espacios grandes arriba */
    position: relative;
}


/* reduce el espacio superior si hay separación con la sección anterior */

.footer-default::before {
    content: "";
    position: absolute;
    top: -80px;
    /* sube el footer */
    left: 0;
    width: 100%;
    height: 120px;
}


/* mejora visibilidad de texto */

.footer-default h3,
.footer-default h5,
.footer-default p,
.footer-default a {
    color: #ffffff !important;
}

.footer-default h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-default h5 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #cfd3ff;
}

.footer-default p {
    color: #e4e6fa;
    font-size: 0.95rem;
    opacity: 0.9;
}


/* enlaces con efecto al pasar el mouse */

.footer-default a {
    color: #cfd3ff !important;
    transition: all 0.2s ease-in-out;
}

.footer-default a:hover {
    color: #3400E7 !important;
    text-decoration: underline;
}


/* aumenta espacio y equilibrio en las columnas */

.footer-default .col-lg-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}


/* mejora la línea divisoria */

section.anterior {
    margin-bottom: 0 !important;
}


/*boton*/

.btn-demo {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #000000;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    box-shadow: 0 6px 16px rgba(8, 8, 143, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: scale(1.05);
}


/* === Pop-up === */

.demo-popup {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-content {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(8, 8, 143, 0.3);
    position: relative;
}

.popup-content h4 {
    color: #08088F;
    font-weight: 700;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-demo-primary {
    background-color: #3400E7;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-demo-primary:hover {
    background-color: #08088F;
}


/* === Botón de cerrar === */

.close-popup {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #3400E7;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #08088F;
}


/*formulario*/

.row.g-5.align-items-stretch {
    background: #f8f9fa;
    /* gris muy suave */
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


/* ==== COLUMNA IZQUIERDA: Mantente Conectado ==== */

.col-lg-5.col-md-6 {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Títulos y textos */

.col-lg-5.col-md-6 h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.col-lg-5.col-md-6 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
}


/* Íconos de contacto */

.icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Texto de contacto */

.col-lg-5.col-md-6 a,
.col-lg-5.col-md-6 span {
    font-size: 0.95rem;
}


/* Espaciado entre los bloques de contacto */

.col-lg-5.col-md-6 .d-flex.align-items-center {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.col-lg-5.col-md-6 .d-flex.align-items-center:hover {
    transform: translateX(4px);
}


/* Redes sociales */

.col-lg-5.col-md-6 .fa-brands {
    transition: color 0.3s ease, transform 0.2s ease;
}

.col-lg-5.col-md-6 .fa-brands:hover {
    color: #0d6efd;
    /* azul Bootstrap */
    transform: scale(1.2);
}


/* ==== ARMONÍA ENTRE AMBAS COLUMNAS ==== */

#contactForm {
    background-color: #ffffff;
    padding: 1.8rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#contactForm button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 0.6rem;
    transition: all 0.25s ease;
}

#contactForm button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}


/* ==== RESPONSIVE ==== */

@media (max-width: 992px) {
    .row.g-5.align-items-stretch {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    .col-lg-5.col-md-6,
    #contactForm {
        width: 100%;
    }
    .col-lg-5.col-md-6 {
        text-align: center;
    }
    .col-lg-5.col-md-6 .d-flex.align-items-center {
        justify-content: center;
    }
}

.contact-form {
    position: relative;
    top: -8px;
    /* sube 30px */
}

.text-principal {
    color: #08088F !important;
}

.text-secundario {
    color: #3400E7;
}

.text-form {
    text-align: left;
}


/*footer*/

footer {
    color: #dfe6ee;
    padding: 50px 8%;
    position: relative;
}


/* Contenedor principal */

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}


/* Logo y descripción */

.footer-brand {
    max-width: 260px;
}

.footer-brand h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #c8d3e3;
}


/* Columnas de enlaces */

.footer-column h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #c8d3e3;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}


/* Línea divisoria */

.footer-divider {
    margin: 40px 0 20px;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}


/* Parte inferior */

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #b5c0d1;
}

.footer-bottom .social-links img {
    filter: brightness(0) invert(1);
}


/* Redes sociales */

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-2px);
}


/* Responsivo */

@media (max-width: 768px) {
    footer {
        padding: 40px 5%;
    }
    .footer-container {
        gap: 30px;
    }
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: "Poppins", sans-serif;
}


/* Botón flotante */

.whatsapp-button {
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: scale(1.05);
}


/* Ventana emergente */

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    animation: fadeIn 0.3s ease;
}

.popup-header {
    background-color: #08088F;
    color: #fff;
    padding: 15px;
}

.popup-header p {
    font-size: 13px;
    margin: 5px 0;
}

.response-time {
    font-size: 12px;
    color: #e9fbe3;
}


/* Contactos */

.popup-body {
    padding: 10px;
    background-color: #fff;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.2s ease;
    color: #212529;
}

.contact-card:hover {
    background: #e9ecef;
}


/* Animación */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#faqSearchResults .faq-item {
    transition: all 0.2s ease-in-out;
}

#faqSearchResults .faq-item:hover {
    background-color: #f8f9fa;
}

.is-invalid::placeholder {
    color: #dc3545 !important;
    opacity: 1;
}

.is-invalid {
    border: 1px solid #dc3545 !important;
    background-color: #ffe6e6 !important;
}

.btn-blog {
    color: #000000;
    transform: translateX(30px);
    background-color: #ffffff;
}

.btn-blog:hover {
    background-color: #ffffff;
}

.bg-primario {
    background-color: #08088F;
}

.bg-principal {
    background-color: #08088F;
}