/* RESET & BASICS */
:root {
    --bg-dark: #0a0a0a;       /* Negro profundo */
    --bg-card: #141414;       /* Gris muy oscuro para tarjetas */
    --text-main: #e0e0e0;     /* Blanco suave */
    --text-muted: #a0a0a0;    /* Gris para textos secundarios */
    --accent: #00f0ff;        /* Cian Neón (Tech) */
    --accent-2: #bd00ff;      /* Morado para la opción Diseño */
    --border: 1px solid #333;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Courier New', Courier, monospace; /* Toque industrial */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Arial Black', sans-serif; letter-spacing: -1px; }

/* LAYOUT PRINCIPAL */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* HEADER & BURGER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: var(--border);
    background: rgba(10, 10, 10, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { font-size: 1.5rem; font-weight: bold; color: var(--text-main); text-decoration: none; }
.logo span { color: var(--accent); }

/* SECCIÓN DEL EMBUDO (Lo que me mostraste en la foto) */
.selector-cotizacion {
    text-align: center;
    padding: 4rem 1rem;
}

.selector-cotizacion h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* GRID DE TARJETAS */
.opciones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.card-opcion {
    background: var(--bg-card);
    border: var(--border);
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-opcion:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.card-opcion h3 { margin-top: 0; font-size: 1.5rem; }
.card-opcion p { color: var(--text-muted); }

/* Diferenciación visual */
.dev-mode:hover { border-color: var(--accent); }
.full-mode:hover { border-color: var(--accent-2); box-shadow: 0 0 20px rgba(189, 0, 255, 0.1); }

/* AVISO CRÉDITO */
.aviso-credito {
    margin-top: 3rem;
    background: linear-gradient(90deg, #1a1a1a, #222);
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #00ff88; /* Verde dinero */
    display: inline-block;
}

/* MENÚ BURGER (Mobile & Desktop Overlay) */
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .opciones-grid { grid-template-columns: 1fr; }
}