/* --- 150220262009 estilos generales --- */
.logotipo {
    max-height: 50px;
}

:root {
    /* 150220261952 colores de marca */
    --primary-dark: rgb(6, 7, 27);     /* azul oscuro profundo */
    --accent-green: rgb(141, 238, 18); /* verde neon vibrante */
    --card-radius: 24px;
    --navbar-height: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: var(--primary-dark);
    padding-top: var(--navbar-height);
    overflow-x: hidden;
}

/* --- 150220261953 utilidades --- */
.text-primary-custom {
    color: var(--primary-dark) !important;
}

.text-accent {
    color: var(--accent-green) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-accent {
    background-color: var(--accent-green) !important;
}

.fw-extra-bold {
    font-weight: 800;
}

.radius-xl {
    border-radius: var(--card-radius);
}

/* --- 150220261954 sistema de botones --- */
.btn-base {
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
}

/* 150220261954 boton para fondos oscuros */
/* Usado en: Navbar, Hero, Plan Popular */
.btn-arhez-green {
    background-color: var(--accent-green);
    color: var(--primary-dark);
    border-color: var(--accent-green);
    box-shadow: 0 4px 15px rgba(141, 238, 18, 0.3);
}

.btn-arhez-green:hover {
    background-color: #ffffff !important;
    color: var(--primary-dark) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* 150220261954 boton para fondos claros */
/* Usado en: Planes Básico, Enterprise y Formulario de Contacto */
.btn-arhez-dark {
    background-color: var(--primary-dark); /* Fondo Oscuro */
    color: #ffffff;                        /* Texto Blanco */
    border-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(6, 7, 27, 0.3);
}

.btn-arhez-dark:hover {
    background-color: var(--accent-green) !important; /* Fondo Verde al pasar mouse */
    color: var(--primary-dark) !important;            /* Texto Oscuro */
    border-color: var(--accent-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(141, 238, 18, 0.4);
}

/* 150220261955 boton con borde para Hero */
.btn-arhez-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-arhez-outline:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
    border-color: #ffffff;
}

/* --- 150220261955 navegacion --- */
.navbar {
    height: var(--navbar-height);
    background-color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1030;
}

.navbar-brand {
    color: white !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-dark);
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        padding: 20px;
        border-bottom: 2px solid var(--accent-green);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

/* --- 150220261955 seccion Hero --- */
.hero-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(141, 238, 18, 0.08) 0%, rgba(6, 7, 27, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

.hero-visual-wrapper {
    position: relative;
    padding: 20px;
}

.main-dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.dash-dot.active {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* 150220261956 iconos fijos y badges flotantes */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-badge .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
    flex-shrink: 0;
}

.floating-badge.top-right {
    top: -15px;
    right: 10px;
    border-left: 4px solid var(--accent-green);
}

.floating-badge.bottom-left {
    bottom: -15px;
    left: -10px;
    border-left: 4px solid #3b82f6;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .hero-visual-wrapper {
        margin-top: 50px;
    }
    .floating-badge {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin-bottom: 10px;
        width: 100%;
    }
}

/* --- 150220261956 seccion de impacto con datos graficos --- */
.impact-section-light {
    background-color: #f9fafb;
    padding: 100px 0;
    position: relative;
}

.stat-card-clean {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid var(--primary-dark);
}

.stat-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-left-color: var(--accent-green);
}

.stat-number-clean {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-title-clean {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-desc-clean {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.source-tag {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
    border-top: 1px solid #f3f4f6;
    padding-top: 10px;
}

.chart-card-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: 100%;
}

/* --- 150220261957 seccion de servicios --- */
.services-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

.service-card-pro {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    border-bottom: 4px solid var(--accent-green);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--primary-dark);
    color: var(--accent-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(6, 7, 27, 0.15);
    transition: 0.3s;
}

.service-card-pro:hover .service-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.service-features li i {
    color: var(--accent-green);
    margin-right: 10px;
    background: rgba(141, 238, 18, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.7rem;
}

.service-link {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.service-link:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

/* --- 150220261958 seccion de proceso --- */
.process-section-dark {
    background-color: var(--primary-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.process-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.circuit-line {
    display: none;
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@media (min-width: 992px) {
    .circuit-line {
        display: block;
    }
}

.circuit-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    animation: circuitFlow 3s infinite linear;
}

@keyframes circuitFlow {
    0% {
        left: -10%;
    }
    100% {
        left: 110%;
    }
}

.process-step-box {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: all 0.4s ease;
}

.step-node {
    width: 80px;
    height: 80px;
    background: var(--primary-dark);
    border: 2px solid rgba(141, 238, 18, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
    z-index: 5;
}

.process-step-box:hover .step-node {
    background: var(--accent-green);
    color: var(--primary-dark);
    border-color: var(--accent-green);
    box-shadow: 0 0 30px rgba(141, 238, 18, 0.6);
    transform: scale(1.1);
}

.step-watermark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    transition: 0.4s;
}

.process-step-box:hover .step-watermark {
    color: rgba(141, 238, 18, 0.1);
    transform: translateX(-50%) translateY(-10px);
}

.step-heading {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.step-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- 150220261958 seccion de precios --- */
.pricing-section-pro {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.pricing-card-tier {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-green);
}

.pricing-card-tier.popular {
    background: var(--primary-dark);
    color: white;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 25px 50px rgba(6, 7, 27, 0.25);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(141, 238, 18, 0.4);
}

.price-tag-wrapper {
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.popular .amount,
.popular .currency {
    color: white;
}

.popular .period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #475569;
}

.popular .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 0.8rem;
    background: rgba(141, 238, 18, 0.15);
    padding: 5px;
    border-radius: 50%;
}

/* --- 150220261958 seccion de contacto y preguntas frecuentes --- */
.contact-section-pro {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.faq-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    background: #f8fafc;
}

.accordion-button {
    background-color: #f8fafc;
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: none !important;
    padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--accent-green);
    border-bottom: 1px solid #e2e8f0;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306071b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238dee12'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--primary-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-btn:hover {
    background: var(--primary-dark);
    color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 7, 27, 0.2);
}

/* 150220261959 formulario de contacto */
.form-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-label-pro {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-pro,
.form-select-pro {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #334155;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-pro:focus,
.form-select-pro:focus {
    background-color: #fff;
    border-color: var(--accent-green);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(141, 238, 18, 0.15);
}

textarea.form-control-pro {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background-color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-pro:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(141, 238, 18, 0.3);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 1.5rem;
    }
}

footer {
    background-color: var(--primary-dark);
    color: white;
}