* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f8fafc;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #f8fafc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    width: 210px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgb(26, 26, 109);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #60a5fa;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Estado activo de hamburguesa (X) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6.5px, 6.5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6.5px, -6.5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        justify-content: center;
        gap: 2.5rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1e293b;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s infinite linear;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
    color: white;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 1s ease 0.3s forwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: slideUp 1s ease 0.6s forwards;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white !important;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6 !important; /* Ahora es azul por defecto para leerse en fondos blancos */
    border: 2px solid #3b82f6;
}

/* Solo en el Hero (donde el fondo es oscuro) el texto debe ser blanco */
.hero .btn-secondary {
    color: white !important;
    border-color: #60a5fa;
}

/* Efectos solo para PC (con mouse) */
@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    }
    
    .btn-secondary:hover {
        background: #3b82f6;
        color: white !important;
        transform: translateY(-2px);
    }
}

/* ReacciÃ³n al tacto para mÃ³viles */
@media (hover: none) {
    .btn:active {
        transform: scale(0.96);
        opacity: 0.9;
    }
    
    .btn-secondary:active {
        background: rgba(59, 130, 246, 0.1);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

/* Secciones */
.section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    /* Color oscuro sÃ³lido en lugar de gradiente */
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    /* Color mÃ¡s oscuro para mejor contraste */
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
}

.services {
    background: linear-gradient(135deg, #1a2435 0%, #1e293b 50%, #223041 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#services-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: white;
    /* Mantener blanco en fondo oscuro */
}

.services .section-subtitle {
    color: #cbd5e1;
    /* Mejor contraste en fondo oscuro */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Products Section */
.products {
    background: #f1f5f9;
}

.products .section-title {
    color: #1e293b;
}

.products .section-subtitle {
    color: #64748b;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: white;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    /* Color mÃ¡s oscuro */
}

.product-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price::after {
    content: 'Entrega Inmediata';
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.btn-primary.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-primary.btn-glow:hover::after {
    transform: scale(1);
}

/* RediseÃ±o de Testimonios - Mosaico Moderno */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: #dbeafe;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: #3b82f6;
    opacity: 0.1;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

.testimonial-rating {
    margin-bottom: 0.5rem;
    color: #fbbf24;
    font-size: 0.9rem;
}


/* Estilo Alternativo para Productos en Desarrollo - DISEÃ‘O MODERNO */
.product-card.proccess {
    position: relative;
    overflow: hidden;
    border: 2px dashed #94a3b8;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Cabecera de estado con icono */
.product-card.proccess .product-image {
    position: relative;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.product-card.proccess .product-image::before {
    content: "ðŸ› ï¸ EN DESARROLLO";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #475569, #334155);
    color: white;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    z-index: 2;
    text-transform: uppercase;
}

/* Efecto de cristal esmerilado en el contenido */
.product-card.proccess .product-content {
    position: relative;
}

.product-card.proccess .product-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.product-card.proccess .product-content>* {
    position: relative;
    z-index: 2;
}

/* Estilos especÃ­ficos para el contenido */
.product-card.proccess .product-title {
    color: #475569;
    font-style: italic;
}

.product-card.proccess .product-description {
    color: #64748b;
    font-style: italic;
}

.product-card.proccess .product-features li {
    color: #94a3b8;
    opacity: 0.8;
}

.product-card.proccess .product-features li::before {
    color: #94a3b8;
    content: 'â³';
}

.product-card.proccess .product-price {
    color: #64748b;
    font-style: italic;
}

/* BotÃ³n especial para productos en desarrollo */
.product-card.proccess .btn-primary {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    color: #475569;
    border: 1px solid #94a3b8;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.product-card.proccess .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Efectos hover mejorados */
.product-card.proccess:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 116, 139, 0.2);
    border-color: #64748b;
}

.product-card.proccess:hover .product-image::before {
    background: linear-gradient(135deg, #374151, #1f2937);
}

/* Indicador de progreso opcional */
.product-card.proccess .development-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    z-index: 3;
}

.product-card.proccess .development-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* VersiÃ³n con estado de pre-lanzamiento */
.product-card.proccess.soon {
    border: 2px dashed #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fef7cd 100%);
}

.product-card.proccess.soon .product-image::before {
    content: "ðŸš€ PRÃ“XIMAMENTE";
    background: linear-gradient(135deg, #d97706, #b45309);
}

.product-card.proccess.soon .development-progress::after {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    width: 85%;
}

/* Efecto de partÃ­culas flotantes */
.product-card.proccess::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(148, 163, 184, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(148, 163, 184, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 30px 30px;
    pointer-events: none;
    z-index: 0;
    animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 50px 50px, -50px -50px, 30px 30px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-card.proccess .product-image::before {
        font-size: 0.75rem;
        padding: 10px 0;
    }
}

/* Team Section */
.team {
    background: white;
}

.team .section-title {
    color: #1e293b;
}

.team .section-subtitle {
    color: #64748b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    /* Color mÃ¡s oscuro */
}

.team-role {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: #64748b;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: #3b82f6;
}

/* Testimonials Section - Mejorado */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials .section-title {
    color: #1e293b;
}

.testimonials .section-subtitle {
    color: #64748b;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    display: none;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.client-logo {
    margin-bottom: 1.5rem;
}

.client-logo img {
    max-width: 200px;
    max-height: 160px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #1e293b;
    font-size: 1.1rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.quote-icon i {
    font-size: 2.5rem;
    color: #e2e8f0;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2.5rem;
    color: #60a5fa;
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -15px;
    left: 0;
}

.testimonial-text::after {
    bottom: -35px;
    right: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(96, 165, 250, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: #3b82f6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3b82f6;
    transform: scale(1.3);
}

/* Clients Logos Slider - Mejorado */
.clients-logos {
    text-align: center;
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}

.clients-logos h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.logos-track {
    display: flex;
    animation: slideLogos 30s linear infinite;
    width: max-content;
}

.logo-item {
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 1.5rem;
    position: relative;
}

/* Efecto de color cuando el logo estÃ¡ en el centro */
.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-item.center-active::before {
    opacity: 1;
}

.logo-item img {
    max-width: 110px;
    max-height: 55px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-item.center-active img,
.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #233499 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#contact-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #fbbf24;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

#footer-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: #64748b;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    color: #64748b;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #60a5fa;
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: rotate(360deg) scale(1.1);
}

.why-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.why-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Stats Section in Why Choose Us */
.why-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-item-large {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.stat-icon {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== IMPROVED TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

#testimonials-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 400px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.client-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 0.5rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.quote-icon {
    font-size: 3rem;
    color: #60a5fa;
    opacity: 0.3;
}

.testimonial-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: white;
    font-size: 1.1rem;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #60a5fa;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(96, 165, 250, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }

    .quote-icon {
        font-size: 2rem;
    }
}

/* Animaciones */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f8fafc;
        /* Fondo claro para mejor contraste */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: #1e293b;
        /* Color oscuro para mejor legibilidad */
        padding: 1rem;
        display: block;
    }

    .nav-menu a:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonials-carousel {
        margin: 0 auto 3rem;
    }

    .testimonial-card {
        padding: 2rem 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .logo-item {
        padding: 1rem;
        margin-right: 1rem;
    }

    .logo-item img {
        max-width: 90px;
    }

    @keyframes slideLogos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NUEVOS ESTILOS PREMIUM ===== */

/* Canvas de partÃ­culas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Texto con gradiente animado */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #3b82f6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* SubtÃ­tulo del hero mejorado */
.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* BotÃ³n con efecto pulse */
.pulse-btn {
    animation: pulse-animation 2s infinite;
    position: relative;
    overflow: hidden;
}

.pulse-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pulse-btn:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes pulse-animation {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(96, 165, 250, 0.6), 0 0 30px rgba(96, 165, 250, 0.3);
    }
}

/* Producto destacado */
.featured-product {
    position: relative;
    border: 2px solid #60a5fa;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.3);
    animation: glow-border 3s ease-in-out infinite;
}

@keyframes glow-border {

    0%,
    100% {
        box-shadow: 0 10px 40px rgba(96, 165, 250, 0.3);
    }

    50% {
        box-shadow: 0 15px 50px rgba(96, 165, 250, 0.5), 0 0 20px rgba(96, 165, 250, 0.2);
    }
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Acciones de producto */
.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-actions .btn i {
    font-size: 0.9rem;
}

/* Toast Notifications */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 1.5rem;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success i {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error i {
    color: #ef4444;
}

.toast span {
    flex: 1;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mejoras responsive para nuevos elementos */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .toast {
        min-width: 280px;
        max-width: calc(100vw - 40px);
    }

    .flash-messages {
        right: 10px;
        left: 10px;
    }

    .product-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
}

/* AnimaciÃ³n de entrada suave para toda la pÃ¡gina */
@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: fadeInPage 0.5s ease-in;
}

/* ===== ESTILOS TARJETA PREMIUM INVENTARIOAPP ===== */

/* Header del producto */
.product-header {
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.product-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

/* Tagline */
.product-tagline {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #60a5fa;
    border-radius: 8px;
}

/* EstadÃ­sticas */
.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

/* SecciÃ³n de beneficios */
.benefits-section {
    margin-bottom: 2rem;
}

.benefits-title {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.premium-features {
    list-style: none;
    padding: 0;
}

.premium-features li {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #60a5fa;
    transition: all 0.3s ease;
}

.premium-features li:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

.premium-features li::before {
    display: none;
}

.feature-icon {
    font-size: 1.5rem;
    color: #60a5fa;
    min-width: 24px;
}

.premium-features li div {
    flex: 1;
}

.premium-features li strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.premium-features li p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Ideal para */
.ideal-for {
    margin-bottom: 1.5rem;
}

.ideal-for h4 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.05);
}

/* Testimonial mini */
.testimonial-mini {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    border-left: 4px solid #f59e0b;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    color: #f59e0b;
    opacity: 0.3;
}

.testimonial-mini p {
    font-style: italic;
    color: #78350f;
    margin: 0 0 0.75rem 0;
    padding-left: 2rem;
    line-height: 1.6;
}

.testimonial-author-mini {
    font-size: 0.9rem;
    color: #92400e;
    padding-left: 2rem;
}

.testimonial-author-mini strong {
    color: #78350f;
}

/* SecciÃ³n de precio */
.price-section {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #86efac;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #166534;
    margin-bottom: 0.5rem;
}

.product-price-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #15803d;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #15803d;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #166534;
}

/* CTAs */
.cta-section {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Badge de garantÃ­a */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #166534;
    border: 1px solid #86efac;
}

.guarantee-badge i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Responsive para tarjeta premium */
@media (max-width: 768px) {
    .product-stats {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .premium-features li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-section {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .tags-container {
        justify-content: center;
    }

    .product-tagline {
        font-size: 0.95rem;
    }

    .amount {
        font-size: 2rem;
    }
}

/* FAQ Section Styles */
.faq {
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.faq-item {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    border-left: 5px solid #3b82f6;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.12);
    border-color: #cbd5e1;
}

.faq-q-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.faq-q-header i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ebf5ff;
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NUEVO DISEÃ‘O EJECUTIVO DE PRODUCTOS (COMPACTO)
   ============================================ */

.featured-product-wrapper {
    position: relative;
    margin-bottom: 4rem;
}

.product-card-horizontal {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    min-height: 380px;
}

.product-card-horizontal-image {
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.product-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Efecto de luz ambiental sutil */
.product-card-horizontal-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    top: -25%;
    left: -25%;
}

.product-card-horizontal-image.habity-featured-image {
    background: #064e3b;
}

.product-card-horizontal-image.habity-featured-image::before {
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
}

.featured-product-logo {
    width: auto;
    max-width: 160px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
}

.product-card-horizontal-image i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.product-card-horizontal-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card-horizontal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-tagline {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.feature-chip {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-chip i {
    width: 24px;
    height: 24px;
    background: #f1f5f9;
    color: #3b82f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.habity-featured-image + .product-card-horizontal-content .feature-chip i {
    background: #f0fdf4;
    color: #10b981;
}

.product-actions-horizontal {
    display: flex;
    gap: 1rem;
}

.product-actions-horizontal .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .product-card-horizontal {
        grid-template-columns: 1fr;
    }
    
    .product-card-horizontal-image {
        min-height: 250px;
    }
    
    .product-card-horizontal-content {
        padding: 2rem;
    }
}

@media (max-width: 900px) {
}

/* Grid de productos compactos */
.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card-compact {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.product-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #60a5fa;
}

.product-icon-compact {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-icon-compact i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.product-card-compact h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.product-desc-compact {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-features-compact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features-compact-list span {
    background: #f8fafc;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    color: #475569;
}

.product-footer-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.price-tag {
    font-weight: 700;
    color: #3b82f6;
    font-size: 0.9rem;
}

.btn-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.btn-link:hover {
    transform: translateX(4px);
    color: #2563eb;
}

/* ============================================
   NUEVA SECCIÃ“N DE TESTIMONIOS - MOSAICO
   ============================================ */

.testimonials-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card-mosaic {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* DecoraciÃ³n interna sutil */
.testimonial-card-mosaic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(59, 130, 246, 0.05) 50%);
    z-index: 0;
}

.testimonial-card-mosaic:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-large {
    grid-row: span 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: none;
}

.testimonial-large::before {
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.03) 50%);
}

.testimonial-highlight {
    border-left: 5px solid #3b82f6;
}

.testimonial-quote-mark {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
}

.testimonial-large .testimonial-quote-mark {
    color: rgba(255, 255, 255, 0.05);
}

.testimonial-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-large .testimonial-body p {
    color: #cbd5e1;
}

.testimonial-author-mosaic {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.author-avatar-mosaic {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
}

.author-avatar-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.author-details strong {
    display: block;
    font-size: 0.9rem;
    color: #1e293b;
}

.author-details span {
    font-size: 0.75rem;
    color: #64748b;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.7rem;
}

/* Contador de clientes */
.clients-counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.counter-item {
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.counter-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* ============================================
   OPTIMIZACIÃ“N DE RESPONSIVIDAD (MOBILE & TABLET)
   ============================================ */

/* Tablet (1024px y menor) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .product-card-horizontal {
        grid-template-columns: 1fr;
    }
    
    .product-card-horizontal-image {
        min-height: 280px;
    }

    .testimonials-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphone y Tablets pequeÃ±as (768px y menor) */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Ajuste de Productos Destacados en MÃ³vil */
    .product-card-horizontal-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .product-features-compact {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .product-actions-horizontal {
        flex-direction: column;
    }

    /* Testimonios y Contadores */
    .testimonials-mosaic {
        grid-template-columns: 1fr;
    }

    .clients-counter {
        flex-direction: column;
        gap: 2rem;
        border-radius: 30px;
        padding: 2rem 1rem;
    }

    /* Grillas de Servicios y FAQ */
    .services-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Contacto */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Celulares pequeÃ±os (480px y menor) */
@media (max-width: 480px) {
    .navbar {
        height: 75px; /* Un poco mÃ¡s de aire */
    }

    .logo {
        width: 180px; /* TamaÃ±o ideal para legibilidad */
        height: auto; /* IMPORTANTE: Mantener proporciones */
        max-height: 45px;
        object-fit: contain;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    /* Logos de Clientes mÃ¡s pequeÃ±os para que quepan */
    .logo-item img {
        max-width: 100px;
    }

    /* Ajustar cards compactas */
    .product-card-compact {
        padding: 1.25rem;
    }
}

/* Responsive */
.product-card-horizontal-image.habity-featured-image {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    padding: 2rem;
}

.featured-product-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

@media (max-width: 900px) {
    .product-card-horizontal {
        flex-direction: column;
    }

    .product-card-horizontal-image {
        flex: 0 0 auto;
        padding: 2rem;
    }

    .testimonials-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid-compact {
        grid-template-columns: 1fr;
    }

    .testimonials-mosaic {
        grid-template-columns: 1fr;
    }

    .clients-counter {
        flex-direction: column;
        gap: 1rem;
        border-radius: 20px;
    }

    .product-actions-horizontal {
        flex-direction: column;
    }
}