:root {
    /* Paleta de Colores Moderna (Azul Marino, Blanco, Acento Neón/Dorado) */
    --sc-primary: #0f172a;       /* Azul oscuro elegante */
    --sc-secondary: #3b82f6;     /* Azul vibrante */
    --sc-accent: #f59e0b;        /* Dorado/Naranja para contraste */
    --sc-bg: #f8fafc;            /* Gris muy claro de fondo */
    --sc-card-bg: #ffffff;
    --text-main: #30e8bf;
    --text-light: #64748b;

    /* Espaciado y Bordes */
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(59, 130, 246, 0.25);
}

/* Base */
.sc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif; /* Fuente moderna recomendada */
    background-color: var(--sc-bg);
    color: var(--text-main);
}

/* --- Sección 1: Header --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.badge-usa {
    background: rgba(59, 130, 246, 0.1);
    color: var(--sc-secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sc-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-highlight {
    color: var(--sc-secondary);
    position: relative;
    white-space: nowrap;
}

/* Subrayado creativo */
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--sc-accent);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-15deg);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Sección 1: Grid de Cards --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.benefit-card {
    background: var(--sc-card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--sc-secondary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sc-secondary), #2563eb);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sc-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Estilos específicos para la Card de Dinero */
.highlight-card {
    background: linear-gradient(145deg, #ffffff, #f0f9ff);
    border: 1px solid var(--sc-secondary);
}

.impact-text {
    font-size: 1.1rem;
    color: var(--sc-primary);
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sc-accent);
    font-weight: bold;
}

/* --- Sección 2: SC BECAS USP --- */
.sc-value-proposition {
    background-color: var(--sc-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.sc-content-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .sc-content-wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.sc-text {
    padding: 4rem 3rem;
    flex: 1;
    z-index: 2;
}

.sc-badge {
    color: var(--sc-accent);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.sc-text h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.experience-block {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--sc-accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 2rem;
}

.main-quote {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.sc-description {
    color: #94a3b8;
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.6;
}

.sc-description strong {
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--sc-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
}

.cta-button:hover {
    background-color: var(--sc-accent);
    transform: scale(1.05);
    color: var(--sc-primary);
}

/* Visual Side */
.sc-visual {
    flex: 1;
    min-height: 400px;
    background-color: #1e293b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/beneficio.jpg'); /* Placeholder imagen deporte */
    background-size: cover;
    background-position: center;
}

/* Overlay azul sobre la imagen */
.sc-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--sc-primary), transparent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-main { font-size: 2rem; }
    .sc-text h2 { font-size: 2rem; }
    .sc-text { padding: 2.5rem 1.5rem; }
}
