/* Archivo: assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #2563EB;
    --dark-bg: #0B1120; /* Color oscuro del hero y footer de la imagen */
    --light-bg: #F8FAFC;
    --text-main: #1E293B;
    --text-muted: #64748B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
}

/* Tipografía y Botones */
.fw-bold { font-weight: 700 !important; }
.fw-extrabold { font-weight: 800 !important; }

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-primary:hover { background-color: #1D4ED8; border-color: #1D4ED8; transform: translateY(-2px); }

.btn-outline-light { border-width: 2px; font-weight: 600; border-radius: 8px; }
.btn-outline-primary { border-width: 2px; font-weight: 600; border-radius: 8px; color: var(--primary-blue); border-color: var(--primary-blue); }
.btn-outline-primary:hover { background-color: var(--primary-blue); color: #fff; }

/* Navbar */
.navbar-custom { background-color: var(--dark-bg); padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar-custom .nav-link { color: #fff; font-weight: 500; font-size: 0.95rem; margin: 0 10px; }
.navbar-custom .nav-link:hover { color: var(--primary-blue); }

/* Hero Section */
.hero-section {
    background-color: var(--dark-bg);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}
.hero-overlay { background: linear-gradient(90deg, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.7) 100%); }

/* Tarjetas de Precios Dinámicas (Base de Datos) */
.price-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: var(--primary-blue); }
.price-card.highlight { background-color: var(--primary-blue); color: #fff; border-color: var(--primary-blue); transform: scale(1.05); }
.price-card.highlight:hover { transform: scale(1.05) translateY(-5px); }
.price-card .price-amount { font-size: 3rem; font-weight: 800; line-height: 1; margin: 10px 0; }
.price-card.highlight .text-muted { color: #DBEAFE !important; }

/* Cómo funciona steps */
.step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    height: 100%;
}
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-blue);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Testimonios */
.testimonial-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 1.5rem; }

/* Switch de moneda */
.form-check-input:checked { background-color: var(--primary-blue); border-color: var(--primary-blue); }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white;
    border-radius: 50%; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;
    font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }