:root {
    --primary-color: #39FF14;
    /* Neon Green */
    --secondary-color: #FFFFFF;
    /* High Contrast White */
    --bg-dark: #050505;
    /* Casi negro */
    --bg-darker: #000000;
    --text-white: #E0E0E0;
    --text-gray: #A0A0A0;
    --glass-bg: rgba(20, 20, 20, 0.4);
    /* Más oscuro */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Scroll Reveal Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utilitarios */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cyber Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--bg-dark);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    margin-left: 20px;
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    color: #fff;
}

/* Header & Nav */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.nav-menu ul li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.nav-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 25px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown a:hover {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
}


.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 50%, var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(0, 255, 255, 0.1);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

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

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

.section-header p {
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover .arrow {
    transform: translateX(5px);
}

.arrow {
    transition: transform 0.3s;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-darker);
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    text-align: center;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 15px;
    display: none;
}

@media (min-width: 900px) {
    .process-arrow {
        display: block;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    /* Alternating background */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FFD700;
    /* Gold */
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
    color: var(--primary-color);
}

.client-type {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
    color: var(--text-gray);
    border-top: 1px solid var(--border-glass);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 1.2rem;
}

.info-item .icon {
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        width: 45%;
    }
}

/* CTA Banner Position Update */
.cta-banner {
    padding: 60px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.1), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(57, 255, 20, 0.3);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 20px;
    background-color: var(--bg-darker);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Adaptable 4 cols on wide screens */
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centrar horizontalmente todo el contenido */
    height: 100%;
    /* Altura completa del grid cell */
}

.service-card h3 {
    font-size: 1.2rem;
    margin: 15px 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    width: 100%;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.4;
    flex-grow: 1;
    /* Empujar botón hacia abajo */
}

.icon-wrapper {
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    /* Ancho fijo para centrado */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}


.icon-wrapper svg {
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.5));
    /* Glow verde neón suave */
}


.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {

    .header-content .btn {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid var(--primary-color);
        padding: 40px 20px;
        backdrop-filter: blur(20px);
        z-index: 1000;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: white;
        margin: 6px 0;
        transition: 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Product Pages Styles */
.product-page {
    padding-top: 100px;
}

.product-hero {
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-image-container {
    position: relative;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    background: var(--bg-dark);
}

.product-info h1 {
    font-size: 4rem;
    margin: 10px 0 20px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.spec-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    text-align: center;
}

.spec-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}

.product-details {
    padding: 40px;
    margin-bottom: 80px;
}

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

.detail-item {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.detail-item strong {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* New Product Expansion Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--secondary-color);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.usage-badge {
    background: rgba(0, 243, 255, 0.1);
    color: var(--secondary-color);
    padding: 6px 15px;
    border: 1px solid var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
}

.product-cta .btn {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* AIDA Framework Styles */
.aida-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.pain-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.pain-box {
    background: rgba(57, 255, 20, 0.05);
    border: 1px dashed var(--primary-color);
    padding: 30px;
    border-radius: 4px;
}

.pain-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.2rem;
}

.solution-box {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--secondary-color);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.solution-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.2rem;
}

.trust-elements {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 80px 0;
    padding: 40px;
    background: var(--glass-bg);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.trust-item h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.aida-list {
    list-style: none;
    padding: 0;
}

.aida-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.aida-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 3px;
}

.solution-box .aida-list li::before {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .pain-solution-grid {
        grid-template-columns: 1fr;
    }

    .trust-elements {
        flex-direction: column;
        align-items: center;
    }
}