/* WP Security Shield — Landing Page CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #0d2444;
    --blue-mid:  #163460;
    --blue-light:#2563eb;
    --accent:    #3b82f6;
    --gold:      #f59e0b;
    --text:      #1e293b;
    --muted:     #64748b;
    --bg:        #f8fafc;
    --white:     #ffffff;
    --border:    #e2e8f0;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); }

a { text-decoration: none; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13,36,68,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0 40px;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 1.1rem; font-weight: 800; letter-spacing: .03em; }
.navbar-brand span { color: #60a5fa; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a { color: #cbd5e1; font-size: .9rem; font-weight: 500; transition: color .2s; }
.navbar-links a:hover { color: #fff; }
.navbar-cta { background: var(--accent); color: #fff !important; padding: 9px 22px; border-radius: 8px; font-weight: 700 !important; transition: background .2s !important; }
.navbar-cta:hover { background: #1d4ed8 !important; color: #fff !important; }

/* ── HERO / SLIDER ── */
.hero {
    background: linear-gradient(135deg, #0d2444 0%, #163460 50%, #0d2444 100%);
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 100px 40px 60px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.35);
    color: #93c5fd; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px; margin-bottom: 28px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: #fff; text-align: center; line-height: 1.15; margin-bottom: 20px; }
.hero-title .highlight { color: #60a5fa; }
.hero-subtitle { font-size: 1.12rem; color: #94a3b8; text-align: center; max-width: 640px; line-height: 1.7; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
.btn-hero-primary {
    background: var(--accent); color: #fff; padding: 14px 32px; border-radius: 10px;
    font-weight: 700; font-size: 1rem; transition: all .2s; border: 2px solid var(--accent);
}
.btn-hero-primary:hover { background: #1d4ed8; border-color: #1d4ed8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn-hero-secondary {
    background: transparent; color: #e2e8f0; padding: 14px 32px; border-radius: 10px;
    font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,.2); transition: all .2s;
}
.btn-hero-secondary:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* Slider de características en el hero */
.slider-wrap { width: 100%; max-width: 860px; position: relative; }
.slider-track { display: flex; gap: 20px; justify-content: center; }
.slide-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 28px 24px; flex: 1; min-width: 0;
    text-align: center; transition: all .3s; cursor: default;
}
.slide-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.slide-icon { font-size: 2.4rem; margin-bottom: 12px; }
.slide-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.slide-desc { color: #94a3b8; font-size: .85rem; line-height: 1.6; }

/* ── SECCIÓN CARACTERÍSTICAS ── */
.section { padding: 90px 40px; }
.section-label { text-align: center; color: var(--accent); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--text); margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto 56px; line-height: 1.7; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.feature-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    padding: 30px 26px; transition: all .25s;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.feature-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-3px); border-color: #bfdbfe; }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── SECCIÓN PRECIOS ── */
.pricing-section { background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.pricing-card {
    background: var(--white); border: 2px solid var(--border); border-radius: 20px;
    padding: 32px 26px; display: flex; flex-direction: column;
    transition: all .25s; position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
.pricing-card.highlighted { border-color: var(--accent); box-shadow: 0 8px 40px rgba(37,99,235,.2); transform: scale(1.03); }
.pricing-card.highlighted:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: .72rem; font-weight: 800;
    padding: 4px 16px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.pricing-name { font-size: .85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.pricing-currency { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-amount { font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; }
.pricing-period { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: var(--muted); padding: 7px 0; border-bottom: 1px solid #f1f5f9; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.pricing-features li:last-child { border-bottom: none; }
.btn-pricing {
    display: block; text-align: center; padding: 13px; border-radius: 10px;
    font-weight: 700; font-size: .95rem; transition: all .2s;
    background: #eff6ff; color: var(--accent); border: 2px solid #bfdbfe;
}
.btn-pricing:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.pricing-card.highlighted .btn-pricing { background: var(--accent); color: #fff; border-color: var(--accent); }
.pricing-card.highlighted .btn-pricing:hover { background: #1d4ed8; border-color: #1d4ed8; }

/* ── FOOTER ── */
.landing-footer {
    background: var(--blue);
    color: #94a3b8;
    padding: 40px;
    text-align: center;
    font-size: .88rem;
}
.landing-footer strong { color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: .06em; }
.landing-footer p { margin-top: 6px; }
.landing-footer .footer-contact { margin-top: 14px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.landing-footer .footer-contact a { color: #60a5fa; font-size: .85rem; }
.landing-footer .footer-contact a:hover { color: #fff; }
.landing-footer .copyright { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; color: #ffffff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.highlighted { transform: scale(1); }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .navbar-links { display: none; }
    .hero { padding: 90px 20px 50px; }
    .slider-track { flex-direction: column; }
    .section { padding: 60px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.highlighted { transform: none; }
}
