    /* Reset básico */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000; /* Fondo general oscuro */
    color: #fff;
    line-height: 1.6;
    }

    a {
    text-decoration: none;
    color: inherit;
    }

    /* Header fijo */
    .fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #201e1e;
    color: #fff;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .fixed-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    }

    /* Flex personalizado para header */
    .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    }

    .header-flex .left,
    .header-flex .center,
    .header-flex .right {
    display: flex;
    align-items: center;
    }

    /* Título IMAGINE */
    .logo-title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    letter-spacing: 2.5px;
    margin: 0 0 5px 0;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

/* Logo en círculo */
    .logo-img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: none;
    image-rendering: auto; /* Asegura buena calidad */

}

    /* Texto centrado */
    .centrado {
    text-align: center;
    }

    /* Estilo para texto justificado */
    .justificado {
    text-align: justify;
    }

    /* Navegación */
    nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    }

    nav a {
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    }

    nav a:hover,
    nav a.active,
    nav a:focus {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    }

    /* Sección Hero */
    .hero-section {
    position: relative;
    margin-top: 100px;
    padding: 80px 20px;
    text-align: center;
    background: url('images/img.jpg') center/cover no-repeat;
    background-size: cover;
    height: 100vh;
    }

    .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

    /* Contenedor del texto hero */
    .hero-text {
        text-align: center;
        position: relative;
        z-index: 2;
        padding: 100px 20px;
    }

    .titulo-animado {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        animation: tituloBrilla 3s ease-in-out forwards;
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }

    .subtitulo-animado {
        font-size: 1.5rem;
        font-weight: 400;
        color: #ffffff;
        opacity: 0;
        animation: fadeInSubtitulo 2s 1s ease-out forwards;
        position: relative;
    }

    @keyframes tituloBrilla {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
        }
    }

    @keyframes fadeInSubtitulo {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* Botón hero */
    .hero-text button {
    background-color: #ffddaa;
    color: #2b2b2b;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

    .hero-text button:hover {
    background-color: #ffe4c2;
    }

    /* Sección directoras */
    .directoras-section {
    padding: 80px 20px;
    background-color: #f7f4ef;
    text-align: center;
    color: #000;
    }

    .directoras-section h2 {
    color: #080808;
    margin-bottom: 30px;
    }

    .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    }

    .card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #000;
    }

    .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top center;
    }

    .card h3 {
    margin-top: 15px;
    color: #090909;
    }

    .card p {
    font-size: 0.95rem;
    color: #0b0b0b;
    }

    /* Sección información */
    .info-section {
    background-color: #e8e1d9;
    padding: 60px 20px;
    font-size: 1rem;
    text-align: center;
    color: #2d1f16;
    }

    /* Footer */
    footer {
    background-color: #2f2a28;
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9rem;
    }

    .cursos-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    .curso-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        width: 300px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    .curso-card:hover {
        transform: scale(1.05);
    }
    .curso-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .curso-titulo {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem;
    }
    .curso-desc {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
        color: #555;
    }
    .registro-curso {
        margin-top: 3rem;
        padding: 2rem;
        background: #715c5c;
        border-radius: 15px;
        max-width: 600px;
        margin-inline: auto;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .registro-curso h3 {
        margin-bottom: 1rem;
        text-align: center;
    }
    #formCurso input,
    #formCurso select {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 8px;
    }
    .precio-curso {
        margin: 1rem 0;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: center;
        color: #2b6cb0;
    }
    .pago-buttons {
        display: flex;
        justify-content: space-around;
        margin-bottom: 1rem;
    }
    .pago-buttons button {
        padding: 0.7rem 1.2rem;
        border: none;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
    }
    .mercado-pago {
        background-color: #009ee3;
    }
    .paypal {
        background-color: #003087;
    }

    /* Título en negro */
    .cursos-title {
        color: #111;
        font-size: 2.5em;
        text-align: center;
        margin-bottom: 40px;
    }

    /* Contenedor de tarjetas con separación */
        .cursos-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding-bottom: 50px;
    }

    /* Tarjeta de curso */
    .curso-card {
        background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Fondo con leve gradiente */
        color: #2c2c2c; /* Color más elegante */
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Sombra más suave y extendida */
        padding: 24px;
        width: 320px;
        transition: all 0.3s ease-in-out;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        backdrop-filter: blur(4px); /* Efecto de fondo sofisticado */
    }

    .curso-card:hover {
        transform: translateY(-8px) scale(1.03); /* Animación delicada al pasar el mouse */
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }


    .curso-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .curso-card h3 {
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .curso-card p {
        font-size: 0.95em;
        margin: 10px 0;
    }

    .inscribirme-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #0077cc;
        color: white;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .inscribirme-btn:hover {
        background-color: #005fa3;
    }

    .cursos-section {
        background-color: #686666; /* Gris claro, liso */
        padding: 60px 20px;
        padding-bottom: 60px; /* agrega espacio entre los cursos y el footer */
    }


    /* Responsive */
    @media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .directoras-section h2 {
        font-size: 1.5rem;
    }

    .card {
        width: 90%;
    }

    .header-flex {
        flex-direction: column;
        gap: 10px;
        height: 200px; /* 👈 Agregá esto */

    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .frase-impacto {
        text-align: center;
        max-width: 700px;
        margin: 40px auto;
    }

    .frase-impacto h2 {
        font-size: 28px;
        color: #000;
        font-weight: normal;
        line-height: 1.4;
        margin: 0;
        word-break: break-word;
    }

    .frase-impacto h2 .destacado {
        font-weight: bold;
        color: #000000;
    }
}

/* Estilo base del header */
    .fixed-header {
        background-color: #000;
        color: #fff;
        padding: 10px 0;
        width: 100%;
        z-index: 999;
    }

    .header-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .site-title h1 {
        margin: 0;
        font-size: 40px;
    }

    /* Botón hamburguesa oculto en pantallas grandes */
    .menu-toggle {
        display: none;
        font-size: 28px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    /* Menú */
    .main-nav .nav-list {
        display: flex;
        gap: 20px;
        list-style: none;
    }

    .main-nav a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
    }

    /* RESPONSIVE: para celulares */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        .main-nav {
            display: none;
            width: 100%;
        }

        .main-nav.open {
            display: block;
            background-color: #000;
        }

        .main-nav .nav-list {
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 10px 0;
        }
    }

    /* Estilos header base */
        .fixed-header {
            background-color: #000;
            color: #fff;
            padding: 10px 0;
            width: 100%;
            z-index: 999;
        }

        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .site-title h1 {
            margin: 0;
            font-size: 40px;
        }

        /* Estilos menú */
        .main-nav .nav-list {
            display: flex;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            text-decoration: none;
            color: #fff;
            font-weight: bold;
        }

        /* Botón hamburguesa oculto en desktop */
        .menu-toggle {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }

        /* Responsive - menú hamburguesa */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .main-nav {
                display: none;
                width: 100%;
            }

            .main-nav.open {
                display: block;
                background-color: #000;
            }

            .main-nav .nav-list {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                padding: 10px 0;
            }
        }

        /* Estilo para pantallas grandes (escritorio) */
        @media screen and (min-width: 768px) {
            .logo-title {
                font-size: 5rem;
            }

            .nav-list li a {
                font-size: 28px;
                font-weight: bold;
                padding: 12px 20px;
                text-transform: uppercase;
            }
        }

        /* Estilo para pantallas pequeñas (celulares) */
        @media screen and (max-width: 767px) {
            .logo-title {
                font-size: 2.5rem;
                text-align: center;
            }

            .nav-list li a {
                font-size: 16px;
                padding: 10px;
            }
        }



