body {
        font-family: 'Poppins', sans-serif;       
        background: #f8f9fa;
        color: #333;
        line-height: 1.6;
    }
    .cabe {
        background: linear-gradient(90deg, #004080, #0073e6);
        color: white;
        padding: 30px 20px;
        text-align: center;
        margin-top:0;
    }
    .cabe h1 {
      color:#fff;
        margin: 10px 0;
        font-size: 2em;
    }
    .cabe p {
       /* margin: 5px 0;*/
        font-size: 1.1em;
    }
    .sos {
        max-width: 1100px;
        margin: auto;       
        padding: 2rem;
    }
    h2 {
        color: #004080;
        margin: 2rem 0 1rem;
        font-weight: 700;
      text-align:center;
    }
    p {
        margin-bottom: 1rem;
    }
    .pago {
        display:flex;
        flex-wrap: wrap;       
        gap: 1.5rem;
    }
    .pago h2 {        
        flex: 1 1 100%;
    }
    .card1 {
        flex: 1 1 300px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .card1:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
	.card1 h3{text-align:center;}
	.card1 ul{margin-left:70px;}
    .opcion {
        background: #003366;
        color: white;
        padding: 1rem;
        font-weight: bold;
        text-align: center;
    }
    .texto {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .tabla-cursos {
        width: 100%;
        border-collapse: collapse;
        margin-top: 1rem;
    }
    .tabla-cursos th, .tabla-cursos td {
        padding: 0.8rem;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }
    .tabla-cursos th {
        background: #004080;
        color: white;
    }
.tabla-cursos td::before {
    display:none;
}
  section .tabla-cursos tr {
  background: none;
}
    .tabla-cursos tr:hover {
        background: #f1f5ff;
    }

    /* ===== BOTONES ===== */
    .btn-table {
        display: inline-block;
        background: #ff6600;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-weight: 600;
        transition: background 0.2s ease;
    }
    .btn-table:hover {
        background: #e65500;
    }

    /* ===== CTA FINAL ===== */
    .cta {
        background: #ff6600;
        color: white;
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
        font-size: 1.1rem;
        margin-top: 2rem;
        line-height: 1.8;
    }
    .cta a {
        color: white;
        text-decoration: underline;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 767px) {
      .cabe{
      		padding:30px 10px;
      }  
      .cabe h1 {
            font-size: 1.8rem;
        }
        .tabla-cursos thead {
            display: none;
        }
        .tabla-cursos tr {
            display: block;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: white;
        }
        .tabla-cursos td {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 1rem;
        }
        .tabla-cursos td::before {
            display:inline-block;
            font-weight: bold;
            color: #004080;
            content: attr(data-label);
        }
      td[data-label]:before {
 		 white-space: pre-line; /* respeta saltos de línea */
		}
    }