/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{

    /* FONTS */
    --font-barlow-condensed: "Barlow Condensed", sans-serif;
    --open-sans: "Open Sans", sans-serif;
    --font-inter: "Inter", sans-serif;

    /* COLORS */
    --primary-color: #130F2A;
    --primary-color-hover: #2a2157c0;
    --secondary-color: #181234;
    --white-color: #EFF3EE;
    --pink-color: #EC1EA3;
    --light-blue: #00E7E4;
    --black-color: #000000;
}

html{
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
}

body{
    margin: 0px;
    padding: 0px;
}

/* ------------------------------ */
/* 
    [HEADER STYLES] 

    Classes: 
        .header-content

*/
/* ------------------------------ */

.header-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ------------------------------ */
/* 
    [NAVBAR STYLES] 

    Classes: 
        .nav-div-container
        .nav-bar
        .nav-svg-logo
        .nav-ul-list
        .nav-ul-list-item
        .nav-div-container-btn-icon
        .nav-button-btn
        .nav-button-btn-menu
        .nav-i-menu-icon
*/
/* ------------------------------ */

.nav-div-container{
    width: 100%;
    background-color: var(--primary-color);
    padding: 16px 40px;
    z-index: 999;
    position: fixed;
    top: 0;
}

.nav-bar{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 24px;
}

.nav-svg-logo{
    width: 104px;
    height: 56px;
    font-family: var(--font-barlow-condensed);
    color: var(--white-color);
    font-weight: 600;
    font-size: 24px
}

.nav-ul-list{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 24px;
    font-family: var(--font-barlow-condensed);
    font-weight: 600;
    color: var(--white-color);
}

.nav-ul-list-item a{
    font-size: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all .2s ease;
    border-radius: 5px;
    color: var(--white-color);
    text-decoration: none;

    &:hover{
        background-color: var(--primary-color-hover);
    }
}

.nav-button-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    text-decoration: none;
    font-family: var(--font-barlow-condensed);
    font-weight: 600;
    font-size: 24px;
    border: 2px solid var(--white-color);
    padding: 7px 24px;
    cursor: pointer;
    border-radius: 323232px;
    background-color: transparent;
    color: var(--white-color);
    transition: all .5s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;

    &:hover{
        background-color: var(--white-color);
        color: var(--primary-color);
    }

    &:active{
        transform: scale(0.85);
    }
}

.nav-button-btn-menu{
    display: none;
}

.nav-i-menu-icon{
   font-size: 16px;
}

/* ------------------------------ */
/* 
    [HERO SECTION STYLES] 

    Classes: 
        .hero-section
        .hero-div-container-root
        .hero-div-container-infos
        .hero-div-container-imgs
        .hero-h1-date
        .hero-span-date-dot
        .hero-h3-state-and-city
        .hero-h3-info
        .hero-p-info
        .hero-button-btn
        .hero-img-logo
        .hero-div-container-speakers
        .hero-img-card-speaker
        .hero-img-gabriela
        .hero-img-igor
        .hero-container-img-logo-and-speaker

*/
/* ------------------------------ */

.hero-section{
    display: grid;
    width: 100%;
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/0da9aa40-3fe7-4b14-9aef-602921624bff.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: border-box;
    background-color: #280C4E;
}

.hero-div-container-root{
    justify-self: center;
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    max-width: 1600px;
    padding: 85px 64px;
    margin-top: 40px;
}

.hero-div-container-infos{
    width: 100%;
}

.hero-h1-date{
    color: #FFF;
    font-family: var(--font-inter);
    font-size: 130px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 117px 0px 0px;
}

.hero-span-date-dot{
    color: var(--pink-color);
}

.hero-h3-state-and-city{
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
    margin: 16px 0px 35px;
}

.hero-h3-info{
    color: #130F2A;
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    background-color: #00E7E4;
    padding: 0px 4px;
    margin: 0px 0px 19px;
    max-width: 480px;
}

.hero-p-info{
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.24px;
    margin: 0px 0px 40px;
    max-width: 480px;
}

.hero-button-btn{
    color: var(--white-color);
    font-family: var(--font-inter);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    max-width: 350px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 323232px;
    border: 2px solid var(--white-color);
    background: linear-gradient(90deg, #8610CB 0%, var(--pink-color) 100%);
    background-size: 150% 100%;
    box-shadow: -2px 3px 3px 0 var(--white-color);
    padding: 14px 31px;
    cursor: pointer;
    transition: all .5s ease;
    
    &:hover{
        background-position: 100% 0;
        transform: scale(1.01);
    }

    &:active{
        transform: scale(0.85);
    }
}

.hero-div-container-imgs{
    width: 100%;
    display: grid;
}

.hero-div-container-speaker{
    max-width: 700px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    height: 100%;
    gap: 30px;
    justify-self: end;
}

.hero-img-card-speaker {
    height: auto;
    width: 330px;
}

.hero-div-container-img-logo-and-speaker{
    display: flex;
    flex-direction: column;
    max-width: 330px;
    width: 100%;
}

.hero-img-logo{
    color: var(--pink-color);
    font-size: 22px;
    font-family: var(--font-barlow-condensed);
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0.5px;
    width: 330px;
}

.hero-img-gabriela {
    color: var(--light-blue);
    font-size: 24px;
    font-family: var(--font-barlow-condensed);
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0.5px;
}

.hero-img-igor {
    width: 100%;
    margin-top: 15%;
    color: var(--light-blue);
    font-size: 24px;
    font-family: var(--font-barlow-condensed);
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0.5px;
}

/* ------------------------------ */
/* 
    [SIDEBAR STYLES] 

    Classes: 
        .sidebar-aside
        .sidebar-aside-active
        .sidebar-ul-list
        .sidebar-ul-list-item

*/
/* ------------------------------ */

.sidebar-aside{
    display: none;
}

/* ------------------------------ */
/* 
    [VIDEO STYLES] 

    Classes: 
        .video-section
        .video-div-container
        .video
        .video-div-container-infos
        .video-h3-first
        .video-h3-second
        .video-h2-first

*/
/* ------------------------------ */

.video-section{
    display: grid;
    place-items: center;
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/8a68f363-17f9-40d0-ae3d-2b185e78ab7d.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: border-box;
    width: 100%;
    padding: 80px 32px;
}

.video-div-container{
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 90px;
}

.video{
    width: 100%;
    max-width: 580px;
    height: auto;
    max-height: 400px;
    border-radius: 26px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-div-container-infos{
    width: 100%;
}

.video-h3-first {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.video-h3-second {
    color: #130F2A;
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.46px;
    text-transform: uppercase;
    background-color: #00E7E4;
    margin: 0px 0px 19px;
    max-width: 460px;
}

.video-h2-first {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.96px;
    max-width: 400px;
}

/* ------------------------------ */
/* 
    [MODAL STYLES] 

    Classes: 
        .modal-section
        .modal-h2
        .modal-h4
        .modal-div-container
        .modal-div-card
        .modal-img-speaker
        .modal-h4-card
        .modal-h3-card
        .modal-div-shadow
        .modal-div-open
        .modal-div-container-info
        .modal-h2-open
        .modal-h3-open
        .modal-h4-open
        .modal-p-open
        .modal-i-icon
        .modal-img-open-speaker
        .modal-p-open-container
*/
/* ------------------------------ */

.modal-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/ee3eda1e-f37a-459c-b4f2-f5a22e7219c0.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: border-box;
    padding: 68px 32px;
    background-color: #160730;
}

.modal-h2 {
    color: var(--white-color);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0px;
}

.modal-h4 {
    color: var(--light-blue);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 16px 0px 56px;
}

.modal-div-container {
    width: 100%;
    max-width: 1064px;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: wrap;
    gap: 32px;
}

.modal-div-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 100%;
    max-width: 260px;
    padding: 18px 16px;
    border-radius: 25px;
    border: 3px solid #FFF;
    cursor: pointer;
    transition: all .3s ease;
    backdrop-filter: blur(4px);

    &:hover{
        transform: scale(1.02);
    }
}

.modal-img-speaker {
    width: 100%;
    max-width: 270px;
    color: var(--pink-color);
    font-size: 24px;
    font-family: var(--font-barlow-condensed);
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0.5px;
    text-align: center;
}

.modal-h4-card {
    color: var(--light-blue);
    font-family: var(--font-barlow-condensed);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 18px 0px 4px;
    text-align: left;
}

.modal-h3-card {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0px;
    text-align: left;
}

.modal-div-shadow{
    display: grid;
    place-items: center;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    background-color: #000000c5;
    position: fixed;
    min-height: 100dvh;
    width: 100%;
    transition: all .3s ease;
    padding: 0px 32px;
    backdrop-filter: blur(10px);
}

.modal-div-shadow.active{
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.modal-div-open {
    width: 100%;
    height: 100%;
    max-width: 842px;
    max-height: 400px;
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.modal-img-open-speaker{
    height: 100%;
    width: 100%;
    max-width: 230px;
}

.modal-div-container-info {
    height: 100%;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 25px;
    padding: 40px 40px 44px;
    position: relative;
}

.modal-button-icon{
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
    transition: all .4s ease;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 4px;

    &:hover{
        background-color: #e4e4e4;
    }
}

.modal-i-icon{
    color: var(--black-color);
    font-size: 20px;
}

.modal-h2-open {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0px 40px 14px 0px;
}

.modal-h3-open {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0px 0px 8px;
}

.modal-h4-open {
    color: var(--pink-color);
    font-family: var(--font-barlow-condensed);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px 0px 14px;
}

.modal-p-open-container{
    width: 100%;
    height: 100%;
    max-height: 180px;
    padding-right: 20px;
    overflow-y: auto;
}

.modal-p-open-container::-webkit-scrollbar{
    width: 8px;
}

.modal-p-open-container::-webkit-scrollbar-track{
    background-color: #e0e0e0;
    border-radius: 10px;
}

.modal-p-open-container::-webkit-scrollbar-thumb{
    background-color: #a8a7a7;
    border-radius: 10px;
}

.modal-p-open {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
    width: 100%;
}

/* ------------------------------ */
/* 
    [RETURN TO TOP BUTTON STYLES] 

    Classes: 
        .return-button-top
        .fa-angles-up

*/
/* ------------------------------ */

.return-button-top {
    position: fixed;
    right: 32px;
    bottom: 24px;
    height: 45px;
    width: 45px;
    border-radius: 100%;
    border: 2px solid var(--white-color);
    display: grid;
    place-items: center;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0px 0px 2px var(--primary-color);
    z-index: 10;

    &:hover{
        background-color: #1a143a;
        transform: scale(1.03);
    }

    &:active{
        transform: scale(0.9);
    }
}

.fa-angles-up {
    color: var(--white-color);
    font-size: 19px;
}

/* ------------------------------ */
/* 
    [HEADER STYLES] 

    Classes: 
        .ticket-form-local-div-container

*/
/* ------------------------------ */

.ticket-form-local-div-container{
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/336e602e-ffca-421a-9470-292a135b54d5.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ------------------------------ */
/* 
    [TICKET STYLES] 

    Classes: 
        .ticket-section
        .ticket-h2-top
        .ticket-h4-top
        .ticket-div-container
        .ticket-div-card
        .ticket-div-container-title
        .ticket-h3-card-title
        .ticket-div-container-content
        .ticket-h2-card-price
        .ticket-h4-card-desc
        .ticket-h3-card-store
        .ticket-h3-card-place
        .ticket-button-card
        .ticket-line-bottom

*/
/* ------------------------------ */

.ticket-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 72px 32px;
}

.ticket-h2-top {
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin: 0px 0px 24px;
}

.ticket-h4-top {
    color: var(--black-color);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px 0px 50px;
    max-width: 1200px;
}

.ticket-div-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 70px;
}

.ticket-div-card {
    width: 100%;
    max-width: 460px;
    border: 3px solid var(--pink-color);
    border-radius: 25px;
    box-shadow: 0px 3px 4px #c2c2c2;
    overflow: hidden;
}

.ticket-div-container-title {
    width: 100%;
    background-color: var(--primary-color);
    padding: 24px 32px;
    box-shadow: 0 3px 3px 0 rgba(255, 255, 255, 0.10)
}

.ticket-h3-card-title {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0px 0px 5px;
}

.ticket-h3-card-title span{
    background-color: var(--pink-color);
}

.ticket-div-container-content {
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/00960fcb-a72e-40ca-9be8-c713032b8871.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 42px 36px 44px;
}

.ticket-h2-card-price {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0px 0px 18px;
}

.ticket-h4-card-desc {
    color: var(--light-blue);
    font-family: var(--font-barlow-condensed);
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin: 0px 0px 12px;
}

.ticket-h3-card-store {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px;
}

.ticket-h3-card-place {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px 0px 46px;
}

.ticket-button-card {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    text-decoration: none;
    color: var(--black-color);
    font-family: var(--font-inter);
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    text-transform: uppercase;
    border-radius: 323232px;
    border: 2px solid var(--black-color);
    background: var(--white-color);
    box-shadow: -2px 3px 3px 0 var(--light-blue);
    cursor: pointer;
    transition: all .3s ease;

    &:hover{
        transform: scale(1.02);
        background-color: #d3d1d1;
    }

    &:active{
        transform: scale(0.9);
    }
}

.ticket-line-bottom {
    width: 100%;
    max-width: 1000px;
    height: 3px;
    border-radius: 323232px;
    background-color: var(--light-blue);
}

/* ------------------------------ */
/* 
    [FORM STYLES] 

    Classes: 
        .form-section
        .form
        .form-div-container-root
        .form-div-container-content
        .form-h2-title
        .form-h4-desc
        .form-div-container-fields
        .form-div-container-input-root
        .form-label-custom
        .form-div-container-input
        .form-input
        .form-p-message-error
        .form-button-submit

*/
/* ------------------------------ */

.form-section {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 0px 32px;
}

.form {
    display: grid;
    place-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/e16860c7-38c1-4bee-be1a-219c17cc47ef.png");
    border-radius: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
    box-shadow: 0px 4px 4px #d8d8d8;
    padding: 70px 64px;
    background-color: var(--secondary-color);
}

.form-div-container-root {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 100px;
}

.form-div-container-content {
    width: 100%;
    max-width: 450px;
}

.form-h2-title {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 46px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.46px;
    text-transform: uppercase;
    margin: 0px 0px 14px;
}

.form-h4-desc {
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px;
}

.form-div-container-fields {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-div-container-input-root {
    width: 100%;
    min-height: 92px;
}

.form-label-custom {
    display: block;
    width: 100%;
    margin: 0px 0px 6px;
    color: var(--white-color);
    font-family: var(--font-barlow-condensed);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-div-container-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-input {
    width: 100%;
    color: #7E7E7E;
    font-family: var(--font-barlow-condensed);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 12px;
    border-radius: 9px;
    border: none;
    outline: none;
}

.form-p-message-error {
    color: #d33c3c;
    font-family: var(--font-barlow-condensed);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0px;
}

.form-button-submit {
    width: 100%;
    max-width: 500px;
    color: var(--white-color);
    font-family: var(--font-inter);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 323232px;
    border: 2px solid var(--white-color);
    background: linear-gradient(90deg, #8610CB 0%, var(--pink-color) 100%);
    background-size: 150% 100%;
    box-shadow: -2px 3px 3px 0 var(--white-color);
    padding: 14px 31px;
    cursor: pointer;
    transition: all .5s ease;
    
    &:hover{
        background-position: 100% 0;
        transform: scale(1.01);
    }

    &:active{
        transform: scale(0.85);
    }
}

/* ------------------------------ */
/* 
    [LOCAL STYLES] 

    Classes: 
        .local-section
        .local-div-container
        .local-div-container-content
        .local-h2-title
        .local-h4-where
        .local-h4-address
        .local-div-line
        .local-div-container-date
        .local-i-icon
        .local-p-date
        .local-div-container-clock
        .local-p-hour
        .local-img-map
        .local-div-container-p
        .local-a-map

*/
/* ------------------------------ */

.local-section {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 70px 32px;
}

.local-div-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.local-div-container-content {
    width: 100%;
    max-width: 450px;
}

.local-h2-title {
    color: var(--pink-color);
    font-family: var(--font-barlow-condensed);
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin: 0px 0px 30px;
}

.local-h4-where {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px;
}

.local-h4-address {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px 0px 26px;
}

.local-div-line {
    height: 3px;
    background-color: var(--light-blue);
    width: 100%;
    border-radius: 323232px;
}

.local-div-container-date {
    margin-top: 26px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

.local-i-icon {
    font-size: 26px;
    color: var(--pink-color);
}

.local-p-date {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 0px;
}

.local-div-container-clock {
    margin-top: 18px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

.local-div-container-p{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.local-p-hour {
    color: var(--black-color);
    font-family: var(--font-barlow-condensed);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
    margin: 0px;
}

.local-a-map{
    color: var(--light-blue);
    font-family: var(--font-barlow-condensed);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.30px;
    margin: 0px;
    transition: all .3s ease;;

    &:hover{
        transform: scale(1.02);
    }
}

.local-img-map {
    width: 100%;
    max-width: 450px;
}

/* ------------------------------ */
/* 
    [SWIPER STYLES] 

    Classes: 
        .swiper
        .swiper-slide
        .swiper-slide-active
        .swiper-slide-next
        .swiper-slide-prev
        .swiper-navigation-icon
        .swiper-pagination
        .swiper-pagination-bullet

*/
/* ------------------------------ */

.swiper {
    width: 100%;
    padding: 40px 0;
    border-radius: 25px;
}

.swiper-slide{
    display: flex !important;
    justify-content: center !important;
    align-items: end !important;
    margin: 0px !important;
    height: 100%;
}

.swiper-slide .carousel-div-card{
    width: 100%;
    display: grid;
    place-items: center;
    transition: all 0.4s ease;
    margin: 0px 10px !important;
}

.swiper-slide-active .carousel-div-card{
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-next .carousel-div-card{
    opacity: 0.8;
    transform: scale(0.9) rotate(4deg);
}

.swiper-slide-prev .carousel-div-card{
    opacity: 0.8;
    transform: scale(0.9) rotate(-4deg);
}

.swiper-navigation-icon{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -1 !important;
}

.swiper-pagination{
    display: none;
}

/* ------------------------------ */
/* 
    [CAROUSEL STYLES] 

    Classes: 
        .carousel-section
        .carousel-div-container-root
        .carousel-title
        .carousel-div-container
        .carousel-div-card
        .carousel-div-card-container-top
        .carousel-img-profile
        .carousel-div-card-container-name
        .carousel-h4-name
        .carousel-h4-profession
        .carousel-p-desc
        .carousel-div-container-p
        .carousel-button-arrow
        .carousel-button-left
        .carousel-button-right

*/
/* ------------------------------ */

.carousel-section {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 60px 32px;
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/153bb608-4e2e-4a77-a9f8-f74f42b397e8.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
}

.carousel-div-container-root{
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: grid;
    place-items: center;
}

.carousel-title {
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    background-color: var(--light-blue);
    padding: 0px 10px;
    margin: 0px 0px 64px;
}

.carousel-div-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
}

.carousel-div-card {
    width: 100%;
    max-width: 330px;
    background-color: var(--white-color);
    border-radius: 22px;
    border: 2px solid var(--pink-color);
    padding: 25px 25px 50px;
    cursor: grab;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    &:active{
        cursor: grabbing;
    }
}

.carousel-div-card-container-top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

.carousel-img-profile {
    font-family: var(--font-barlow-condensed);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    height: 86px;
    width: 86px;
}

.carousel-div-card-container-name {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.carousel-h4-name {
    color: #001229;
    font-family: var(--font-barlow-condensed);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0px;
}

.carousel-h4-profession {
    color: #001229;
    font-family: var(--font-barlow-condensed);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

.carousel-div-container-p{
    width: 100%;
    height: 100%;
    margin-top: 20px;
    padding: 0px 20px 0px 0px;
    height: 300px;
    overflow-y: auto;
    display: flex;
}

.carousel-div-container-p::-webkit-scrollbar{
    width: 8px;
}

.carousel-div-container-p::-webkit-scrollbar-track{
    background-color: #e0e0e0;
    border-radius: 10px;
}

.carousel-div-container-p::-webkit-scrollbar-thumb{
    background-color: #a8a7a7;
    border-radius: 10px;
}

.carousel-p-desc {
    color: #001229;
    font-family: var(--font-barlow-condensed);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

.carousel-button-arrow {
    display: grid !important;
    place-items: center !important;
    background-color: #ffffff92;
    backdrop-filter: blur(20px);
    border-radius: 100%;
    border: none !important;
    height: 60px !important;
    width: 60px !important;
    cursor: pointer;
    transition: all .3s ease;

    &:hover{
        background-color: #ffffffca;
    }
}

.carousel-button-arrow i{
    font-size: 20px;
    color: var(--black-color);
}

.carousel-button-left {
    left: 10px !important;
}

.carousel-button-right {
    right: 10px !important;
}

/* ------------------------------ */
/* 
    [TOAST STYLES] 

    Classes: 
        .toastify

*/
/* ------------------------------ */

.toastify{
    font-size: 24px;
    top: 98px !important;
    font-family: var(--font-barlow-condensed);
    border: 3px solid var(--pink-color);
    border-radius: 15px !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    transition: all .3s ease;
}

@keyframes slideToRight {
    from{
        transform: translateX(0);
        opacity: 1;
    }to{
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes slideToLeft {
    from{
        transform: translateX(120%);
        opacity: 0;
    }to{
        transform: translateX(0);
        opacity: 1;
    }
}

.toastify {
    animation: slideToLeft .3s ease forwards;
}

.toastify.on {
    animation: slideToLeft .3s ease forwards;
}

.toastify.off {
    animation: slideToRight .3s ease forwards;
}

/* ------------------------------ */
/* 
    [DOUBTS STYLES] 

    Classes: 
        .doubts-section
        .doubts-h2
        .doubts-div-container
        .doubts-div-card
        .doubts-div-container-top
        .doubts-h4
        .doubts-button-btn-card
        .doubts-div-container-bottom
        .doubts-p
        .doubts-button-btn

*/
/* ------------------------------ */

.doubts-section {
    width: 100%;
    display: grid;
    place-items: center;
    background: url("https://image.divulga.sebraern.com.br/lib/fe3811727364047f751c70/m/1/4a368ff4-d232-4426-b658-695931606cea.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: border-box;
    padding: 70px 32px;
}

.doubts-h2 {
    color: var(--white-color);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin: 0px 0px 64px;
}

.doubts-div-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 1000px;
    margin-bottom: 46px;
}

.doubts-div-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--white-color);
    padding: 26px 24px;
    border-radius: 14px;
    box-shadow: 0px 0px 30px var(--primary-color);
    gap: 16px;
}

.doubts-div-container-top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.doubts-h4 {
    color: var(--black-color);
    font-family:    var(--font-barlow-condensed);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin: 0px;
}

.doubts-button-btn-card {
    border: none;
    height: 30px;
    width: 30px;
    background-color: transparent;
    cursor: pointer;
    border-radius: 6px;
    transition: all .3s ease;
    font-size: 14px;
    color: var(--black-color);

    &:hover{
        background-color: #e7e5e5;
    }

    &:active{
        transform: scale(0.8);
    }
}

.doubts-div-container-bottom {
    width: 100%;
}

.doubts-div-container-bottom.off{
    display: none;
}

.doubts-p {
    color: #000;
    font-family: var(--font-inter);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

.doubts-button-btn {
    color: var(--white-color);
    font-family: var(--font-inter);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 323232px;
    border: 2px solid var(--white-color);
    background: linear-gradient(90deg, #8610CB 0%, var(--pink-color) 100%);
    background-size: 150% 100%;
    box-shadow: -2px 3px 3px 0 var(--white-color);
    padding: 14px 31px;
    cursor: pointer;
    transition: all .5s ease;
    width: 100%;
    max-width: 400px;
    
    &:hover{
        background-position: 100% 0;
        transform: scale(1.01);
    }

    &:active{
        transform: scale(0.85);
    }
}

/* ------------------------------ */
/* 
    [SPONSORS STYLES] 

    Classes: 
        .sponsors-section
        .sponsors-h2
        .sponsors-div-container
        .sponsors-img-veezo
        .sponsors-img-nanii
        .sponsors-img-voxyou
        .sponsors-img-sicoob
        .sponsors-img-fattora
        .sponsors-img-sebrae

*/
/* ------------------------------ */

.sponsors-section {
    width: 100%;
    display: grid;
    place-items: center;
    background-color: var(--primary-color);
    padding: 80px 32px;
}

.sponsors-h2 {
    color: var(--white-color);
    text-align: center;
    font-family: var(--font-barlow-condensed);
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    margin: 0px;
}

.sponsors-div-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 56px;
    max-width: 1200px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.sponsors-img-veezor, 
.sponsors-img-fattora {
    font-family: var(--font-barlow-condensed);
    color: var(--pink-color);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.sponsors-img-veezor, 
.sponsors-img-fattora {
    width: 180px;
}

.sponsors-img-veezor {
    height: 23px;
}

.sponsors-img-fattora {
    height: 52px;
}

/* ------------------------------ */
/* 
    [FOOTER STYLES] 

    Classes: 
        .footer-svg-logo
        .footer-a
        .footer-social-media
        .container-footer-img
        .footer-div-container
        .footer-div-container-first
        .footer-div-container-second
        .footer-p-first
        .footer-p-second
        .footer-div-line

*/
/* ------------------------------ */


footer{
    width: 100%;
    background-color: #0B2574;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 80px 56px 80px;
    flex-direction: column;
    flex-shrink: 0;
    font-family: var(--open-sans);
}

.footer-svg-logo{
    width: 130px;
    font-family: var(--font-barlow-condensed);
    color: var(--white-color);
    font-weight: 600;
}

.footer-a svg{
    height: 35px;
    width: 35px;
}

.footer-social-media{
    list-style: none;
    display: flex;
    gap: 30px;
    height: 34px;
    max-width: 217px;
    margin: 0px;
    padding: 0px;
    align-items: center;
}

.container-footer-img{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.footer-div-container{
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-div-container-first{
    justify-content: end;
}

.footer-div-container-second{
    justify-content: center;
}

.footer-p-first{
    font-size: 16px;
    text-align: right;
    margin: 10px 0px 40px 0px;
    font-weight: normal;
    line-height: normal;
    color: var(--white-color);
}

.footer-p-second{
    font-weight: 400;
    line-height: normal;
    color: var(--white-color);
    font-size: 14px;
    text-align: center;
    margin-top: 24px;
}

.footer-div-line{
    height: 1px;
    background-color: #FFFFFF33;
    width: 100%;
}

/* MEDIA QUERIES ---------------------------------------- ATENÇÃO!!!!!!!!! -------- */

@media screen and (max-width: 1300px){

    /* [HERO (MEDIA QUERIES) STYLES - 1300px]  */
    .hero-div-container-infos{
        max-width: 420px;
    }
    .hero-h1-date{
        font-size: 80px;
        margin: 60px 0px 0px;
    }
    .hero-h3-state-and-city{
        font-size: 36px;
        letter-spacing: 1.36px;
        margin: 8px 0px 20px;
    }
    .hero-h3-info{
        font-size: 24px;
        letter-spacing: 0.24px;
        margin: 0px 0px 13px;
    }
    .hero-p-info{
        font-size: 20px;
        letter-spacing: 0.20px;
        margin: 0px 0px 30px;
    }
    .hero-button-btn{
        font-size: 20px;
        padding: 14px 28px;
    }
    .hero-img-card-speaker {
        width: 250px;
    }
    .hero-img-logo{
        width: 250px;
    }

    /* [NAVBAR (MEDIA QUERIES) STYLES - 1300px]  */
    .nav-div-container{
        padding: 14px 32px;
    }

    .nav-ul-list{
        gap: 12px;
    }

    .nav-button-btn{
        padding: 5px 18px;
        font-size: 20px;
    }

    .nav-ul-list-item a{
        font-size: 18px;
        padding: 6px 12px;
    }

    .nav-svg-logo{
        width: 96px;
        height: 48px;
    }

    /* [VIDEO (MEDIA QUERIES) STYLES - 1300px]  */
    .video-section{
        padding: 60px 24px;
    }

    .video-div-container{
        gap: 70px;
    }

    .video{
        max-width: 480px;
        border-radius: 20px;
    }

    .video-div-container-infos{
        max-width: 440px;
    }

    .video-h3-first {
        font-size: 26px;
    }

    .video-h3-second {
        font-size: 32px;
        letter-spacing: 0.40px;
        max-width: 380px;
    }

    .video-h2-first {
        font-size: 32px;
        letter-spacing: 0.80px;
        max-width: 380px;
    }

    /* [MODAL (MEDIA QUERIES) STYLES - 1300px]  */
    .modal-section {
        padding: 54px 32px;
    }

    .modal-h2 {
        font-size: 32px;
    }

    .modal-h4 {
        font-size: 26px;
        letter-spacing: 0.28px;
        margin: 10px 0px 42px 0px;
    }

    .modal-div-card {
        max-width: 250px;
    }

    .modal-h4-card {
        font-size: 18px;
    }

    .modal-div-open {
        max-width: 780px;
        max-height: 350px;
    }

    .modal-img-open-speaker{
        max-width: 200px;
    }

    .modal-p-open-container{
        max-height: 150px;
    }

    .modal-h2-open {
        font-size: 27px;
    }

    .modal-h3-open {
        font-size: 20px;
    }

    .modal-h4-open {
        font-size: 20px;
    }

    /* [TICKET (MEDIA QUERIES) STYLES - 1300px]  */
    .ticket-section {
        padding: 42px 24px;
    }

    .ticket-h2-top {
        font-size: 40px;
        letter-spacing: 0.50px;
        margin: 0px 0px 14px;
    }

    .ticket-h4-top {
        font-size: 26px;
        letter-spacing: 0.26px;
        margin: 0px 0px 36px;
        max-width: 1000px;
    }

    .ticket-div-container {
        max-width: 840px;
        gap: 40px;
        margin-bottom: 50px;
    }

    .ticket-div-card {
        max-width: 400px;
    }

    .ticket-h3-card-title {
        font-size: 32px;
    }

    .ticket-div-container-content {
        padding: 36px 36px 38px;
    }

    .ticket-h2-card-price {
        font-size: 46px;
        margin: 0px 0px 14px;
    }

    .ticket-h4-card-desc {
        font-size: 22px;
        letter-spacing: 0.26px;
        margin: 0px 0px 10px;
    }

    .ticket-h3-card-store {
        font-size: 20px;
        letter-spacing: 0.26px;
        margin: 0px;
    }

    .ticket-h3-card-place {
        font-size: 20px;
        letter-spacing: 0.26px;
        margin: 0px 0px 36px;
    }

    .ticket-button-card {
        padding: 14px 20px;
        font-size: 20px;
    }

    .ticket-line-bottom{
        max-width: 840px;
    }

    /* [FORM (MEDIA QUERIES) STYLES - 1300px]  */
    .form {
        gap: 28px;
        max-width: 840px;
        padding: 54px 48px;
    }

    .form-div-container-root {
        gap: 70px;
    }

    .form-h2-title {
        font-size: 40px;
        margin: 0px 0px 12px;
    }

    .form-h4-desc {
        font-size: 22px;
        letter-spacing: 0.28px;
        margin: 0px;
    }

    .form-div-container-fields {
        gap: 10px;
    }

    .form-label-custom {
        font-size: 17px;
    }

    .form-div-container-input {
        gap: 4px;
    }

    .form-input {
        padding: 8px 10px;
    }

    .form-p-message-error {
        font-size: 14px;
    }

    .form-button-submit {
        max-width: 400px;
        font-size: 20px;
        padding: 12px 26px;
    }

    /* [LOCAL (MEDIA QUERIES) STYLES - 1300px]  */
    .local-section {
        padding: 60px 32px;
    }

    .local-div-container {
        max-width: 840px;
        gap: 80px;
    }

    .local-div-container-content {
        max-width: 380px;
    }

    .local-h2-title {
        font-size: 42px;
        letter-spacing: 0.50px;
        margin: 0px 0px 22px;
    }

    .local-h4-where {
        font-size: 24px;
        letter-spacing: 0.26px;
    }

    .local-h4-address {
        font-size: 24px;
        letter-spacing: 0.26px;
        margin: 0px 0px 20px;
    }

    .local-div-container-date {
        margin-top: 20px;
    }

    .local-i-icon {
        font-size: 22px;
    }

    .local-p-date {
        font-size: 20px;
        letter-spacing: 0.26px;
    }

    .local-div-container-clock {
        margin-top: 16px;
    }

    .local-p-hour {
        font-size: 20px;
        letter-spacing: 0.26px;
    }

    .local-a-map{
        font-size: 26px;
    }

    .local-img-map {
        width: 100%;
        max-width: 380px;
    }

    /* [CAROUSEL (MEDIA QUERIES) STYLES - 1300px]  */
    .carousel-div-container-root{
        max-width: 950px;
    }

    .carousel-title {
        font-size: 40px;
        letter-spacing: 0.50px;
        margin: 0px 0px 56px;
    }

    .carousel-div-container {
        max-width: 950px;
    }

    .carousel-div-card {
        max-width: 260px;
        padding: 25px 25px 38px;
    }

    .carousel-div-card-container-top {
        gap: 14px;
        margin: 0px 0px 15px;
    }

    .carousel-h4-name {
        font-size: 18px;
    }

    .carousel-h4-profession {
        font-size: 18px;
    }

    .carousel-img-profile {
        height: 74px;
        width: 74px;
    }

    .carousel-div-container-p{
        margin-top: 0px;
        padding: 0px 15px 0px 0px;
        height: 200px;
    }

    .carousel-p-desc {
        font-size: 16px;
    }

    .carousel-button-arrow {
        height: 55px !important;
        width: 55px !important;
    }

    .carousel-button-arrow i{
        font-size: 18px;
    }

    .carousel-button-left {
        left: 5px !important;
    }

    .carousel-button-right {
        right: 5px !important;
    }
    /* [TOAST (MEDIA QUERIES) STYLES - 1300px]  */
    .toastify{
        font-size: 18px;
    }

    /* [DOUBT (MEDIA QUERIES) STYLES - 1300px]  */
    .doubts-section {
        padding: 56px 32px;
    }

    .doubts-h2 {
        font-size: 38px;
        letter-spacing: 0.42px;
        margin: 0px 0px 38px;
    }

    .doubts-div-container {
        gap: 20px;
        max-width: 840px;
        margin-bottom: 40px;
    }

    .doubts-div-card {
        padding: 24px 22px;
        gap: 8px;
    }

    .doubts-h4 {
        font-size: 20px;
    }

    .doubts-p {
        font-size: 16px;
    }

    .doubts-button-btn {
        font-size: 20px;
        padding: 14px 28px;
        max-width: 350px;
    }

    /* [SPONSORS (MEDIA QUERIES) STYLES - 1300px]  */
    .sponsors-div-container {
        margin-top: 40px;
        gap: 36px;
    }
    .sponsors-h2 {
        font-size: 42px;
        letter-spacing: 0.42px;
    }

    .sponsors-img-veezor,  
    .sponsors-img-fattora {
        width: 150px;
    }

    .sponsors-img-veezor {
        height: 18px;
    }

    .sponsors-img-fattora {
        height: 48px;
    }

    /* [FOOTER (MEDIA QUERIES) STYLES - 1300px]  */
    footer{
        padding: 48px 60px 56px 60px;
    }

    .footer-social-media{
        gap: 25px;
        max-width: none;
        width: auto;
    }

    .footer-a svg{
        height: 30px;
        width: 30px;
    }

    .footer-svg-logo{
        width: 120px;
    }

    .footer-p-first{
        margin: 0px 0px 30px 0px;
    }
}

@media screen and (max-width: 1150px){

    /* [HERO (MEDIA QUERIES) STYLES - 1150px]  */
    .hero-div-container-root{
        padding: 48px 24px;
    }
    .hero-div-container-infos{
        max-width: 350px;
    }
    .hero-h1-date{
        font-size: 70px;
    }
    .hero-h3-state-and-city{
        font-size: 32px;
        letter-spacing: 1.30px;
        margin: 6px 0px 15px;
    }
    .hero-h3-info{
        font-size: 20px;
        letter-spacing: 0.20px;
        margin: 0px 0px 9px;
    }
    .hero-p-info{
        font-size: 17px;
        letter-spacing: 0.16px;
        margin: 0px 0px 24px;
    }
    .hero-button-btn{
        font-size: 16px;
        padding: 10px 24px;
    }
    .hero-div-container-speaker{
        gap: 20px;
    }
    .hero-img-card-speaker {
        width: 200px;
    }
    .hero-img-logo{
        width: 200px;
    }
    
    /* [NAVBAR (MEDIA QUERIES) STYLES - 1150px]  */
    .nav-div-container{
        padding: 12px 24px;
    }
    .nav-bar{
        gap: 12px;
    }

    .nav-ul-list{
        gap: 12px;
    }

    .nav-button-btn{
        border: 1px solid var(--white-color);
        padding: 5px 18px;
        font-size: 17px;
    }

    .nav-ul-list-item a{
        font-size: 15px;
        padding: 6px 12px;
    }

    .nav-svg-logo{
        width: 76px;
        height: 36px;
    }

    /* [VIDEO (MEDIA QUERIES) STYLES - 1150px]  */
    .video-section{
        padding: 50px 24px;
    }

    .video-div-container{
        gap: 60px;
    }

    .video{
        max-width: 380px;
        border-radius: 16px;
    }

    .video-h3-first {
        font-size: 24px;
    }

    .video-h3-second {
        font-size: 30px;
        letter-spacing: 0.34px;
        max-width: 350px;
    }

    .video-h2-first {
        font-size: 30px;
        letter-spacing: 0.70px;
    }

    /* [MODAL (MEDIA QUERIES) STYLES - 1150px]  */
    .modal-section {
        padding: 50px 32px;
    }

    .modal-div-card {
        max-width: 220px;
    }

    .modal-h4-card {
        font-size: 17px;
    }

    .modal-h3-card {
        font-size: 16px;
    }
    
    .modal-div-container {
        max-width: 800px;
    }

    .modal-img-open-speaker{
        max-width: 190px;
    }

    .modal-h2-open {
        font-size: 24px;
        margin: 0px 36px 8px 0px;
    }

    .modal-h3-open {
        font-size: 20px;
        margin: 0px 0px 8px;
    }

    .modal-h4-open {
        font-size: 18px;
    }

    .modal-p-open {
        font-size: 14px;
    }

    /* [TICKET (MEDIA QUERIES) STYLES - 1150px]  */
    .ticket-section {
        padding: 32px 24px;
    }

    .ticket-h2-top {
        font-size: 32px;
        letter-spacing: 0.40px;
        margin: 0px 0px 12px;
    }

    .ticket-h4-top {
        font-size: 22px;
        letter-spacing: 0.20px;
        margin: 0px 0px 30px;
        max-width: 800px;
    }

    .ticket-div-container {
        max-width: 720px;
        gap: 40px;
    }

    .ticket-div-card {
        max-width: 340px;
    }

    .ticket-h3-card-title {
        font-size: 26px;
    }

    .ticket-div-container-content {
        padding: 32px 32px 36px;
    }

    .ticket-h2-card-price {
        font-size: 36px;
        margin: 0px 0px 8px;
    }

    .ticket-h4-card-desc {
        font-size: 18px;
        letter-spacing: 0.20px;
        margin: 0px 0px 8px;
    }

    .ticket-h3-card-store {
        font-size: 18px;
        letter-spacing: 0.20px;
        margin: 0px;
    }

    .ticket-h3-card-place {
        font-size: 18px;
        letter-spacing: 0.20px;
        margin: 0px 0px 28px;
    }

    .ticket-button-card {
        padding: 12px 18px;
        font-size: 16px;
    }

    .ticket-line-bottom{
        max-width: 720px;
    }

    /* [FORM (MEDIA QUERIES) STYLES - 1150px]  */
    .form {
        max-width: 720px;
        padding: 44px 38px;
    }

    .form-div-container-root {
        gap: 50px;
    }

    .form-div-container-input-root {
        width: 100%;
        min-height: 55px;
    }

    .form-h2-title {
        font-size: 36px;
        margin: 0px 0px 10px;
    }

    .form-h4-desc {
        font-size: 18px;
        letter-spacing: 0.28px;
        margin: 0px;
    }

    .form-div-container-fields {
        gap: 8px;
    }

    .form-input {
        font-size: 14px;
    }

    .form-p-message-error {
        font-size: 14px;
    }

    .form-button-submit {
        max-width: 350px;
        font-size: 17px;
        padding: 12px 22px;
    }

    /* [LOCAL (MEDIA QUERIES) STYLES - 1150px]  */
    .local-section {
        padding: 50px 32px;
    }

    .local-div-container {
        max-width: 720px;
        gap: 60px;
    }

    .local-div-container-content {
        max-width: 330px;
    }

    .local-h2-title {
        font-size: 38px;
        letter-spacing: 0.44px;
        margin: 0px 0px 18px;
    }

    .local-h4-where {
        font-size: 20px;
        letter-spacing: 0.20px;
    }

    .local-h4-address {
        font-size: 20px;
        letter-spacing: 0.20px;
        margin: 0px 0px 20px;
    }

    .local-div-container-date {
        margin-top: 16px;
    }

    .local-i-icon {
        font-size: 20px;
    }

    .local-p-date {
        font-size: 18px;
        letter-spacing: 0.22px;
    }

    .local-div-container-clock {
        margin-top: 12px;
    }

    .local-p-hour {
        font-size: 18px;
        letter-spacing: 0.22px;
    }

    .local-a-map{
        font-size: 24px;
    }

    .local-img-map {
        width: 100%;
        max-width: 330px;
    }

    /* [CAROUSEL (MEDIA QUERIES) STYLES - 1150px]  */
    .carousel-div-container-root{
        max-width: 900px;
    }

    .carousel-title {
        font-size: 36px;
        letter-spacing: 0.40px;
        margin: 0px 0px 50px;
    }

    .carousel-div-container {
        max-width: 900px;
    }

    .carousel-div-card {
        max-width: 260px;
        padding: 20px 20px 30px;
    }

    .carousel-img-profile {
        height: 62px;
        width: 62px;
    }

    .carousel-p-desc {
        font-size: 14px;
    }

    .carousel-button-arrow {
        height: 50px !important;
        width: 50px !important;
    }

    .carousel-button-arrow i{
        font-size: 16px;
    }

    /* [TOAST (MEDIA QUERIES) STYLES - 1150px]  */
    .toastify{
        top: 88px !important;
        font-size: 16px;
    }

    /* [DOUBT (MEDIA QUERIES) STYLES - 1150px]  */
    .doubts-section {
        padding: 48px 32px;
    }

    .doubts-h2 {
        font-size: 34px;
        letter-spacing: 0.36px;
        margin: 0px 0px 28px;
    }

    .doubts-div-container {
        gap: 20px;
        max-width: 720px;
        margin-bottom: 30px;
    }

    .doubts-div-card {
        padding: 22px 20px;
        gap: 6px;
    }

    .doubts-h4 {
        font-size: 18px;
    }

    .doubts-p {
        font-size: 14px;
    }

    .doubts-button-btn {
        font-size: 17px;
        padding: 14px 22px;
        max-width: 320px;
    }

    /* [SPONSORS (MEDIA QUERIES) STYLES - 1150px]  */
    .sponsors-h2 {
        font-size: 36px;
        letter-spacing: 0.36px;
    }

    /* [FOOTER (MEDIA QUERIES) STYLES - 1150px]  */
    footer{
        padding: 32px 40px 38px 40px;
    }

    .footer-social-media{
        gap: 20px;
    }

    .footer-p-second{
        font-size: 12px;
    }

    .footer-svg-logo{
        width: 90px;
    }

    .footer-p-first{
        font-size: 14px;
        margin: 10px 0px 30px 0px;
    }
}

@media screen and (max-width: 950px){

    /* [HERO (MEDIA QUERIES) STYLES - 950px]  */
     .hero-div-container-root{
        margin-top: 60px;
    }

    .hero-div-container-infos{
        max-width: 320px;
    }
    .hero-h1-date{
        font-size: 60px;
        margin: 0px;
    }
    .hero-h3-state-and-city{
        font-size: 26px;
        letter-spacing: 1.26px;
        margin: 6px 0px 10px;
    }
    .hero-h3-info{
        font-size: 18px;
        letter-spacing: 0.16px;
    }
    .hero-p-info{
        font-size: 17px;
        letter-spacing: 0.10px;
        margin: 0px 0px 18px;
    }
    .hero-button-btn{
        font-size: 16px;
        padding: 8px 20px;
    }
    .hero-div-container-speaker{
        gap: 20px;
    }
    .hero-img-card-speaker {
        width: 170px;
    }
    .hero-img-logo{
        width: 170px;
    }

    /* [NAVBAR (MEDIA QUERIES) STYLES - 950px]  */
    .nav-ul-list{
        display: none;
    }

    .nav-button-btn{
        font-size: 14px;
        padding: 5px 14px;
    }

    .nav-div-container-btn-icon{
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .nav-button-btn-menu{
        display: grid;
        place-items: center;
        padding: 8px 12px;
        background-color: transparent;
        color: var(--white-color);
        transition: all .3s ease;
        cursor: pointer;
        border-radius: 4px;
        border: none;
    }

    .nav-menu-icon{
        display: inline-block !important;
        font-size: 12px !important;
    }

    .nav-button-btn{

        &:hover{
            color: var(--white-color);
            background-color: transparent;
        }

        &:active{
            transform: scale(0.85);
        }
    }

    /* [SIDEBAR (MEDIA QUERIES) STYLES - 950px]  */
    .sidebar-aside{
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transform: translateX(100%);
        background-color: var(--secondary-color);
        max-width: 200px;
        transition: all .5s ease-in-out;
        z-index: 99;
        padding-top: 60px;
    }

    .sidebar-aside-active{
        transform: translateX(0) !important;
    }

    .sidebar-ul-list{
        list-style: none;
        padding: 0px;
        width: 100%;
        display: grid;
        grid-template-columns: auto;
        gap: 6px;
        padding: 0px 6px;
    }

    .sidebar-ul-list-item a{
        color: var(--white-color);
        font-family: var(--font-barlow-condensed);
        font-size: 17px;
        text-decoration: none;
        padding: 6px 12px;
        display: block;
        transition: all .1s ease;
        border-radius: 4px;
        font-weight: 600;

        &:hover{
            background-color: var(--primary-color-hover);
        }
    }

    /* [VIDEO (MEDIA QUERIES) STYLES - 950px]  */
    .video-div-container{
        flex-direction: column;
    }

    .video-section{
        padding: 50px 24px;
    }

    .video-div-container{
        gap: 30px;
    }

    .video{
        max-width: none;
    }

    .video-div-container-infos{
        max-width: none;
    }

    .video-h3-first {
        font-size: 26px;
    }

    .video-h3-second {
        font-size: 32px;
        letter-spacing: 0.34px;
        max-width: 380px;
    }

    .video-h2-first {
        font-size: 32px;
        letter-spacing: 0.70px;
        max-width: none;
    }

    /* [MODAL (MEDIA QUERIES) STYLES - 950px]  */
    .modal-h2 {
        font-size: 28px;
    }

    .modal-h4 {
        font-size: 22px;
    }
    
    .modal-div-open {
        max-width: 600px;
        max-height: 300px;
        gap: 24px;
    }

    .modal-img-open-speaker{
        max-height: 300px;
        max-width: 170px;
    }

    .modal-div-container-info{
        height: 100%;
        padding: 32px 24px 36px;
    }

    .modal-p-open-container{
        max-height: 120px;
    }

    .modal-button-icon{
        top: 32px;
        right: 32px;
    }

    .modal-h2-open {
        font-size: 22px;
        margin: 0px 0px 8px;
    }

    /* [FORM (MEDIA QUERIES) STYLES - 950px]  */
    .form-section{
        padding: 36px 32px;
    }

    .form-div-container-root {
        gap: 30px;
        flex-direction: column;
    }

    .form-div-container-input-root {
        width: 100%;
    }

    .form-div-container-fields{
        max-width: none;
        gap: 20px;
    }

    .form-h2-title {
        font-size: 32px;
    }

    .form-h4-desc {
        font-size: 18px;
    }

    .form-input {
        font-size: 16px;
    }

    .form-p-message-error {
        font-size: 15px;
    }

    .form-button-submit {
        max-width: 300px;
        font-size: 16px;
        padding: 12px 16px;
    }

    /* [LOCAL (MEDIA QUERIES) STYLES - 950px]  */
    .local-section {
        padding: 40px 32px;
    }

    .local-div-container {
        flex-direction: column;
        gap: 50px;
    }

    .local-div-container-content {
        max-width: none;
    }

    .local-a-map{
        font-size: 28px;
    }

    .local-img-map {
        max-width: 430px;
    }

    /* [SWIPER (MEDIA QUERIES) STYLES - 950px]  */
    .swiper-slide-next .carousel-div-card{
        opacity: 1;
        transform: none;
    }

    .swiper-slide-prev .carousel-div-card{
        opacity: 1;
        transform: none;
    }

    /* [CAROUSEL (MEDIA QUERIES) STYLES - 950px]  */
    .carousel-div-container-root{
        max-width: 900px;
    }

    .carousel-title {
        font-size: 38px;
        letter-spacing: 0.46px;
    }

    .carousel-div-container {
        max-width: 900px;
    }

    .carousel-div-card {
        max-width: 280px;
        padding: 25px 25px 40px;
    }

    .carousel-h4-name {
        font-size: 20px;
    }

    .carousel-h4-profession {
        font-size: 20px;
    }

    .carousel-img-profile {
        height: 74px;
        width: 74px;
    }

    .carousel-p-desc {
        font-size: 16px;
    }

    .carousel-button-arrow {
        height: 50px !important;
        width: 50px !important;
    }

    .carousel-button-arrow i{
        font-size: 18px;
    }

    /* [DOUBT (MEDIA QUERIES) STYLES - 950px]  */
    .doubts-button-btn-card {
        &:hover{
            background-color: transparent;
        }
    }

    /* [SPONSORS (MEDIA QUERIES) STYLES - 950px]  */
    .sponsors-h2 {
        font-size: 38px;
        letter-spacing: 0.30px;
    }

    /* [FOOTER (MEDIA QUERIES) STYLES - 950px]  */
    footer{
        padding: 28px 32px 40px 32px;
    }

    .footer-svg-logo{
        width: 80px;
    }

    .footer-a svg{
        height: 25px;
        width: 25px;
    }

    .footer-social-media{
        gap: 20px;
    }

    .footer-p-first{
        font-size: 12px;
        text-align: center;
        margin: 0px 0px 20px 0px;
    }

    .footer-div-container-first{
        justify-content: center;
    }

    .footer-p-second{
        font-size: 10px;
        margin: 18px 0px 0px;
    }
}

@media screen and (max-width: 768px){

    /* [HERO (MEDIA QUERIES) STYLES - 768px]  */
    .hero-div-container-root{
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        padding: 24px 24px;
    }
    .hero-div-container-infos{
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
    }
    .hero-div-container-infos{
        max-width: 550px;
    }
    .hero-h3-state-and-city{
        font-size: 22px;
        letter-spacing: 1.20px;
    }
    .hero-button-btn{
        font-size: 16px;
        padding: 6px 16px;
    }
    .hero-div-container-speaker{
        margin-top: 30px;
        gap: 10px;
        justify-self: center;
    }
    .hero-img-card-speaker {
        width: 150px;
    }
    .hero-img-logo{
        width: 150px;
    }
    .hero-h1-date{
        font-size: 52px;
    }

    /* [VIDEO (MEDIA QUERIES) STYLES - 768px]  */
    .video-section{
        padding: 40px 24px;
    }

    .video-div-container{
        gap: 20px;
    }

    .video{
        border-radius: 12px;
    }

    .video-h3-first {
        font-size: 22px;
    }

    .video-h3-second {
        font-size: 26px;
        letter-spacing: 0.30px;
        max-width: 310px;
    }

    .video-h2-first {
        font-size: 26px;
        letter-spacing: 0.60px;
    }

    /* [MODAL (MEDIA QUERIES) STYLES - 768px]  */
    .modal-div-open {
        flex-direction: column;
        max-width: 600px;
        max-height: none;
    }

    .modal-img-open-speaker{
        max-height: 280px;
        max-width: 160px;
    }

    .modal-div-container-info{
        height: auto;
        padding: 32px 24px 36px;
    }

    .modal-button-icon{
        top: 32px;
        right: 32px;
    }

    .modal-h2-open {
        font-size: 19px;
    }

    .modal-h4-open {
        margin: 0px 0px 10px;
    }

    /* [FORM (MEDIA QUERIES) STYLES - 768px]  */
    .form-button-submit {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* [SWIPER (MEDIA QUERIES) STYLES - 768px]  */
    .swiper-pagination-bullet{
        background-color: var(--white-color) !important;
    }

    .swiper-pagination{
        display: block !important;
        position: static !important;
        margin-top: 20px;
    }

    /* [CAROUSEL (MEDIA QUERIES) STYLES - 768px]  */
    .carousel-button-arrow {
        display: none !important;
    }

    .carousel-div-container-p{
        height: 250px;
    }

    .carousel-div-card-container-top {
        margin: 0px 0px 20px;
    }

    .carousel-title {
        font-size: 32px;
        letter-spacing: 0.40px;
    }

    .carousel-div-card {
        max-width: 280px;
        padding: 20px 20px 30px;
    }

    .carousel-h4-name {
        font-size: 18px;
    }

    .carousel-h4-profession {
        font-size: 18px;
    }

    .carousel-img-profile {
        height: 62px;
        width: 62px;
    }

    .carousel-p-desc {
        font-size: 17px;
    }

    /* [TOAST (MEDIA QUERIES) STYLES - 768px]  */
    .toastify{
        top: 60px !important;
        font-size: 16px;
        width: 100% !important;
        max-width: none !important;
        right: 0 !important;
        border-radius: 0 !important;
    }

    /* [DOUBT (MEDIA QUERIES) STYLES - 950px]  */
    .doubts-button-btn {
        font-size: 16px;
        padding: 14px 26px;
        max-width: none;
        width: auto;
    }

    /* [SPONSORS (MEDIA QUERIES) STYLES - 768px]  */
    .sponsors-section{
        padding: 62px 24px;
    }
    .sponsors-div-container {
        margin-top: 42px;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 42px;
    }
}

@media screen and (max-width: 350px){

    /* [HERO (MEDIA QUERIES) STYLES - 350px]  */
    .hero-div-container-infos{
        max-width: none;
    }
    .hero-h3-state-and-city{
        font-size: 20px;
        letter-spacing: 1.0px;
    }
    .hero-h3-info{
        font-size: 15px;
        letter-spacing: 0.16px;
    }
    .hero-p-info{
        font-size: 15px;
    }
    .hero-button-btn{
        font-size: 14px;
        padding: 4px 14px;
    }
    .hero-div-container-speaker{
        gap: 10px;
    }
    .hero-img-card-speaker {
        width: 110px;
    }
    .hero-img-logo{
        width: 110px;
    }

    /* [VIDEO (MEDIA QUERIES) STYLES - 350px]  */
    .video{
        min-height: 200px;
    }

    .video-h3-first {
        font-size: 20px;
    }

    .video-h3-second {
        font-size: 22px;
        letter-spacing: 0.20px;
        max-width: 260px;
    }

    .video-h2-first {
        font-size: 22px;
        letter-spacing: 0.50px;
    }
}