    /* Estilos generales */
    :root {
        /* Paleta elegante vino + dorado */
        --primary: #6f1e3c;               /* vino elegante */
        --primary-dark: #4a1629;          /* vino oscuro */
        --accent: #d4af37;               /* dorado clásico */
        --accent-light: #f4e5c2;          /* dorado suave */
        --text: #2c2020;
        --text-light: #5a4a4a;
        --bg-light: #f7f2f5;
        --bg-section: #4a1629;
        --white: #ffffff;
        --shadow-sm: 0 2px 12px rgba(111, 30, 60, 0.08);
        --shadow-md: 0 4px 24px rgba(111, 30, 60, 0.12);
        --shadow-lg: 0 12px 48px rgba(111, 30, 60, 0.16);
        --radius: 16px;
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', 'Roboto', sans-serif;
        line-height: 1.7;
        color: var(--text);
        background-color: var(--bg-light);
        overflow-x: hidden;
    }

    /* Navegación */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1.15rem 8%;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        box-shadow: var(--shadow-sm);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        transition: var(--transition);
    }

    nav.scrolled {
        padding: 0.95rem 8%;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .logo h1 {
        color: var(--primary);
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: var(--transition);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
        font-size: 0.95rem;
        transition: var(--transition);
        padding-bottom: 0.2rem;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
    }

    .nav-links button {
        margin-left: 0.5rem;
    }

    button {
        padding: 0.6rem 1.4rem;
        border: none;
        border-radius: 999px;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
    }

    #loginBtn {
        background-color: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
    }

    #loginBtn:hover {
        background-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
    }

    #registerBtn {
        background-color: var(--accent);
        color: var(--text);
        border: none;
    }

    #registerBtn:hover {
        background-color: #b8941f;
        color: var(--white);
        transform: translateY(-2px);
    }

    /* Modales */
    .modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: rgba(44, 32, 32, 0.72);
        justify-content: center;
        align-items: center;
        padding: 2rem;
        backdrop-filter: blur(2px);
    }

    .modal-content {
        width: min(420px, 100%);
        background: var(--white);
        border-radius: var(--radius);
        padding: 2.5rem 2rem;
        box-shadow: var(--shadow-lg);
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .modal-content h2 {
        margin: 0;
        color: var(--primary);
        text-align: center;
        font-size: 1.6rem;
    }

    .modal-content form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content input {
        padding: 0.8rem 1rem;
        border-radius: 12px;
        border: 1px solid rgba(111, 30, 60, 0.15);
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .modal-content input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(111, 30, 60, 0.12);
    }

    .modal-content button[type="submit"] {
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 0.85rem;
        border-radius: 999px;
        font-weight: 600;
    }

    .modal-content button[type="submit"]:hover {
        background: var(--primary-dark);
    }

    .modal .close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        font-size: 1.4rem;
        color: var(--text-light);
        cursor: pointer;
        transition: var(--transition);
    }

    .modal .close:hover {
        color: var(--primary);
        transform: scale(1.05);
    }

    /* Hero Universitario */
    .hero-universitario {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2c2020 0%, #6f1e3c 50%, #4a1629 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
        padding: 120px 8% 80px;
    }

    .hero-universitario::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1554469384-e58e5bee2f20?w=1600&h=900&fit=crop') center/cover no-repeat;
        opacity: 0.12;
        z-index: 0;
    }

    .hero-grid {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-badge i {
        color: var(--accent);
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(212, 175, 55, 0.15);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
        width: fit-content;
    }

    .hero-universitario h2 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        margin: 0;
    }

    .hero-universitario h2 span {
        color: var(--accent);
    }

    .hero-universitario p {
        font-size: 1.1rem;
        opacity: 0.9;
        max-width: 550px;
        margin: 0;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cta-button {
        background: var(--accent);
        color: var(--text);
        padding: 0.8rem 1.8rem;
        border: none;
        border-radius: 999px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }

    .cta-secondary {
        background: transparent;
        color: var(--white);
        padding: 0.8rem 1.8rem;
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 999px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--white);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 1.1rem 1.4rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-number {
        font-size: 1.7rem;
        font-weight: 700;
        color: var(--accent);
        line-height: 1.1;
    }

    .stat-label {
        font-size: 0.85rem;
        opacity: 0.85;
        margin-top: 0.3rem;
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius);
        padding: 2rem;
    }

    .hero-card-main {
        padding: 2.5rem;
    }

    .hero-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .hero-chip {
        background: rgba(212, 175, 55, 0.2);
        color: var(--accent);
        padding: 0.3rem 0.8rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .hero-card-header i {
        font-size: 1.5rem;
        color: var(--accent);
    }

    .hero-card-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-card-list li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.95rem;
    }

    .hero-card-list i {
        color: var(--accent);
        font-size: 1rem;
    }

    .hero-mini-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-mini-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 1.2rem;
        text-align: center;
        transition: var(--transition);
    }

    .hero-mini-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .hero-mini-card i {
        font-size: 1.8rem;
        color: var(--accent);
        margin-bottom: 0.5rem;
        display: block;
    }

    .hero-mini-card h4 {
        font-size: 0.85rem;
        font-weight: 600;
        margin: 0.5rem 0 0.2rem;
        color: var(--white);
    }

    .hero-mini-card p {
        font-size: 0.75rem;
        opacity: 0.8;
        margin: 0;
    }

    /* Cursos Section */
    #cursos {
        padding: 6rem 0 5rem;
        background: var(--bg-section);
    }

    .cursos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.2rem;
        max-width: 1050px;
        margin: 0 auto;
    }

    .curso-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2.5rem 2rem;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        text-align: left;
        border: 1px solid rgba(111, 30, 60, 0.08);
    }

    .curso-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .curso-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .curso-icon-med { background: rgba(111, 30, 60, 0.1); color: var(--primary); }
    .curso-icon-ing { background: rgba(212, 175, 55, 0.12); color: var(--accent); }
    .curso-icon-psi { background: rgba(90, 74, 74, 0.12); color: var(--text-light); }

    .curso-card h3 {
        font-size: 1.35rem;
        color: var(--text);
        margin-bottom: 0.8rem;
    }

    .curso-card p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 1.7rem;
    }

    .ver-curso {
        background: var(--primary);
        color: var(--white);
        padding: 0.75rem 1.6rem;
        border-radius: 999px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        border: none;
    }

    .ver-curso i {
        font-size: 0.85rem;
    }

    .ver-curso:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Métricas */
    .metricas-section {
        background: var(--white);
        padding: 4rem 0 2rem;
    }

    .metricas-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .metrica-card {
        background: var(--bg-light);
        border-radius: var(--radius);
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow-sm);
    }

    .metrica-card h3 {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .metrica-card p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0;
    }

    /* Presentación */
    .presentacion-section {
        padding: 6rem 0 5rem;
        background: var(--white);
    }

    .presentacion-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 4rem;
        align-items: center;
    }

    .presentacion-texto h2 {
        font-size: 2.3rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    .presentacion-texto p {
        font-size: 1.05rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .presentacion-beneficios {
        display: grid;
        gap: 1.6rem;
    }

    .beneficio-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .beneficio-item i {
        color: var(--accent);
        font-size: 1.4rem;
        margin-top: 0.2rem;
    }

    .beneficio-item h4 {
        font-size: 1.1rem;
        color: var(--text);
        margin-bottom: 0.3rem;
    }

    .beneficio-item p {
        font-size: 0.92rem;
        color: var(--text-light);
        margin: 0;
    }

    .presentacion-panel {
        background: var(--bg-light);
        border-radius: var(--radius);
        padding: 2.2rem;
        border: 1px solid rgba(111, 30, 60, 0.08);
        box-shadow: var(--shadow-sm);
    }

    .presentacion-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.4rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(111, 30, 60, 0.1);
    }

    .presentacion-panel-body {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
    }

    .panel-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem;
        background: var(--white);
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .panel-row span:first-child {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        color: var(--text);
    }

    .panel-row i {
        color: var(--primary);
        font-size: 0.95rem;
    }

    .panel-pill {
        background: rgba(212, 175, 55, 0.15);
        color: var(--accent);
        padding: 0.35rem 0.7rem;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* Journey */
    .journey-section {
        background: var(--bg-section);
        padding: 6rem 0 5rem;
    }

    .journey-container {
        max-width: 1120px;
        margin: 0 auto;
    }

    .journey-intro {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 3.2rem;
    }

    .journey-intro h2 {
        font-size: 2.3rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .journey-intro p {
        font-size: 1rem;
        color: var(--text-light);
    }

    .journey-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.8rem;
    }

    .timeline-step {
        background: var(--white);
        border-radius: 24px;
        border: 1px solid rgba(111, 30, 60, 0.08);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .timeline-step:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .step-media {
        position: relative;
        height: 190px;
        overflow: hidden;
    }

    .step-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .timeline-step:hover .step-media img {
        transform: scale(1.05);
    }

    .step-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: var(--accent);
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.06em;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }

    .step-media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .timeline-step:hover .step-media::after {
        opacity: 1;
    }

    .step-content {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.8rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
        color: var(--text);
        margin: 0;
    }

    .step-content p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
    }

    .step-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .step-tags span {
        background: rgba(212, 175, 55, 0.16);
        color: var(--primary-dark);
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        letter-spacing: 0.04em;
    }

    /* Experiencia */
    .experiencia-section {
        padding: 6rem 0;
        background: var(--white);
    }

    .experiencia-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3.5rem;
        align-items: center;
    }

    .experiencia-media img {
        width: 100%;
        border-radius: clamp(18px, 2vw, 28px);
        box-shadow: var(--shadow-lg);
        object-fit: cover;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
        background: rgba(212, 175, 55, 0.15);
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .section-badge i {
        color: var(--accent);
    }

    .experiencia-texto h2 {
        font-size: 2.4rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .experiencia-texto p {
        font-size: 1rem;
        color: var(--text-light);
        margin-bottom: 1.8rem;
        line-height: 1.6;
    }

    .experiencia-lista {
        list-style: none;
        display: grid;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .experiencia-lista li {
        display: flex;
        gap: 0.8rem;
        align-items: center;
        color: var(--text);
    }

    .experiencia-lista i {
        color: var(--accent);
    }

    .btn-outline-light {
        background: transparent;
        color: var(--primary);
        border: 1px solid rgba(111, 30, 60, 0.2);
    }

    .btn-outline-light:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* Testimonios */
    .testimonios-section {
        background: var(--bg-section);
        padding: 6rem 0 5rem;
    }

    .testimonios-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .testimonios-header {
        text-align: center;
        max-width: 620px;
        margin: 0 auto 3rem;
    }

    .testimonios-header h2 {
        font-size: 2.3rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .testimonios-header p {
        font-size: 1rem;
        color: var(--text-light);
    }

    .testimonios-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }

    .testimonio-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(111, 30, 60, 0.08);
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
    }

    .testimonio-quote {
        position: relative;
        font-style: italic;
        color: var(--text-light);
        line-height: 1.6;
        padding-left: 1.8rem;
    }

    .testimonio-quote i {
        position: absolute;
        left: 0;
        top: 0;
        color: var(--accent);
        font-size: 1.2rem;
    }

    .testimonio-persona {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .testimonio-persona img {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(212, 175, 55, 0.4);
    }

    .testimonio-persona h4 {
        color: var(--text);
        margin-bottom: 0.2rem;
    }

    .testimonio-persona span {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    /* Alianzas */
    .alianzas-section {
        background: var(--white);
        padding: 3rem 0;
        border-top: 1px solid rgba(111, 30, 60, 0.08);
        border-bottom: 1px solid rgba(111, 30, 60, 0.08);
    }

    .alianzas-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }

    .alianzas-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-light);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
    }

    .alianzas-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem 3rem;
        justify-content: center;
        font-weight: 600;
        color: var(--text);
    }

    .alianzas-logos span {
        padding: 0.4rem 0.8rem;
        border-radius: 999px;
        background: var(--bg-light);
        box-shadow: var(--shadow-sm);
    }

    /* FAQ */
    .faq-section {
        padding: 6rem 0 5rem;
        background: var(--bg-section);
    }

    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        gap: 2rem;
    }

    .faq-header {
        text-align: center;
        max-width: 620px;
        margin: 0 auto;
    }

    .faq-header h2 {
        font-size: 2.3rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .faq-header p {
        font-size: 1rem;
        color: var(--text-light);
    }

    .faq-items {
        display: grid;
        gap: 1rem;
    }

    .faq-items details {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1.2rem 1.5rem;
        border: 1px solid rgba(111, 30, 60, 0.1);
        box-shadow: var(--shadow-sm);
    }

    .faq-items summary {
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        list-style: none;
        position: relative;
    }

    .faq-items summary::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 0;
        color: var(--accent);
    }

    .faq-items summary::-webkit-details-marker {
        display: none;
    }

    .faq-items details[open] summary::after {
        content: '\f077';
    }

    .faq-items p {
        margin-top: 0.8rem;
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* CTA final */
    .cta-section {
        background: linear-gradient(135deg, #2c2020 0%, #6f1e3c 50%, #4a1629 100%);
        padding: 5rem 0;
    }

    .cta-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
        align-items: center;
    }

    .cta-content {
        text-align: left;
        color: var(--white);
    }

    .cta-content h2 {
        font-size: 2.6rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .cta-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--accent);
        color: var(--text);
        padding: 0.8rem 1.8rem;
        border: none;
        border-radius: 999px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-primary:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 0.8rem 1.8rem;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--white);
    }

    .cta-illustration img {
        width: 100%;
        border-radius: clamp(18px, 2vw, 28px);
        box-shadow: var(--shadow-lg);
        object-fit: cover;
    }

    /* Footer */
    .site-footer {
        background: #261620;
        color: var(--white);
        padding: 4rem 0 2rem;
    }

    .footer-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }

    .footer-brand h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        padding: 0;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .footer-newsletter p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        display: flex;
        gap: 0.7rem;
        flex-wrap: wrap;
    }

    .newsletter-form input {
        flex: 1 1 220px;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        border: none;
        font-size: 0.95rem;
    }

    .newsletter-form button {
        background: var(--accent);
        color: var(--text);
        border: none;
        border-radius: 999px;
        padding: 0.75rem 1.6rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .newsletter-form button:hover {
        background: #b8941f;
        transform: translateY(-1px);
    }

    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.85rem;
        padding-left: 8%;
        padding-right: 8%;
    }

    .footer-bottom a {
        color: var(--accent);
        text-decoration: none;
    }

    .footer-bottom a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-universitario h2 {
            font-size: 2.5rem;
        }

        .hero-grid {
            gap: 3rem;
        }

        .cta-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .cta-actions {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .hero-universitario {
            padding: 100px 5% 60px;
        }

        .hero-grid,
        .presentacion-grid,
        .experiencia-container,
        .cta-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .hero-universitario h2 {
            font-size: 2rem;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .hero-mini-grid,
        .journey-timeline,
        .testimonios-grid,
        .newsletter-form {
            grid-template-columns: 1fr;
        }

        #cursos {
            padding: 4rem 5%;
        }

        .cursos-grid {
            grid-template-columns: 1fr;
        }

        .presentacion-section {
            padding: 4rem 5%;
        }

        .cta-content {
            text-align: center;
        }
    }

    /* Animaciones */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    /* Efecto de olas en el fondo del hero */
    .wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .wave svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 100px;
    }

    .wave .shape-fill {
        fill: #FFFFFF;
    }

    /* Efecto de partículas */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .particle {
        position: absolute;
        display: block;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: float 15s infinite ease-in-out;
    }

    .auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.auth-card {
    display: flex;
    width: 85%;
    max-width: 1200px;
    background: #22000d;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
}

/* FONDO AMARILLO DETRÁS */
.auth-card::before {
    content: "";
    position: absolute;
    inset: -25px;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    border-radius: 32px;
    z-index: -1;
}

    /* LADO IZQUIERDO: INFO / HERO */

    .auth-hero {
        padding: 2.5rem 2.75rem;
        background: linear-gradient(135deg, var(--primary-dark), #8a274e);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .auth-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.22), transparent 60%),
            radial-gradient(circle at 120% 120%, rgba(255, 255, 255, 0.12), transparent 65%);
        opacity: 0.95;
        pointer-events: none;
    }

    .auth-hero > * {
        position: relative;
        z-index: 1;
    }

    .auth-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.9rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(4px);
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .auth-hero-badge i {
        color: var(--accent);
        font-size: 0.9rem;
    }

    .auth-hero h2 {
        margin-top: 1.7rem;
        font-size: 2rem;
        line-height: 1.2;
        font-weight: 800;
    }

    .auth-hero p {
        margin-top: 0.9rem;
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.88);
    }

    /* Highlights de beneficios */

    .auth-hero-highlights {
        margin-top: 2.2rem;
        display: grid;
        gap: 1.4rem;
    }

    .auth-highlight {
        display: flex;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .auth-highlight-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.25);
        color: var(--accent);
        flex-shrink: 0;
    }

    .auth-highlight strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .auth-highlight span {
        font-size: 0.86rem;
        color: rgba(255, 255, 255, 0.78);
    }

    /* Ilustración / detalle decorativo */

    .auth-illust {
        margin-top: 2.3rem;
        padding: 1.2rem 1.1rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 60%);
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 0.9rem;
    }

    .auth-illust-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* LADO DERECHO: FORMULARIO */

    .auth-form-wrapper {
        padding: 2.5rem 2.75rem;
        background: var(--bg-section);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .auth-form-card {
        width: 100%;
        max-width: 380px;
    }

    .auth-form-header {
        margin-bottom: 1.8rem;
    }

    .auth-form-header h1 {
        font-size: 1.6rem;
        margin-bottom: 0.35rem;
        color: var(--primary-dark);
    }

    .auth-form-header p {
        font-size: 0.92rem;
        color: var(--text-light);
    }

    /* Mensajes de error */

    .error-messages {
        margin-bottom: 1.2rem;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        background: #fff2f2;
        border: 1px solid #e79c9c;
        color: #8a1f1f;
        font-size: 0.86rem;
    }

    .error-messages ul {
        margin: 0;
        padding-left: 1.1rem;
    }

    /* Formulario */

    .auth-form {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .form-group label {
        font-size: 0.86rem;
        font-weight: 600;
        color: var(--text);
    }

    .form-group input {
        padding: 0.65rem 0.8rem;
        border-radius: 10px;
        border: 1px solid #d7cbc0;
        background: #fffdf8;
        font-size: 0.9rem;
        outline: none;
        transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .form-group input:focus {
        border-color: var(--primary);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(111, 30, 60, 0.16);
    }

    /* Botón principal (aprovechamos tu .btn-primary existente y lo refinamos un poco) */

    .auth-form .btn-primary {
        width: 100%;
        margin-top: 0.8rem;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.95rem;
    }

    .auth-footer-text {
        margin-top: 1.1rem;
        font-size: 0.86rem;
        color: var(--text-light);
        text-align: center;
    }

    .auth-footer-text a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

    .auth-footer-text a:hover {
        text-decoration: underline;
    }

    /* Responsivo */

    @media (max-width: 900px) {
        .auth-card {
            grid-template-columns: 1fr;
        }

        .auth-hero {
            padding: 2.1rem 1.8rem 2rem;
        }

        .auth-form-wrapper {
            padding: 2rem 1.8rem 2.4rem;
        }
    }

    @media (max-width: 600px) {
        .auth-section {
            padding: 2rem 1rem;
        }

        .auth-card {
            border-radius: 18px;
        }

        .auth-hero h2 {
            font-size: 1.6rem;
        }
        }
    /* === Mejora sección "Nuestros Cursos" === */

    #cursos {
        padding: 5.5rem 0 5rem;
        background: var(--bg-section);
    }

    /* Contenedor centrado y alineado con el resto del sitio */
    #cursos .section-wrapper {
        max-width: 1150px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Título y subtítulo centrados */
    #cursos .section-heading {
        text-align: center;
        margin-bottom: 3rem;
    }

    #cursos .section-heading h2 {
        font-size: 2.2rem;
        color: var(--primary-dark);
        margin-bottom: 0.4rem;
    }

    .cursos-subtitle {
        font-size: 0.98rem;
        color: var(--text-light);
        max-width: 620px;
        margin: 0 auto;
    }

    /* Grid de tarjetas más “compacto” y centrado */
    .cursos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2.1rem;
        max-width: 1050px;
        margin: 0 auto;
    }

    /* Tarjeta de curso refinada */
    .curso-card {
        background: var(--white);
        border-radius: 20px;
        padding: 2rem 1.8rem;
        box-shadow: var(--shadow-sm);
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
        text-align: left;
        border: 1px solid rgba(111, 30, 60, 0.08);
        position: relative;
        overflow: hidden;
    }

    .curso-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(111, 30, 60, 0.03), rgba(212, 175, 55, 0.08));
        opacity: 0;
        transition: opacity 0.18s ease;
        z-index: 0;
    }

    .curso-card > * {
        position: relative;
        z-index: 1;
    }

    .curso-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(111, 30, 60, 0.18);
    }

    .curso-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .curso-icon-med { background: rgba(111, 30, 60, 0.1); color: var(--primary); }
    .curso-icon-ing { background: rgba(212, 175, 55, 0.12); color: var(--accent); }
    .curso-icon-psi { background: rgba(90, 74, 74, 0.12); color: var(--text-light); }

    .curso-card h3 {
        font-size: 1.3rem;
        color: var(--text);
        margin-bottom: 0.6rem;
    }

    .curso-card p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }

    /* Botón “Ver material” a juego con el resto del sitio */
    .ver-curso {
        background: var(--primary);
        color: var(--white);
        padding: 0.75rem 1.6rem;
        border-radius: 999px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .ver-curso i {
        font-size: 0.85rem;
    }

    .ver-curso:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(111, 30, 60, 0.25);
    }
    /* === Mejora sección "Tu ruta de aprendizaje guiada" === */

    .journey-section {
        background: var(--bg-section);
        padding: 6rem 0 5rem;
    }

    .journey-container {
        max-width: 1150px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .journey-intro {
        text-align: center;
        margin-bottom: 3rem;
    }

    .journey-intro h2 {
        font-size: 2.1rem;
        color: var(--primary-dark);
        margin-bottom: 0.6rem;
    }

    .journey-intro p {
        font-size: 0.96rem;
        color: var(--text-light);
        max-width: 640px;
        margin: 0 auto;
    }

    /* Línea conectando los pasos (solo en pantallas grandes) */
    .journey-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.6rem;
        position: relative;
    }

    @media (min-width: 800px) {
        .journey-timeline::before {
            content: "";
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(111, 30, 60, 0.25), rgba(212, 175, 55, 0.25));
            z-index: 0;
        }
    }

    /* Tarjetas de pasos */
    .timeline-step {
        background: var(--white);
        padding: 2rem 1.7rem;
        border-radius: var(--radius);
        border: 1px solid rgba(111, 30, 60, 0.08);
        box-shadow: var(--shadow-sm);
        position: relative;
        overflow: hidden;
        text-align: left;
    }

    .timeline-step::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(111, 30, 60, 0.05), rgba(212, 175, 55, 0.12));
        opacity: 0;
        transition: var(--transition);
        z-index: 0;
    }

    .timeline-step > * {
        position: relative;
        z-index: 1;
    }

    .timeline-step:hover::before {
        opacity: 1;
    }

    .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: rgba(212, 175, 55, 0.18);
        color: var(--primary-dark);
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.7rem;
    }

    .timeline-step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--text);
    }

    .timeline-step p {
        font-size: 0.92rem;
        color: var(--text-light);
        margin: 0;
    }

    /* === OVERRIDE DISEÑO "NUESTROS CURSOS" === */

    section#cursos {
    padding: 5.5rem 0 5rem;
    background: linear-gradient(135deg, #4a1629, #6f1e3c);
}

    /* Título centrado (sirve para index.php e index.html) */
    section#cursos > h2,
    #cursos .section-heading h2 {
        font-size: 2.2rem;
        color: var(--primary-dark);
        text-align: center;
        margin-bottom: 0.4rem;
    }

    /* Subtítulo centrado */
    section#cursos > p,
    #cursos .cursos-subtitle {
        font-size: 0.98rem;
        color: var(--text-light);
        max-width: 620px;
        margin: 0.2rem auto 3rem auto;
        text-align: center;
    }

    /* Contenedor de tarjetas */
    #cursos .cursos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2.1rem;
        max-width: 1050px;
        margin: 0 auto;
    }

    /* Tarjeta de curso refinada */
    #cursos .curso-card {
        background: var(--white);
        border-radius: 20px;
        padding: 2rem 1.8rem;
        box-shadow: var(--shadow-sm);
        text-align: left;
        border: 1px solid rgba(111, 30, 60, 0.08);
        position: relative;
        overflow: hidden;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    #cursos .curso-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(111, 30, 60, 0.03), rgba(212, 175, 55, 0.08));
        opacity: 0;
        transition: opacity 0.18s ease;
        z-index: 0;
    }

    #cursos .curso-card > * {
        position: relative;
        z-index: 1;
    }

    #cursos .curso-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(111, 30, 60, 0.18);
    }

    #cursos .curso-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    #cursos .curso-card h3 {
        font-size: 1.3rem;
        color: var(--text);
        margin-bottom: 0.6rem;
    }

    #cursos .curso-card p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }

    /* Botón Ver Material */
    #cursos .ver-curso {
        background: var(--primary);
        color: var(--white);
        padding: 0.75rem 1.6rem;
        border-radius: 999px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    #cursos .ver-curso i {
        font-size: 0.85rem;
    }

    #cursos .ver-curso:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(111, 30, 60, 0.25);
    }
/* --- Colores para sección "Nuestros Cursos" --- */

/* título y descripción, pensados para fondo vino */
section#cursos > h2 {
    color: #f8e2b5;              /* dorado claro, bien legible */
    font-weight: 800;
}

section#cursos > p {
    color: #fbdfe5;              /* rosado claro que combina con el vino */
    max-width: 620px;
    margin: 0.4rem auto 3rem auto;
    text-align: center;
    font-size: 0.98rem;
}
/* --- Colores para sección "Tu ruta de aprendizaje guiada" --- */

.journey-intro h2 {
    color: var(--primary);       /* vino elegante */
    font-weight: 800;
}

.journey-intro p {
    color: var(--text-light);
}

/* Números de los pasos más dorados */
.step-number {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.6);
}
/* === Override fuerte para "Nuestros Cursos" === */

/* Título dorado (funciona tenga o no .section-heading) */
#cursos h2,
#cursos .section-heading h2 {
    color: #f8e2b5 !important;      /* dorado claro */
    font-weight: 800;
}

/* Subtítulo debajo del título */
#cursos .section-heading p,
#cursos > p,
#cursos .cursos-subtitle {
    color: #fbdfe5 !important;      /* rosado claro que combina con el vino */
    max-width: 620px;
    margin: 0.4rem auto 3rem auto;
    text-align: center;
    font-size: 0.98rem;
}

/* === "Tu ruta de aprendizaje guiada" (solo ajuste de color) === */

.journey-intro h2 {
    color: #6f1e3c !important;      /* vino elegante */
    font-weight: 800;
}

.journey-intro p {
    color: var(--text-light) !important;
}

/* Números dorados en los pasos */
.step-number {
    background: rgba(212, 175, 55, 0.22);
    color: #4a1629;
    border: 1px solid rgba(212, 175, 55, 0.7);
}
/* Títulos dorados */
.faq-header h2,
.testimonios-header h2,
.journey-intro h2 {
    color: var(--accent); /* dorado */
    font-weight: 800;
}
/* Subtítulos y párrafos en color negro */
.faq-header p,
.testimonios-header p,
.journey-intro p {
    color: #000000 !important; /* negro */
}
/* Título dorado para "Tu ruta de aprendizaje guiada" */
.journey-intro h2 {
    color: var(--accent) !important; /* dorado */
    font-weight: 800;
}

/* ================================
   SECCIONES CON FONDO VINO PREMIUM
   (Testimonios, Ruta, FAQ)
   ================================ */

.seccion-vino {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 0% 0%, #732645 0%, #4a1026 40%, #2c0716 100%);
    color: #fdf5ff;
    overflow: hidden;
}

/* Brillo suave arriba y abajo */
.seccion-vino::before,
.seccion-vino::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    height: 140px;
    pointer-events: none;
}

.seccion-vino::before {
    top: -40px;
    background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.12), transparent 70%);
}

.seccion-vino::after {
    bottom: -60px;
    background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.3), transparent 70%);
}

/* Contenedor interno para que no pegue a los bordes */
.seccion-vino .section-wrapper {
    position: relative;
    z-index: 1;
}

/* Títulos principales */
.seccion-vino h2 {
    color: #f3d46b;             /* dorado */
    font-weight: 800;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 14px;
}

/* Subtítulos y párrafos */
.seccion-vino p {
    color: #f8e9f3;
}

/* Badge de sección */
.seccion-vino .section-badge {
    background: rgba(0, 0, 0, 0.35);
    color: #f3d46b;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* =======================
   TESTIMONIOS (¿Qué dicen…?)
   ======================= */

.testimonios-section.seccion-vino .testimonios-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonios-section.seccion-vino .testimonios-grid {
    display: grid;
    gap: 24px;
}

/* Tarjetas de testimonio */
.testimonios-section.seccion-vino .testimonio-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.45), rgba(255, 255, 255, 0.04));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    padding: 24px 26px;
    color: #fdf5ff;
    backdrop-filter: blur(18px);
}

.testimonios-section.seccion-vino .testimonio-quote {
    color: #f7e6ff;
}

.testimonios-section.seccion-vino .testimonio-quote i {
    color: #f3d46b;
}

.testimonios-section.seccion-vino .testimonio-persona h4 {
    color: #ffffff;
    font-weight: 700;
}

.testimonios-section.seccion-vino .testimonio-persona span {
    color: #f0d7ff;
}

/* ===========================
   RUTA DE APRENDIZAJE GUIADA
   =========================== */

.journey-section.seccion-vino .journey-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.journey-section.seccion-vino .journey-intro p {
    color: #f7e6ff;
}

/* Línea de tiempo */
.journey-section.seccion-vino .journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.journey-section.seccion-vino .journey-timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(243, 212, 107, 0.2), rgba(255, 255, 255, 0.05));
    z-index: 0;
}

/* Pasos */
.journey-section.seccion-vino .timeline-step {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 22px 18px 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.journey-section.seccion-vino .timeline-step h3 {
    color: #ffffff;
    margin-bottom: 6px;
}

.journey-section.seccion-vino .timeline-step p {
    color: #f3e0ff;
    font-size: 0.95rem;
}

/* Número del paso */
.journey-section.seccion-vino .timeline-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #f3d46b;
    color: #3a0f1f;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

/* Responsive ruta */
@media (max-width: 900px) {
    .journey-section.seccion-vino .journey-timeline {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .journey-section.seccion-vino .journey-timeline {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   FAQ: PREGUNTAS FRECUENTES
   =========================== */

.faq-section.seccion-vino .faq-header {
    text-align: center;
    margin-bottom: 36px;
}

.faq-section.seccion-vino .faq-header p {
    max-width: 700px;
    margin: 0 auto;
}

/* Tarjetas de preguntas */
.faq-section.seccion-vino .faq-items {
    display: grid;
    gap: 14px;
}

.faq-section.seccion-vino details {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 14px 18px;
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.55);
    color: #fdf5ff;
}

.faq-section.seccion-vino summary {
    color: #f3d46b;
    font-weight: 600;
    cursor: pointer;
}

.faq-section.seccion-vino summary::marker {
    color: #f3d46b;
}

.faq-section.seccion-vino details p {
    margin-top: 8px;
    color: #f7e6ff;
    font-size: 0.95rem;
}
/* Corregir franja clara arriba/abajo de las secciones vino */
.seccion-vino::before,
.seccion-vino::after {
    display: none;    /* anulamos los brillos */
}
/* ==============================
   PÁGINA DE REGISTRO
   ============================== */

/* Fondo general (quitamos el amarillo y unificamos con el HERO) */
.registro-page {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at 0% 0%, #f2c94c22 0, transparent 55%),
                radial-gradient(circle at 100% 100%, #f2c94c22 0, transparent 55%),
                linear-gradient(135deg, #4b1d2d 0%, #6a253b 50%, #2b0715 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Tarjeta principal de registro */
.registro-card {
    width: min(1100px, 100% - 3rem);
    background: linear-gradient(135deg, #4b1d2d 0%, #7d2a45 55%, #4b1d2d 100%);
    border-radius: 32px;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    overflow: hidden;
}

/* Lado izquierdo: texto descriptivo */
.registro-left {
    padding: 48px 56px;
    color: #fdf7ff;
    position: relative;
}

/* Brillo suave detrás del contenido */
.registro-left::before {
    content: "";
    position: absolute;
    inset: 20% -40% -40% 10%;
    background: radial-gradient(circle at 0 0, #f2c94c44 0, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

/* Para que el contenido quede encima del brillo */
.registro-left > * {
    position: relative;
    z-index: 1;
}

/* Badge superior “Plataforma universitaria” */
.registro-left .hero-badge,
.registro-left .registro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    color: #ffeaa7;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Título principal izquierdo */
.registro-left h1,
.registro-left h2 {
    margin-top: 1.5rem;
    font-size: 2.1rem;
    line-height: 1.2;
    color: #ffffff;
}

/* Resumen bajo el título */
.registro-left p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f9eefa;
}

/* Lista de beneficios (iconitos a la izquierda) */
.registro-beneficios {
    margin-top: 1.7rem;
    display: grid;
    gap: 1rem;
}

.registro-beneficio {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.registro-beneficio-icono {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2c94c;
    font-size: 1.1rem;
}

.registro-beneficio h4 {
    margin: 0;
    color: #ffffff;
    font-size: 0.98rem;
}

.registro-beneficio p {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    color: #f3dffb;
}

/* Chip inferior “Estudia a tu ritmo” */
.registro-chip {
    margin-top: 2rem;
    padding: 0.8rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.24);
    color: #ffeaa7;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

/* Lado derecho: formulario */
.registro-right {
    padding: 48px 42px;
    background: #2b0715; /* vino oscuro para contraste */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

/* Textos del formulario */
.registro-right h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    color: #ffffff;
}

.registro-right p {
    margin: 0;
    font-size: 0.88rem;
    color: #f5e9ff;
}

/* Contenedor del “Regístrate gratis” + texto */
.registro-right .registro-intro {
    margin-bottom: 0.5rem;
}

/* Etiquetas de los campos */
.registro-right label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.86rem;
    color: #fdf7ff;
}

/* Inputs del formulario */
.registro-right input[type="text"],
.registro-right input[type="email"],
.registro-right input[type="password"] {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    outline: none;
    background: #fdfdfd;
    color: #1c0d18;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}

.registro-right input::placeholder {
    color: #b0a5b8;
}

.registro-right input:focus {
    border-color: #f2c94c;
    box-shadow: 0 0 0 2px rgba(242, 201, 76, 0.32);
    transform: translateY(-1px);
}

/* Botón de "Registrarse" */
.registro-right .btn-registrarse,
.registro-right button[type="submit"] {
    margin-top: 0.6rem;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    font-size: 0.98rem;
    background: linear-gradient(135deg, #f2c94c, #f7b733);
    color: #27110b;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.registro-right .btn-registrarse:hover,
.registro-right button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.65);
    filter: brightness(1.05);
}

.registro-right .btn-registrarse:active,
.registro-right button[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

/* Texto de “¿Ya tienes una cuenta? Inicia sesión” */
.registro-login-link {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #f5e9ff;
    text-align: right;
}

.registro-login-link a {
    color: #f2c94c;
    font-weight: 600;
    text-decoration: none;
}

.registro-login-link a:hover {
    text-decoration: underline;
}

.registro-page {
    background: linear-gradient(135deg, #4b1d2d, #6a253b, #7d2a45);
    min-height: 100vh;
    margin: 0;
    padding-top: 120px;
}

/* Responsive: en pantallas pequeñas la tarjeta se apila */
@media (max-width: 900px) {
    .registro-card {
        grid-template-columns: 1fr;
    }

    .registro-left {
        padding: 32px 26px 24px;
        text-align: left;
    }

    .registro-right {
        padding: 28px 24px 36px;
    }
}
