@import url(../css/font.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --rb-regular: 'Robotoregular', sans-serif;
    --rb-medium: 'Robotomedium', sans-serif;
    --rb-bold: 'Robotobold', sans-serif;
    --color--text-green: #00F6AE;
    --bg-button: #005FFF;
    --bg-modal-form: #212121;



}

body {
    width: 100%;
    font-family: var(--rb-regular);
    background-color: #000;
    position: relative;

}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../../images/fondo_main.webp");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

main {
    width: 100%;
    overflow: hidden;
}

.clip-container {
    /* width: 500px; */
    /* height: 300px; */
    overflow: hidden;
}

.clip-container img {
    /* max-width: 100%;
  height: 100%; */
    object-fit: cover;
    clip-path: inset(0 100% 0 0);
    /* Oculta todo excepto el borde izquierdo */
    animation: clipReveal 2s forwards;

}


.clip-container img.bot {
    /* max-width: 100%;
  height: 100%; */
    object-fit: cover;
    clip-path: inset(0 0 100% 0);
    /* Oculta todo excepto el borde izquierdo */
    animation: clipReveal 2s forwards;
    animation-delay: 1s;

}

@keyframes clipReveal {
    to {
        clip-path: inset(0 0% 0 0);
        /* Revela toda la imagen */
    }
}



.green {
    color: var(--color--text-green);
}

section {
    width: 100%;
    height: 100%;
    padding-block: 4rem;
    position: relative;
}

.margin-section {
    margin-top: 86px;
}

/* .container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
} */



.none {
    display: none;
}



p {
    margin-bottom: 0;
}


li {
    list-style: none;

}


a {
    text-decoration: none;

}

/**Header**/
.header {
    border-bottom: 1px solid var(--color--text-green);


    .container {
        .header-nav {
            .menu-wrap {
                .menu-item {
                    .menu-link {

                        color: #FFF;
                        text-align: center;
                        font-family: var(--rb-bold);
                        font-size: 1rem;
                        font-style: normal;
                        line-height: normal;

                        &:hover {
                            color: var(--color--text-green);
                        }
                    }
                }
            }
        }
    }
}

.hero {
    .vector {
        position: absolute;
        top: 10%;
        right: -5%;

    }

    .container {
        .row.one {
            gap: 1.5rem;

            .detail {
                width: fit-content;
                padding: .8rem 0;
                border-radius: 19px;
                background: linear-gradient(266deg, rgba(0, 246, 174, 0.49) 0.41%, rgba(0, 0, 0, 0.00) 47.62%, rgba(0, 90, 241, 0.49) 99.59%);

                h1 {
                    color: #FFF;
                    text-align: center;
                    font-family: var(--rb-medium);
                    font-size: 43.876px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 100%;
                    /* 43.876px */

                }

                p {
                    color: #FFF;
                    text-align: center;
                    font-family: var(--rb-regular);
                    font-size: 29.474px;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 100%;
                    /* 29.474px */
                }
            }
        }

        .row.two {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;

            .wrapper-calendar {
                max-width: 50%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-areas:
                    "fecha hora"
                    "lugar lugar";
                gap: 1rem;

                .detail {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    border: 1px solid #00f6ae;
                    border-radius: 8px;
                    padding: 0.5rem .8rem;

                    .icon {
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        svg {
                            width: 20px;
                            height: 20px;
                        }
                    }

                    .text {
                        h3 {
                            color: #00f6ae;
                            font-family: var(--rb-medium);
                            font-size: 25.976px;
                            margin: 0;
                        }

                        p {
                            color: #fff;
                            font-family: var(--rb-medium);
                            font-size: 25.976px;
                            margin: 0;
                        }
                    }
                }

                .fecha {
                    grid-area: fecha;
                    justify-content: center;
                    gap: .8rem;
                }

                .hora {
                    grid-area: hora;
                    justify-content: center;
                }

                .lugar {
                    grid-area: lugar;
                    justify-content: center;
                    gap: .8rem;
                }

                @media (max-width: 768px) {
                    grid-template-columns: 1fr;
                    grid-template-areas:
                        "fecha"
                        "hora"
                        "lugar";
                }
            }

            .btn {
                width: fit-content;
                background-color: var(--bg-button);
                color: #fff;
                font-size: 1.5rem;
                border-radius: 5px;
                transition: all 0.3s ease-in-out;

                &:hover {
                    background-color: #fff;
                    color: #000;
                }

            }


        }

        .modal {
            .modal-dialog {
                .modal-content {
                    background-color: var(--bg-modal-form);

                    .modal-header {
                        border: none;

                        .modal-title {
                            color: #00F6AE;
                            text-align: center;
                            font-family: var(--rb-medium);
                            font-size: 45px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: 120%;
                            /* 54px */
                        }

                        .btn-close {
                            background-color: var(--color--text-green);
                            position: absolute;
                            top: 10%;
                            right: 8%;
                            opacity: 1;
                        }
                    }

                    .modal-body {
                        .wpcf7 {
                            width: 100%;

                            .wpcf7-form {
                                width: 100%;
                                display: flex;
                                flex-wrap: wrap;

                                .form-item {
                                    flex: .5;
                                    width: 45%;

                                    p {
                                        label {
                                            color: #fff;
                                            font-size: 1rem;
                                        }

                                        .wpcf7-form-control-wrap {
                                            input {
                                                padding: .2rem 0;
                                            }
                                        }

                                    }

                                    &.full {
                                        flex: 1;
                                        width: 100%;
                                    }
                                }

                                .btn-send {
                                    width: 100%;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;

                                    p {
                                        margin-bottom: 0;

                                        .wpcf7-submit {
                                            background-color: var(--bg-button);
                                            color: #fff;
                                            border: none;
                                            padding: .5rem .8rem;
                                            font-size: 1rem;
                                            border-radius: 5px;
                                            transition: all 0.3s ease-in-out;

                                            &:hover {
                                                background-color: #fff;
                                                color: #000;
                                            }
                                        }
                                    }

                                }

                                .wpcf7-response-output {
                                    color: white;
                                    margin: auto;
                                }
                            }
                        }
                    }
                }
            }
        }

    }
}

.event__info {
    .container {
        .row {
            align-items: center;

            h2 {
                font-size: 45px;
                font-family: var(--rb-regular);
                color: white;

                span {
                    font-family: var(--rb-medium);
                }
            }

            .countdown {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr 1fr;
                max-width: 60%;
                gap: 2rem;
                align-items: center;
                justify-content: center;

                .box {
                    border-radius: 20px;
                    background: rgba(255, 255, 255, 0.08);

                    .number {
                        color: #FFF;
                        text-align: center;
                        font-family: var(--rb-medium);
                        font-size: 4rem;
                    }

                    span {
                        display: block;
                        width: 100%;
                        border-radius: 0 0 20px 20px;
                        background: var(--bg-button);
                        color: #FFF;
                        text-align: center;
                        font-family: var(--rb-medium);
                        font-size: 1rem;
                    }
                }
            }
        }

        .row.detail_event {
            border-radius: 20px;
            padding: 25px 29px;
            background: rgba(0, 0, 0, 0.35);
            max-width: 60%;
            gap: 1.5rem;

            .box-icon {
                display: flex;
                width: fit-content;
                background-color: var(--bg-button);
                padding: .5rem;
                border-radius: 7px;
            }

            .info_event {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;


                p {
                    color: #FFF;
                    text-align: center;
                    font-family: var(--rb-regular);
                    font-size: 1.5rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 100%;

                    /* 28.8px */
                    &.green {
                        color: var(--color--text-green);
                    }
                }
            }

        }
    }
}

.details__event {
    .container {
        display: flex;
        justify-content: center;
        align-items: center;

        .row {
            max-width: 60%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;

            .item-detail {
                padding: 19px 58px;
                border-radius: 10px;
                border: 1px solid #00F6AE;
                align-items: center;
                gap: 1rem;

                .icon-detail {
                    display: flex;
                    width: fit-content;
                    justify-content: center;
                    align-items: center;
                }

                p {
                    color: #FFF;
                    font-family: var(--rb-regular);
                    font-size: 1.5rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 100%;
                    /* 25px */
                }
            }
        }
    }
}

.ejes {
    .container {
        h2 {
            color: #FFF;
            font-family: var(--rb-regular);
            font-size: 45px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;

            span {
                color: var(--color--text-green);
                font-family: var(--rb-medium);
            }
        }

        .accordion {
            max-width: 60%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: auto;

            .item-collapse {
                border-radius: 20px;
                background: rgba(255, 255, 255, 0.10);
                padding: 15px 28px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                .accordion-item {
                    background-color: transparent;
                    border: none;
                    box-shadow: none;
                    width: 100%;

                    .accordion-header {
                        background-color: transparent;
                    }

                    .accordion-button {
                        display: flex;
                        background-color: transparent;
                        /* flex-direction: column; */
                        gap: 1rem;
                        border: none;
                        box-shadow: none;

                        .accordion-header {
                            background-color: transparent;
                        }

                        &::after {
                            content: '⌵';
                            /* position: absolute;

                            top: 1rem;
                            right: 1rem; */
                            background-color: #000;
                            border-radius: 4px;
                            color: #fff;
                            background-image: none;
                            width: 1.5rem;
                            display: flex;
                            justify-content: center;
                            align-items: center;

                        }

                        span {
                            font-family: var(--rb-regular);
                            font-size: 1.8rem;
                            line-height: 100%;
                            ;
                            flex: 1;
                        }
                    }

                    .accordion-body {
                        color: #fff;
                        font-size: 1.8rem;
                        text-align: start;
                        line-height: 100%;


                    }
                }

                .btn {
                    width: fit-content;
                    align-self: flex-end;
                    border-radius: 5px;
                    background: #000;
                    color: #fff;
                    font-family: var(--rb-medium);
                    font-size: 1rem;
                }

                .box-icon {
                    display: flex;
                    width: fit-content;
                    background-color: var(--bg-button);
                    padding: .5rem;
                    border-radius: 7px;

                    /* height: 5.5rem;
                    width: 5.5rem; */
                    img {
                        object-fit: contain;
                        width: 60px;
                    }

                }


            }
        }
    }
}

.ponentes {
    .container {
        h2 {
            color: #fff;
            font-family: var(--rb-regular);
            font-size: 45px;
            font-style: normal;

            line-height: 120%;

            span {
                color: var(--color--text-green);
                font-family: var(--rb-medium);
                font-weight: 700;
            }
        }

        .splide {
            .splide__track {
                .splide__list {
                    .splide__slide {
                        display: flex;
                        justify-content: center;

                        .box-ponente {
                            gap: 1rem;
                            max-width: 300px;
                            display: flex;
                            flex-direction: column;
                            height: 100%;
                            border-radius: 20px;
                            background: rgba(0, 0, 0, 0.80);
                            padding-bottom: 1rem;

                            .image-ponente {
                                img {
                                    border-radius: 20px;
                                }
                            }

                            .info-ponente {
                                display: flex;
                                flex-direction: column;
                                padding-inline: .8rem;
                                gap: 1rem;

                                h3 {
                                    color: #FFF;
                                    text-align: center;
                                    font-family: var(--rb-medium);
                                    font-size: 28px;
                                    font-style: normal;
                                    font-weight: 700;
                                    line-height: 100%;
                                    /* 28px */
                                }

                                p {
                                    color: #FFF;
                                    text-align: center;
                                    font-family: var(--rb-regular);
                                    font-size: 18px;
                                    font-style: normal;
                                    font-weight: 300;
                                    line-height: 120%;
                                    /* 21.6px */
                                }
                            }

                            .link {
                                width: fit-content;
                                color: #fff;
                                padding: 7.5px 15px;
                                justify-content: center;
                                align-items: center;
                                gap: 15px;
                                background-color: var(--bg-button);
                                color: #FFF;
                                text-align: center;
                                font-family: var(--rb-regular);
                                font-size: 24px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 100%;
                                margin: auto;
                                border-radius: 8px;
                                cursor: pointer;
                                transition: all 0.3s ease-in-out;
                                /* &:hover{
                                    background-color: #fff;
                                    color: #000;
                                    svg{
                                        
                                    }
                                } */
                                /* 24px */
                            }
                        }


                    }
                }
            }

            .my-slider-progress {
                position: relative;
                top: 2rem;
                background: #ccc;
                border-radius: 4px;
                max-width: 30%;
                margin: auto;
            }

            .my-slider-progress-bar {
                background: var(--bg-button);

                height: 4px;
                transition: width 400ms ease;
                width: 0;
            }
        }

        #progress-bar {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            max-width: 30%;
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.20);



            span {
                display: block;
                height: 100%;
                background-color: var(--bg-button);
                width: 0;
            }

        }
    }
}

.programa {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;

        h2 {
            color: #00F6AE;
            text-align: center;
            font-family: var(--rb-medium);
            font-size: 45px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            /* 45px */
        }

        .row {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;

            .accordion {
                background-color: rgba(217, 217, 217, .1);

                .accordion-item {
                    /* background-color: rgba(217, 217, 217, .1); */
                    background-color: transparent;
                    border: none;

                    .accordion-header {
                        .accordion-button {
                            background-color: transparent;
                            /* background-color: rgba(217, 217, 217, .1); */
                            border: none;
                            box-shadow: none;
                            border-bottom: 1px solid var(--color--text-green);
                            color: #fff;
                        }
                    }

                    .accordion-collapse {
                        .accordion-body {
                            background-color: var(--color--text-green);

                            p {
                                color: #000;

                                strong {}
                            }
                        }
                    }
                }
            }

            .btn {
                padding: 13.472px 26.943px;
                border-radius: 6.736px;
                width: fit-content;
                margin: auto;
                background: #005FFF;
                color: #fff;
                color: #FFF;
                text-align: center;
                font-family: var(--rb-regular);
                font-size: 21.555px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
                transition: all 0.3s ease-in-out;

                &:hover {
                    background-color: #fff;
                    color: #000;
                }

                /* 21.555px */
            }
        }
    }
}


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

.entradas {
    .container {

        h2 {
            color: var(--color--text-green);
            font-family: var(--rb-regular);
            font-size: 45px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;

            span {
                color: var(--color--text-green);
                font-family: var(--rb-medium);
            }
        }

        .btn {
                width: fit-content;
                background-color: var(--bg-button);
                color: #fff;
                font-size: 1.5rem;
                border-radius: 5px;
                transition: all 0.3s ease-in-out;
                  &:hover {
                    background-color: #fff;
                    color: #000;
                }
            }

              
                    .wrap-entradas {
            display: flex;
            justify-content: center;
            align-items: stretch;
            /* mismo alto */
            gap: 2rem;
            flex-wrap: wrap;
            width: 100%;
        }

        .precio {
            flex: 1 1 250px;
            /* ancho flexible mínimo 250px */
            max-width: 300px;
            /* opcional: límite máximo */
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            color: white;
            position: relative;
        }

        /* borde degradado */
        .precio::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            /* grosor del borde */
            background: linear-gradient(90deg, #005FFF, #00F6AE);
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        p{
            font-size: 4rem;
        }

        .sub {
            font-size:1.5rem;
            font-weight: normal;
            color:var(--color--text-green);
            margin-top: 5px;
        }


    }
}

.video-momentos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;

        h2 {
            color: #FFF;
            font-family: var(--rb-regular);
            font-size: 45px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;

            span {
                color: var(--color--text-green);
                font-family: var(--rb-medium);
            }
        }

        .video-wrapper {
            position: relative;
            max-width: 800px;
            width: 100%;

            video {
                width: 100%;
                border-radius: 12px;
                max-height: 400px;
            }

            .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: rgba(0, 255, 170, 0.85);
                border: none;
                border-radius: 50%;
                width: 80px;
                height: 80px;
                font-size: 2rem;
                color: #fff;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.3s ease, background-color 0.3s ease;

                &:hover {
                    transform: translate(-50%, -50%) scale(1.1);
                    background-color: rgba(0, 255, 170, 1);
                }
            }
        }



        .slider {
            /* background: white; */
            /*box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);*/
            /* height: 100px; */
            margin: auto;
            overflow: hidden;
            position: relative;
            width: 95%;
        }

        .slider::before,
        .slider::after {
            /* background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); */
            content: "";
            height: 100px;
            position: absolute;
            width: 200px;
            z-index: 2;
        }

        .slider::after {
            right: 0;
            top: 0;
            -webkit-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
        }

        .slider::before {
            left: 0;
            top: 0;
        }

        .slider .slide-track {
            -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
            display: flex;
            width: calc(250px * 14);
        }

        .slider .slide {
            /* height: 50px; */
            width: 250px;
        }

        .slide img {
            border-radius: 12px;
        }
    }

}

.organizadores {
    .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        .row {
            h3 {
                color: #FFF;
                text-align: center;
                font-family: var(--rb-regular);
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 100%;
                /* 20px */
            }

            .wrapper-image {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 2rem;
            }
        }
    }



}

.footer {
    background-color: #000;
    padding: 2rem 0;

    .container {
        display: flex;
        /* justify-content: space-between;
        flex-wrap: wrap; */
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info {
        h4 {
            color: #fff;
            font-family: var(--rb-bold);
            margin-bottom: 1rem;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;

            li {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                margin-bottom: 0.8rem;

                a {
                    color: #fff;
                    font-family: var(--rb-regular);
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }
                }

                .icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    svg {
                        width: 20px;
                        height: 20px;
                        fill: #fff;
                    }
                }
            }
        }
    }

    .social-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;

        a {
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                width: 22px;
                height: 22px;
                fill: #fff;
                transition: fill 0.3s ease;

                &:hover {
                    fill: #00f6ae;
                }
            }
        }
    }
}