/* Canal de Denuncias - Landing Page */
/* Dark teal/emerald identity */

/* ---- Navbar ---- */
.landing-nav {
    background: #0f172a;
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.landing-nav .nav-link {
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
    transition: color 0.15s;
}
.landing-nav .nav-link:hover { color: white; }
.landing-nav-brand {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.landing-nav-brand:hover { color: white; }
.landing-nav-brand small {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--kt-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(13,148,136,0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

/* ---- Hero ---- */
.hero-section {
    background: #0f172a;
    color: white;
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(13,148,136,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13,148,136,0.3), transparent);
}
.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.hero-section .lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    line-height: 1.7;
}
.hero-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(13,148,136,0.1);
    color: var(--kt-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(13,148,136,0.2);
    letter-spacing: 0.02em;
}
.hero-gradient-text {
    background: linear-gradient(135deg, #5eead4 0%, #0d9488 50%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 500;
}
.hero-check svg { color: var(--kt-primary); }

/* ---- Features ---- */
.features-section {
    padding: 5rem 0;
    background: white;
}
.feature-card {
    background: var(--kt-gray-100);
    border-radius: var(--kt-radius-lg, 0.75rem);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: var(--kt-gray-200);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--kt-radius, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-card p { color: var(--kt-gray-600); font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* ---- Steps ---- */
.step-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--kt-radius-lg, 0.75rem);
    background: white;
    height: 100%;
    position: relative;
    border: 1px solid var(--kt-gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--kt-primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.85rem; color: var(--kt-gray-600); margin: 0; line-height: 1.6; }

/* ---- Pricing ---- */
.pricing-section {
    padding: 5rem 0;
    background: var(--kt-gray-100);
}
.pricing-card {
    background: white;
    border: 1px solid var(--kt-gray-200);
    border-radius: var(--kt-radius-lg, 0.75rem);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.pricing-card.featured {
    border-color: var(--kt-primary);
    box-shadow: 0 8px 30px rgba(13,148,136,0.1);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kt-primary);
    color: white;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-card .plan-name { font-size: 1.1rem; font-weight: 700; color: var(--kt-dark); margin-bottom: 0.4rem; }
.pricing-card .plan-employees { font-size: 0.82rem; color: var(--kt-gray-500); margin-bottom: 1rem; }
.pricing-card .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kt-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.pricing-card .plan-price small { font-size: 0.85rem; font-weight: 500; color: var(--kt-gray-500); }
.pricing-card .plan-period { font-size: 0.78rem; color: var(--kt-gray-500); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.pricing-features li {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--kt-gray-700);
    display: flex;
    align-items: start;
    gap: 0.5rem;
}
.pricing-features li svg { color: var(--kt-primary); flex-shrink: 0; margin-top: 2px; }

/* ---- FAQ ---- */
.faq-item {
    border: 1px solid var(--kt-gray-200);
    border-radius: var(--kt-radius-lg, 0.75rem);
    margin-bottom: 0.6rem;
    overflow: hidden;
    transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--kt-primary); }
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--kt-gray-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--kt-gray-400);
    font-weight: 400;
}
.faq-item[open] summary::after { content: '-'; color: var(--kt-primary); }
.faq-item .faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--kt-gray-600);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ---- CTA ---- */
.cta-section {
    padding: 5rem 0;
    background: #0f172a;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(13,148,136,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 { color: white; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 480px; margin: 0 auto 1.75rem; }

/* ---- Footer ---- */
.landing-footer {
    background: #0b1120;
    color: rgba(255,255,255,0.4);
    padding: 3rem 0 1.5rem;
}
.landing-footer h6 {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.landing-footer a {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.15s;
}
.landing-footer a:hover { color: var(--kt-primary); }
.landing-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 0.75rem;
}

/* ---- Section titles ---- */
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.section-subtitle { font-size: 0.95rem; color: var(--kt-gray-600); margin-bottom: 3rem; }

/* ---- Legal ---- */
.legal-card {
    background: white;
    border: 1px solid var(--kt-gray-200);
    border-radius: var(--kt-radius-lg, 0.75rem);
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s;
}
.legal-card:hover { transform: translateY(-2px); }
.legal-card-ok { border-color: rgba(13,148,136,0.2); background: var(--kt-primary-light); }
.legal-icon { margin-bottom: 0.75rem; }
.legal-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }

/* ---- Guide ---- */
.guide-section {
    padding: 5rem 0 3rem;
    background: #0f172a;
    color: white;
}
.guide-section h1 { font-size: 2.25rem; font-weight: 700; color: white; }
.guide-step {
    background: white;
    border-radius: var(--kt-radius-lg, 0.75rem);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--kt-gray-200);
}
.guide-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kt-primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.guide-tab-nav .nav-link {
    color: var(--kt-gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--kt-radius, 0.5rem);
}
.guide-tab-nav .nav-link.active {
    color: var(--kt-primary);
    background: var(--kt-primary-light);
    border-color: rgba(13,148,136,0.15);
}

/* ---- Glow button ---- */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13,148,136,0.3);
}
.btn-glow:hover { box-shadow: 0 6px 20px rgba(13,148,136,0.4); }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-section { padding: 4rem 0 3rem; }
    .hero-section h1 { font-size: 2.2rem; }
    .pricing-card { margin-bottom: 1.25rem; }
}
@media (max-width: 575.98px) {
    .hero-section h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .pricing-card .plan-price { font-size: 2rem; }
}
