/* --- LGA CORE STYLES v4.0 --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

:root {
    --primary: #4f46e5; /* Indigo 600 */
    --primary-dark: #4338ca; /* Indigo 700 */
    --success: #22c55e; /* Green 500 */
    --bg-gray: #f3f4f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

/* RESET BÁSICO */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-gray); color: var(--text-dark); -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }

/* UTILIDADES (Reemplazo de Tailwind) */
.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pb-6 { padding-bottom: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* TIPOGRAFÍA */
.text-center { text-align: center; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-white { color: #ffffff; }
.text-indigo-600 { color: var(--primary); }

/* COMPONENTES */
.bg-white { background-color: #ffffff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-300 { background-color: #d1d5db; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.border-t { border-top: 1px solid #e5e7eb; }

/* ESTRUCTURA CONSOLA */
.consola-wrapper {
    max-width: 1100px; margin: 0 auto; 
    background-color: #fff; 
    border-radius: 0; /* Mobile first */
    box-shadow: none; 
    overflow: hidden;
}
.consola-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* RESPONSIVE (PC) */
@media (min-width: 768px) {
    body { padding: 2rem; }
    .consola-wrapper { border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
    .consola-grid { grid-template-columns: 2fr 1fr; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
}

/* BOTONES */
.btn-primary {
    background-color: var(--primary); color: white;
    padding: 0.75rem 1.5rem; border-radius: 0.5rem;
    font-weight: 700; transition: background 0.2s;
    display: inline-block; width: 100%; text-align: center;
}
.btn-primary:hover { background-color: var(--primary-dark); }

.btn-whatsapp {
    background-color: var(--success); color: white;
    padding: 0.75rem; border-radius: 0.5rem;
    font-weight: 700; display: flex; align-items: center; justify-content: center;
    width: 100%; transition: transform 0.1s;
}
.btn-whatsapp:hover { transform: scale(1.02); }

/* EXTRAS */
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-16 { height: 4rem; }
.w-16 { width: 4rem; }