﻿:root {
    --white: #fff;
    /* Tonos Nude principales */
    --nude-100: #F7E8E4;
    --nude-200: #EFD6D1;
    --nude-300: #F5C7BD;
    /* Tonos de acento rosado */
    /*--accent-100: #EBA89B;
    --accent-200: #D88B80;*/

    --accent-100: #D37E6F;
    --accent-200: #C36D5E;
    /* Neutros elegantes */
    --neutral-100: #F2F2F2;
    --neutral-200: #C9C3C1;
    --neutral-300: #6C5F5B;
    --neutral-400: #2E2A29;
    /* Acento premium */
    --gold-rose: #CFA28C;
    /* Variables útiles */
    --text-main: var(--neutral-400);
    --text-secondary: var(--neutral-300);
    --background-main: var(--nude-100);
}

* {
    font-family: "Elms Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background: var(--background-main);
    color: var(--text-main);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

h1, h2, h3 {
    color: var(--text-main);
    font-weight: 600;
}

.btn-default {
    background-color: var(--nude-300);
}

    .btn-default:hover {
        background-color: var(--nude-200);
    }

.breadcrumb {
    margin-top: 24px;
}

    .breadcrumb .breadcrumb-item a {
        color: var(--accent-200);
    }

.button-primary {
    background: var(--accent-100);
    color: white;
    padding: 14px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

    .button-primary:hover {
        background: var(--accent-200);
    }

.button-secondary {
    background: white;
    border: 2px solid var(--gold-rose);
    color: var(--gold-rose);
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .button-secondary:hover {
        background: var(--gold-rose);
        color: white;
    }

.navbar {
    border-top: 8px solid var(--accent-100);
    padding: 0 16px;
    position: sticky;
    top: 0;
    background-color: var(--background-main);
    z-index: 2;
}

    .navbar .navbar-brand {
        display: inline-block;
    }

        .navbar .navbar-brand img {
            width: auto;
            height: 64px;
        }


    .navbar .navbar-nav {
        gap: 6px;
    }

        .navbar .navbar-nav .nav-link {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 500;
        }

            .navbar .navbar-nav .nav-link.acceso {
                border: 1px solid var(--accent-100);
                color: var(--accent-100);
                font-weight: 700;
                font-size: 12px;
            }

                .navbar .navbar-nav .nav-link.acceso:hover {
                    background-color: var(--white);
                }

    .navbar .navbar-toggler {
        border: 0;
        padding: 0;
        width: auto;
        height: auto;
    }

        .navbar .navbar-toggler:focus {
            box-shadow: none;
            outline: 0;
        }

        .navbar .navbar-toggler .navbar-toggler-icon {
            width: 24px;
            height: 24px;
        }

.section-hero {
    padding-top: 16px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nude-100);
    gap: 64px;
    width: 95%;
    margin: 0 auto;
    padding: 32px 11vw;
    position: relative;
    min-height: 600px;
    height: calc(100vh - 122px);
}

    .hero .bg {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        object-position: left;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .hero > div {
        width: calc(50% - 32px);
    }



.hero-text {
    z-index: 1;
    position: relative;
}

.hero .logo {
    position: absolute;
    top: 40px;
    width: 15%;
}

.hero-text h1 {
    font-size: 55px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
}

    .hero-text h1 span {
        color: var(--accent-100);
    }

.hero-text p {
    margin: 25px 0;
    font-size: 20px;
}

.hero-text.white h1,
.hero-text.white p {
    color: var(--white);
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.section {
    /*padding-top: 16px;*/
}

    .section .contenedor {
        width: 95%;
        margin: 0 auto;
        padding: 32px 11vw;
    }

        .section .contenedor .title {
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 2px;
            color: var(--accent-100)
        }

        .section .contenedor .subtitle {
            font-weight: 200;
            font-size: 56px;
            text-align: center;
            color: var(--accent-200);
            text-transform: uppercase;
            margin: 0;
        }

            .section .contenedor .subtitle.small {
                font-size: 40px;
            }

        .section .contenedor .description {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 0px;
        }

.cursos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* Espacio entre elementos */
    justify-content: center;
}

    .cursos-grid .curso-card {
        width: calc(50% - 12px);
        padding-top: 32px;
        text-align: center;
    }

        .cursos-grid .curso-card .curso-card-img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            object-position: center;
            margin-bottom: 24px;
        }

        .cursos-grid .curso-card .curso-card-title {
            font-size: 32px;
            text-transform: uppercase;
            font-weight: 400;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 16px;
        }

        .cursos-grid .curso-card .curso-card-description {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 0;
            margin-bottom: 16px;
        }

.section .contenedor .contenido {
    margin-top: 48px;
    background-color: var(--white);
    padding: 48px;
}

    .section .contenedor .contenido .card,
    .section .contenedor .contenido .card .card-body {
        border: 0;
    }

        .section .contenedor .contenido .card .card-body {
            padding: 24px 0;
        }

        .section .contenedor .contenido .card .card-img {
            box-shadow: 1px 8px 16px rgba(0,0,0,0.3);
            background-size: cover;
            background-position: center;
            height: 200px;
            max-width: 85%;
            margin: 0 auto;
        }

        .section .contenedor .contenido .card .card-img {
            position: relative;
        }

            .section .contenedor .contenido .card .card-img .card-img-top {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

        .section .contenedor .contenido .card .card-body .card-title {
            text-align: center;
            color: var(--accent-100);
            font-size: 16px;
            font-weight: 600;
        }

.section .contenedor .incluye {
    padding-top: 96px;
}

    .section .contenedor .incluye .item {
        max-width: 375px;
        margin: 0 auto;
        text-align: center;
    }

        .section .contenedor .incluye .item .icon {
            width: 100px;
            height: 100px;
            background-color: var(--white);
            display: grid;
            place-content: center;
            border-radius: 100%;
            margin: 0 auto 24px auto;
        }

            .section .contenedor .incluye .item .icon svg {
                width: 32px;
                height: 32px;
                color: var(--accent-200);
            }

        .section .contenedor .incluye .item .item-title {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            text-align: center;
            color: var(--accent-200);
        }

.section .comprar {
    position: sticky;
    bottom: 0;
    background-color: var(--accent-100);
    padding: 24px;
}


    .section .comprar .container-comprar {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .section .comprar p {
        font-size: 18px;
        white-space: nowrap;
    }

    .section .comprar .costo {
        color: var(--white);
        font-weight: 700;
    }


    .section .comprar .costo-base {
        color: rgba(255,255,255, 0.8);
    }

    .section .comprar .link {
        background-color: var(--white);
        color: var(--accent-200);
        font-weight: 600;
        text-align: center;
        width: 100%;
        display: block;
        border: 0;
        text-decoration: none;
        height: 54px;
        display: grid;
        place-content: center;
    }

.contact-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 48px auto 0 auto;
    flex-direction: column;
    align-items: center;
}

.contact-card {
    width: 50%;
    background: #fff;
    border-radius: 24px;
    padding: 40px 25px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 38px rgba(0,0,0,0.1);
    }

.icon-wrap {
    font-size: 2.6rem;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
}

    .icon-wrap img {
        width: 40px;
    }

    /* Instagram glam gradient */
    .icon-wrap.instagram {
        background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
        box-shadow: 0 0 20px rgba(221, 42, 123, 0.25);
    }

    /* Email soft luxury */
    .icon-wrap.email {
        background: var(--accent-200);
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
    }

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-100);
}

.contact-card p {
    color: #666;
    font-size: 18px;
    ;
    line-height: 1.5;
    margin: 0;
}

@media(max-width: 991px) {
    .navbar {
        padding: 0;
    }

        .navbar .container-fluid {
            padding: 0;
        }

        .navbar .navbar-mobile {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px;
        }

        .navbar .navbar-collapse {
            background-color: var(--accent-100);
            padding: 8px 24px 16px 24px;
        }

        .navbar .navbar-nav .dropdown-menu {
            background-color: var(--accent-100);
            border-color: #fff;
        }

            .navbar .navbar-nav .dropdown-menu .dropdown-item {
                color: #fff;
            }

            .navbar .navbar-nav .dropdown-menu .dropdown-divider {
                border-color: #fff;
            }

        .navbar .navbar-nav .nav-link {
            text-align: center;
            color: #fff;
        }

            .navbar .navbar-nav .nav-link.acceso {
                padding: 8px;
                margin-top: 6px;
                color: #fff;
                border-color: #fff;
            }

    .cursos-grid .curso-card {
        width: 100%;
    }

    .contact-card {
        width: 100%;
        padding: 40px 16px;
    }
}


@media(max-width: 767px) {
    .hero .logo {
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
    }

    .section-hero {
        padding: 0;
    }

    .hero {
        align-items: end;
        width: 100%;
        min-height: 600px;
        height: calc(100vh - 82px);
    }

        .hero > div {
            width: 100%;
        }

        .hero .bg {
            object-position: center;
        }

    .hero-text {
        text-align: center;
    }

        .hero-text h1 {
            font-size: 32px;
            text-align: center;
        }

        .hero-text p {
            font-size: 18px;
            text-align: center;
        }

    .section .contenedor {
        padding-left: 24px;
        padding-right: 24px;
    }

        .section .contenedor .subtitle {
            font-size: 36px;
        }

    .cursos-grid .curso-card .curso-card-title {
        font-size: 24px;
    }

    .cursos-grid .curso-card .curso-card-description {
        font-size: 18px;
    }

    .section .contenedor .subtitle.small {
        font-size: 32px;
    }

    .section .contenedor .description {
        font-size: 18px;
    }

    .section .contenedor .contenido {
        padding-left: 24px;
        padding-right: 24px;
    }

        .section .contenedor .contenido .card .card-img {
            max-width: 100%;
        }

    .contact-cards {
        margin-top: 32px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 16px;
    }

    .icon-wrap {
        width: 55px;
        height: 55px;
    }

        .icon-wrap img {
            width: 30px;
        }
}


@media(max-width: 575px) {
}
