:root {
    --ev-orange: #f97316;
    --ev-orange-dark: #ea580c;
    --ev-navy: #0f172a;
}
body { font-family: 'Inter', sans-serif; color: var(--ev-navy); }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--ev-orange) 0%, var(--ev-orange-dark) 60%, #9a3412 100%);
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}
.btn-hero {
    background: #fff;
    color: var(--ev-orange-dark);
    font-weight: 700;
    border: none;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.2);
    color: var(--ev-orange-dark);
}

/* Secciones */
section { padding: 72px 0; }
section:nth-child(even) { background: #f8fafc; }
.section-title { font-size: 1.6rem; font-weight: 800; margin-bottom: .4rem; }
.section-sub { color: #64748b; margin-bottom: 2.5rem; }

/* Semanas */
.semana-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.semana-card:hover {
    border-color: var(--ev-orange);
    box-shadow: 0 4px 16px rgba(249,115,22,.12);
}
.semana-num {
    width: 36px; height: 36px;
    background: var(--ev-orange);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

/* Servicios */
.svc-card {
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}
.svc-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Colegios → ver .colegio-card más abajo */

/* Tabla de precios */
.precio-tabla th, .precio-tabla td { padding: .6rem .9rem; }
.precio-ampa   { font-weight: 700; font-size: .92rem; color: var(--ev-navy); }
.precio-noampa { font-size: .8rem; }
.precio-legend-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

/* Tarjetas de colegio */
.colegio-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1rem;
    background: #fff;
    text-align: center;
    height: 100%;
    transition: border-color .15s, box-shadow .15s;
}
.colegio-card:hover {
    border-color: var(--ev-orange);
    box-shadow: 0 4px 16px rgba(249,115,22,.1);
}
.colegio-inscritos {
    font-size: .78rem;
    margin-top: .35rem;
    color: var(--ev-orange-dark);
    font-weight: 500;
}

/* Contactos */
.contacto-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
    background: #fff;
    height: 100%;
}
.contacto-card--general {
    border-color: var(--ev-orange);
    background: #fff7ed;
}
.contacto-badge {
    display: inline-block;
    background: var(--ev-orange);
    color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.contacto-nombre { font-size: .88rem; color: #475569; margin-bottom: .35rem; }
.contacto-tel {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ev-orange-dark);
    text-decoration: none;
}
.contacto-tel:hover { text-decoration: underline; }

/* Footer */
footer { background: var(--ev-navy); color: #94a3b8; padding: 2rem 0; font-size: .85rem; }
