/* =========================================================
   CRM Prospector — Landing Page (cs_theme_basic_web)
   Tema base de la web pública del cliente (/home)

   Los colores dinámicos (primary-color, gradiente de título,
   fondo de sección info, hero-bg) se inyectan como CSS custom
   properties desde home.php vía un <style> inline mínimo.
   ========================================================= */

body {
    font-family: var(--font-main);
    background-color: var(--body-bg);
    color: #1e293b;
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ── Hero ─────────────────────────────────────────────── */
/* padding y background se controlan desde home.php (dinámico) */
.hero-section {
    padding: 100px 0;
}

/* ── Feature cards ────────────────────────────────────── */
.feature-card {
    border: none;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

/* ── Icon box ─────────────────────────────────────────── */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ── Botones ──────────────────────────────────────────── */
.btn-premium {
    padding: 0.8rem 2rem;
    border-radius: 50rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-premium-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}
.btn-premium-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
    color: #fff;
}

/* ── Texto con gradiente (color dinámico vía --text-gradient) */
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Sección características (color dinámico vía --info-bg) */
#caracteristicas {
    background-color: var(--info-bg);
}

/* ── Aviso de cookies ─────────────────────────────────── */
#cookie-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    max-width: 600px;
    width: 90%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
}
#cookie-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 50rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.cookie-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
