/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,900&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=Poppins:wght@600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Montserrat:wght@400;700&display=swap');
/* Estilos Gerais */
body {
    font-family: 'Barlow', sans-serif;
}

.container {
    max-width: 1440px;
}

.conatiner-mt {
    margin-top: 120px;
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.ajuste-z{
    position: relative;
    z-index: 100;
}

.max-section {
	max-width: 2560px;
	margin: auto;
}
/* Estilo para banner de contagem regressiva */
#countdown-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #FAC710;
    z-index: 999;
    text-align: center;
    font-weight: bold;
}

#close-banner {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 40px;
    color: #000;
}

#countdown {
    color: #000;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.navbar {
    position: fixed;
    top: 0;
    transition: top 0.3s ease-in-out;
    -webkit-box-shadow: 0px 2px 20px 18px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 2px 20px 18px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 2px 20px 18px rgba(0, 0, 0, 0.10);
}

.navbar.banner-visible {
    top: 50px;
}

.flag-left {
	float: left;
	height: 50px;
	width: auto;
	position: relative;
	left: 0;
	padding: 4px;
}

.flag-right {
    float: right;
    height: 50px;
    margin-left: 20px;
    width: 130px;
}


@media (max-width: 1770px) {

    #countdown {
        margin-top: 10px;
    }
}

/* Frame7 Gallery Styles */
.frame7-gallery-container {
  position: relative;
}

.frame7-swiper {
  width: 100%;
  height: auto;
  position: relative; /* Base positioning for arrows */
}

.frame7-swiper .swiper-slide {
  width: 25%; /* 4 images on desktop */
  height: auto;
  padding: 0 2px;
  box-sizing: border-box;
  opacity: 1 !important; /* keep all slides visible */
}

/* Square images (1:1) */
.frame7-gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* force square */
  height: auto; /* derived from aspect-ratio */
  object-fit: cover; /* cover without distortion */
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* Remove yellow border inherited from global styles */
.frame7-swiper .swiper-slide img,
.frame7-gallery-img {
  border: none !important;
}

.frame7-gallery-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Navigation arrows styling */
.frame7-swiper .swiper-button-prev,
.frame7-swiper .swiper-button-next {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10;
  width: 38px !important;
  height: 38px !important;
  border-radius: 10% !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #979596 !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  background-image: none !important;
}
.frame7-swiper .swiper-button-prev { left: 10px !important; }
.frame7-swiper .swiper-button-next { right: 10px !important; }

/* Re-enable default Swiper icons (globally hidden) */
.frame7-swiper .swiper-button-prev::after,
.frame7-swiper .swiper-button-next::after {
  display: block !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #E82E89 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .frame7-swiper .swiper-slide {
    width: auto; /* let Swiper control width */
    opacity: 1 !important;
  }
  .frame7-swiper .swiper-button-prev,
  .frame7-swiper .swiper-button-next {
    width: 34px !important;
    height: 34px !important;
  }
}

@media (max-width: 576px) {
  .frame7-swiper .swiper-slide {
    width: auto;
    opacity: 1 !important;
  }
  .frame7-swiper .swiper-button-prev,
  .frame7-swiper .swiper-button-next {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 1600px) and (min-width: 991.01px) {
    #countdown-banner {
        height: 35px;
      }
      
      #countdown {
        font-size: 12px;
      }
      
      .flag-left {
        height: 35px;
      }
      
      .flag-right {
        height: 35px;
      }
    }      

@media (max-width: 991px) {

    #countdown {
        width: 95%;
    }

    #close-banner {
        right: 14vw;
    }

    .flag-left {
        width: 100%;
        height: auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .flag-right {
        height: auto;
        width: 80%;
    }

}

@media (max-width: 768px) {

    #countdown-banner {
        height: 50px;
        width: 100vw;
    }

    #countdown {
        width: 95%;
        margin-top: 5px;
    }

    #close-banner {
        right: 14vw;
    }

    .flag-left {
        width: 100%;
        height: auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .flag-right {
        height: auto;
        width: 80%;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

}

@media (max-width: 576px) {
    #countdown {
        font-size: 12px;
    }

}

@media (max-width: 375px) {
    #countdown {
        font-size: 10px;
    }
}



/* Navbar */
.navbar {
    background-color: #E82E89;
    padding: 10px;
}

.nav-item {
    position: relative;
    padding: 0 10px;
}

.nav-link {
    position: relative;
    color: white !important;
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 700;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fac710;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.nav-link:hover::before,
.nav-link:hover {
    visibility: visible;
    transform: scaleX(1);
    color: #fac710 !important;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    background-color: #C4236C;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #A51E5A;
    color: white;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-toggler {
	border: 0 !important;
	box-shadow: unset !important;
}

.ticket-link {
    transition: transform 0.3s ease;
}

.ticket-link:hover {
    transform: scale(1.1);
}

.ticket-link::before {
    display: none;
}

.logo-menu {
    max-width: 110px;
}

.menu-icon-ticket {
    max-width: 199px;
    margin-left: 50px;
}

.box-translate {
    width: 60px;
  }
@media (max-width: 1600px) and (min-width: 991.01px) {
    /* .navbar {
        height: 8.4vh;
      } */
      
      .menu-icon-ticket {
        height: 6.5vh;
      }
      
      .logo-menu {
        height: auto;
      }      
}

@media (max-width: 1625px) {
    .nav-link {
        font-size: 1vw;
      }

    .dropdown-item {
        font-size: 16px;
        padding: 8px 16px;
    }

    .menu-icon-ticket {
        max-width: 15vw;
        margin-left: 30px;
    }

    .logo-menu {
        max-width: 90px;
    }
}

@media (max-width: 1625px) and (min-width: 991.01px) {
    .nav-item {
        padding: 0 !important;
      }
      .box-translate {
        width: 50px;
      }
    }
@media (max-width: 991.98px) {
    .nav-link {
        font-size: 20px;
    }
    .box-translate {
        width: 100px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        width: 100vw;
    }

    .navbar.banner-visible {
        top: 50px;
        width: 100vw;
    }

    .nav-link {
        font-size: 16px;
    }

    .dropdown-item {
        font-size: 16px;
        padding: 8px 16px;
    }

    .menu-icon-ticket {
        max-width: 100px;
        margin-left: unset;
    }

    .logo-menu {
        max-width: 55px;
    }

    /* .box-navbar{

        padding: 0 !important;

    } */

    .navbar-toggler{
        padding: 0 !important;
    }
}

@media (max-width: 550px) {

    .box-navbar{
        padding: 0 !important;
    }
    .box-translate {
        width: 80px;
    }
}

/* Super Banner Section */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.9;
}

.banner-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.img-circles-top {
    max-width: 422px;
    height: auto;
    float: left;
    margin-bottom: 40px;
}

.banner-slide h1 {
    color: #FFF;
    font-family: "Barlow Condensed";
    font-size: 82px;
    font-style: normal;
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
    text-transform: uppercase;
    clear: both;
}

.banner-slide h1 span {
    color: #E82E89;
}

.banner-slide #data-evento {
    font-family: Montserrat;
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    color: #E82E89;
    text-align: left;
    text-transform: uppercase;
}

.banner-slide #local-evento {
    color: #C6C6C6;
    font-family: Montserrat;
    font-size: 28.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}

.btn-inscreva-se {
    background-color: #E82E89;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 5px;
    border-radius: 19px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    padding: 5px 40px;
    margin-top: 35px;
}

.btn-inscreva-se:hover {
    background-color: #C4006B;
    color: #FFFFFF;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.logo-summit-banner {
    width: 100%;
    max-width: 520px;
}

/* Media Queries */
@media (max-width: 1919px) {
    .banner-slide h1 {
        font-size: 70px;
    }

    .banner-slide #data-evento {
        font-size: 40px;
    }

    .banner-slide #local-evento {
        font-size: 24px;
    }

    .btn-inscreva-se {
        font-size: 22px;
    }

    .logo-summit-banner {
        width: 420px;
    }
}

@media (max-width: 1600px) and (min-width: 991.01px) {
    .super-banner-w {
        max-width: 1250px;
    }
    .img-circles-top {
        max-width: 40vh;
        margin-bottom: 1.7vh;
      }

      .logo-summit-banner {
        width: 50.2vh;
      }
}
@media (max-width: 1600px) {
    .super-banner-w {
        max-width: 1250px;
    }
}


@media (max-width: 1399.98px) {
    .super-banner-w {
        max-width: 1100px;
    }

    .banner-slide h1 {
        font-size: 60px;
    }

    .img-circles-top {
        max-width: 350px;
    }

    .logo-summit-banner {
        max-width: 450px;
    }
}

@media (max-width: 1199.98px) {
    .super-banner-w {
        max-width: 990px;
    }

    .banner-slide h1 {
        font-size: 50px;
    }

    .banner-slide #data-evento {
        font-size: 35px;
    }

    .banner-slide #local-evento {
        font-size: 20px;
    }

    .img-circles-top {
        max-width: 300px;
    }

    .logo-summit-banner {
        max-width: 400px;
    }
}

@media (max-width: 991.98px) {
    .banner-slide {
        height: 100vh;
        padding: 60px 0;
    }

    .img-circles-top {
        float: none;
        margin: 0 0 30px;
        max-width: 300px;
        width: 26vw;
    }

    .banner-slide h1,
    .banner-slide #data-evento,
    .banner-slide #local-evento {
        text-align: left;
    }

    .btn-inscreva-se {
        display: block;
        margin: 35px 0;
    }

    .logo-summit-banner {
        margin: 30px auto 0;
    }
}

@media (max-width: 767.98px) {
    .banner-slide h1 {
        font-size: calc(40 / 768 * 100vw) !important;
    }

    .banner-slide #data-evento {
        font-size: calc(30 / 768 * 100vw);
    }

    .banner-slide #local-evento {
        font-size: calc(18 / 768 * 100vw);
    }

    .btn-inscreva-se {
        font-size: calc(20 / 768 * 100vw);
        padding: calc(5 / 768 * 100vw) calc(30 / 768 * 100vw);
    }

    .logo-summit-banner {
        max-width: calc(318 / 768 * 100vw);
    }

    .banner-slide {
        height: 100vh;
        padding: 60px 0 0;
    }
}

@media (max-width: 575.98px) {
    .img-circles-top {
        max-width: 99px;
        margin-bottom: -24px;
    }

    .banner-slide h1 {
        font-size: calc(50 / 600 * 100vw) !important;
        text-align: center;
    }

    .banner-slide #data-evento {
        font-size: calc(35 / 600 * 100vw);
        margin-bottom: 0.2rem;
    }

    .banner-slide #local-evento {
        font-size: calc(21 / 600 * 100vw);
    }

    .btn-inscreva-se {
        font-size: calc(29 / 600 * 100vw);
        padding: calc(5 / 600 * 100vw) calc(25 / 600 * 100vw);
        margin-top: 0 !important;
    }

    .logo-summit-banner {
        max-width: 80%;
        margin-bottom: 10px;
    }
}



@media (max-width: 375px) {
    .logo-summit-banner {
        max-width: 48%;
    }

    .banner-slide h1 {
        font-size: calc(40 / 600 * 100vw) !important;
    }

    .banner-slide #data-evento {
        font-size: calc(30 / 600 * 100vw);
    }

    .banner-slide #local-evento {
        font-size: calc(19 / 600 * 100vw);
    }
}


/* Contador */
.contador-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: auto;
}

.contador-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

.contador {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    border-radius: 16px;
    padding: 20px;
}

.contador-item {
    text-align: center;
    margin: 0 5px;
    padding: 0;
    border-radius: 5px;
    min-width: 80px;
}

.contador-valor {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #C4236C;
    background-color: #fff;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #c4236c;
}

.contador-valor-top {
    font-size: 100px;
}

.contador-label,
#meses-label,
#dias-label {
    color: #E82E89;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}

.contador-label,
#horas-label,
#minutos-label,
#segundos-label {
    color: #E82E89;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.contador-item-top {
    width: 157px;
    height: 121px;
}

.contador-item-bottom {
    width: 101px;
    height: 76px;
}

.contador-mp-0 {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.contador-width {
    width: 330px;
}

.squares-banner-box {
    bottom: 60px;
}

.squares-banner {
    max-width: 400px;
}

@media (max-width: 1919px) {
    .contador-valor {
        font-size: 55px;
    }

    .contador-valor-top {
        font-size: 90px;
    }

    .contador-label,
    #meses-label,
    #dias-label {
        font-size: 28px;
    }

    .contador-label,
    #horas-label,
    #minutos-label,
    #segundos-label {
        font-size: 14px;
    }

    .contador-item-top {
        width: 140px;
        height: 110px;
    }

    .contador-item-bottom {
        width: 95px;
        height: 70px;
    }

    .contador-width {
        width: 300px;
    }

    .squares-banner {
        max-width: 350px;
    }
}

@media (max-width: 1600px) and (min-width: 991.01px) {
    .contador-item-top {
      width: 110px;
      height: 90px;
    }
    .contador-valor-top {
        font-size: 76px !important;
    }
    .contador-item-bottom {
      width: 75px;
      height: 55.5px;
    }
    .contador-valor {
      font-size: 45px;
    }
  }

@media (max-width: 768px) {
    .contador-item-top {
        width: 90px;
        height: 80px;
    }

    .contador-valor-top {
        font-size: 65px !important;
    }

    .contador-item-bottom {
        width: 56px;
        height: 44px;
    }

    .contador-valor {
        font-size: 35px;
    }

    .contador-label,
    #horas-label,
    #minutos-label,
    #segundos-label {
        font-size: 11px;
    }

    .contador-label,
    #meses-label,
    #dias-label {
        font-size: 24px;
    }

    .contador-item {
        min-width: 55px;
    }
}

@media (max-width: 576px) {
    #contador {
        margin-top: 0;
        padding-top: 10px;
    }

    .contador-item-top {
        width: 70px;
        height: 60px;
    }

    .contador-valor-top {
        font-size: 50px !important;
    }

    .contador-item-bottom {
        width: 45px;
        height: 35px;
    }

    .contador-valor {
        font-size: 28px;
    }

    .contador-label,
    #horas-label,
    #minutos-label,
    #segundos-label {
        font-size: 9px;
    }

    .contador-label,
    #meses-label,
    #dias-label {
        font-size: 20px;
    }

    .contador-item {
        min-width: 45px;
    }

    .squares-banner {
        max-width: 145px;
    }

    .contador-mp-0 {
        margin-right: 0 !important;
        padding-right: inherit !important;
    }


}

@media (max-width: 375px) {
    .contador-valor-top {
        font-size: 39px !important;
    }

    .contador-item-top {
        width: 62px;
        height: 49px;
    }

    .contador-mp-0 {
        margin-right: 0px !important;
        padding-right: 12px !important;
    }
}


/* Público do Evento */
#publico-evento,
#publico-evento-porcentagens {
    padding: 60px 0;
    position: relative;
}

#publico-evento {
    background-color: #E82E89;
    background-image: url('/cssEvento/summit2025/img/wave-publico-evento.png');
    background-size: contain;
    background-position: top;
    height: auto;
    min-height: 894px;
}

#publico-evento-porcentagens {
    background-color: #FAC710;
    background-image: url('/cssEvento/summit2025/img/wave-publico-evento.png');
    background-size: contain;
    background-position: top;
}

.diversidade-conteudo {
    color: #FAC710;
    font-family: "Barlow Condensed";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.hr-publico-evento {
    width: 90%;
    height: 2px;
    background-color: #FFFFFF;
    border: none;
    margin: 50px auto 20px;

}

.img-video-2023 {
    padding-left: 50px;
}

#publico-evento::before {
    left: 20px;
}

#publico-evento::after {
    right: 20px;
}

.numeros-evento {
    margin-bottom: 40px;
}

.numero-item {
    text-align: center;
}

.numero,
.publico-evento-exp {
    color: #FFF;
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.numero {
    font-size: 128px;
}

.numero::before {
    content: '+';
}



.publico-evento-exp {
    font-size: 96px;
    text-transform: uppercase;
}

.numero-mr {
    margin-right: 50px;
}

.numero-ml {
    margin-left: 50px;
}


.descricao {
    color: #FAC710;
    font-family: "Barlow Condensed";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199.98px) {
    .diversidade-conteudo {
        font-size: 60px;
    }

    .numero {
        font-size: 120px;
    }

    .publico-evento-exp {
        font-size: 90px;
    }

    .descricao {
        font-size: 38px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    #publico-evento {
        height: auto;
        min-height: auto;
    }

    .diversidade-conteudo {
        font-size: calc(56 / 991 * 100vw);
    }

    .numero {
        font-size: calc(112 / 991 * 100vw);
    }

    .publico-evento-exp {
        font-size: calc(84 / 991 * 100vw);
    }

    .descricao {
        font-size: calc(36 / 991 * 100vw);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    #publico-evento {
        height: auto;
    }

    .diversidade-conteudo {
        font-size: calc(48 / 768 * 100vw);
    }

    .numero {
        font-size: calc(70 / 768 * 100vw);
    }

    .publico-evento-exp {
        font-size: calc(65 / 768 * 100vw);
    }

    .descricao {
        font-size: calc(39 / 768 * 100vw);
        margin-bottom: 30px;
    }

    .numero-mr,
    .numero-ml {
        margin: 0;
    }

    .hr-publico-evento {
        margin: 25px auto 0;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    #publico-evento {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }

    .diversidade-conteudo {
        font-size: calc(36 / 576 * 100vw);
    }

    .numero {
        font-size: calc(55 / 576 * 100vw);
    }

    .numeros-evento {
        margin-bottom: 0px;
    }

    .publico-evento-exp {
        font-size: calc(48 / 576 * 100vw);
    }

    .descricao {
        font-size: calc(28 / 576 * 100vw);
    }

    .img-video-2023 {
        padding-left: 0;
    }

    .numero-mr,
    .numero-ml {
        margin: 0;
    }

    .hr-publico-evento {
        margin: 20px auto 20px;
    }
}




/* O que é Lean Summit */
#o-que-e-lean-summit {
    background-color: #f8f9fa;
}

.o-que-lean-titulo {
    color: #003366;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64.6px;
    font-weight: 700;
}

.o-que-lean-subtitulo {
    color: #00B894;
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.o-que-lean-texto {
    color: #000;
    text-align: justify;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.16px;
}

.o-que-lean-chamada {
    color: #00B894;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.o-que-lean-chamada span {
    color: #036;
}

.o-que-lean-zig-zag-decorativo {
	position: absolute;
	top: 100px;
	left: 92px;
	width: 306px;
	z-index: 99;
}

/* Media queries baseadas nos breakpoints do Bootstrap 5 (max-width) */

/* Extra large devices (xl) */
@media (max-width: 1399.98px) {
    .o-que-lean-titulo {
        font-size: 4.29vw;
    }

    .o-que-lean-subtitulo {
        font-size: 2.14vw;
    }

    .o-que-lean-texto {
        font-size: 1.25vw;
    }

    .o-que-lean-chamada {
        font-size: 1.71vw;
    }

    .o-que-lean-zig-zag-decorativo {
        top: -5.4vw;
        left: 6.81vw;
        width: 21.2vw;
    }
}

/* Large devices (lg) */
@media (max-width: 1199.98px) {
    .o-que-lean-titulo {
        font-size: 4.29vw;
    }

    .o-que-lean-subtitulo {
        font-size: 2.14vw;
    }

    .o-que-lean-texto {
        font-size: 1.25vw;
    }

    .o-que-lean-chamada {
        font-size: 1.71vw;
    }

    .o-que-lean-zig-zag-decorativo {
        top: 4.7vw;
        left: 6.81vw;
        width: 20.6vw;
    }
}

/* Medium devices (md) */
@media (max-width: 991.98px) {
    .o-que-lean-titulo {
        font-size: 50px;
    }

    .o-que-lean-subtitulo {
        font-size: 26px;
    }

    .o-que-lean-texto {
        font-size: 16px;
    }

    .o-que-lean-chamada {
        font-size: 21px;
    }

    .o-que-lean-zig-zag-decorativo {
        top: -55px;
        width: 220px;
        right: 0;
        left: unset;
    }
}

/* Small devices (sm) */
@media (max-width: 767.98px) {
    .o-que-lean-titulo {
        font-size: 45px;
        padding-top: 30px;
    }

    .o-que-lean-subtitulo {
        font-size: 25px;
    }

    .o-que-lean-texto {
        font-size: 15px;
    }

    .o-que-lean-chamada {
        font-size: 20px;
    }

    .o-que-lean-zig-zag-decorativo {
        top: -55px;
        width: 220px;
        right: 0;
        left: unset;
    }
}

@media (max-width: 575.98px) {
    .o-que-lean-titulo {
        font-size: 9.813vw;
        padding-top: 5.2083vw;
    }

    .o-que-lean-subtitulo {
        font-size: 5.04vw;
    }

    .o-que-lean-texto {
        font-size: 3.304vw;
    }

    .o-que-lean-chamada {
        font-size: 3.672vw;
    }

    .o-que-lean-zig-zag-decorativo {
        top: -45px;
        width: 150px;
        right: 0;
        left: unset;
    }
}




/* Público do Evento - Porcentagens */
#publico-evento-porcentagens h2 {
    color: #036;
    font-family: "Barlow Condensed";
    font-size: 68px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.num-palestrantes::before {
    content: '+';
}

.porcentagem-item {
    width: 230px;
    margin: 0 auto 30px auto;
    font-family: 'Barlow', sans-serif;
}

.circulo-porcentagem {
    position: relative;
    width: 230px;
    height: 230px;
    margin: 0 auto;
}

.circulo-porcentagem svg {
    transform: rotate(-90deg);
}

.circulo-porcentagem circle {
    transition: stroke-dasharray 0.8s ease-in-out;
}

.porcentagem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 700;
    color: #003366;
}

.porcentagem-item p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #036;
    text-transform: uppercase;
}

.title-publico-evento {
    text-transform: uppercase;
}

@media (max-width: 1399.98px) {
    #publico-evento-porcentagens h2 {
        font-size: 60px;
    }

    .porcentagem-item {
        width: 100%;
        margin: 0 auto 30px auto;
    }

    .circulo-porcentagem {
        width: auto;
        height: auto;
    }

    .porcentagem {
        font-size: 55px;
        top: 50%;
    }
}


@media (max-width: 1199.98px) {
    .porcentagem-item {
        width: 210px;
        margin: 0 auto 30px auto;
    }

    .circulo-porcentagem {
        width: auto;
        height: auto;
    }

.porcentagem {
	font-size: 4.5vw;
	top: 50%;
	left: 10.8vw;
}
}

@media (max-width: 991.98px) {
    #publico-evento-porcentagens h2 {
        font-size: 56px;
    }

    .porcentagem-item {
        width: auto;
        margin: 0 auto 30px auto;
    }

.porcentagem {
	font-size: 55px;
	top: 50%;
	left: 15.6vw;
}


}


@media (max-width: 767.98px) {
    #publico-evento-porcentagens h2 {
        font-size: 39px;
        margin-bottom: 70px !important;
    }

    .circulo-porcentagem {
        width: auto;
        height: auto;
    }

    .porcentagem {
        font-size: 40px;
    }

    .porcentagem-item {
        width: auto;
        margin: 0 auto 0 auto;
    }

    #publico-evento-porcentagens .col {
        margin-top: 0px;
    }
}

@media (max-width: 575.98px) {
    #publico-evento-porcentagens h2 {
        font-size: 29px;
    }

    .porcentagem-item {
        width: 100%;
        margin: 0 auto 30px auto;
    }

    .circulo-porcentagem {
        width: auto;
        height: auto;
    }

  .porcentagem {
    font-size: 35px;
    left: 21vw;
  }

    .porcentagem-item p {
        font-size: 16px;
    }
}

@media (max-width: 341px) {
    .porcentagem {
        font-size: 32px;
        left: 21.4vw;
    }

    .porcentagem-item p {
        font-size: 16px;
    }
}




/* Seção "Por que participar do Lean Summit 2025?" */
#participar-lean-summit {
    background-color: #f8f9fa;
    padding: 80px 0;
}

#participar-lean-summit .titulo-secao {
    color: #E82E89;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 100px;
}

.razoes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.razao-item {
    /*! width: 48%; */
    margin-bottom: 40px;
}

.razao-titulo {
    color: #E82E89;
    text-align: left;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0;
    margin-left: 30px;
    line-height: 1;
}

.razao-texto {
    color: #036;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    text-align: justify;
    margin-bottom: 20px;
}

.razao-item-mt {
    margin-top: -40px;
}

.btn-inscreva-se-participe {
    background-color: #E82E89;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 5px;
    border-radius: 19px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    padding: 5px 40px;
    margin-top: 35px;
}

.btn-inscreva-se-participe:hover {
    background-color: #C4006B;
    color: #FFFFFF;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Media queries baseadas nos breakpoints do Bootstrap 5 (max-width) */

/* Extra large devices (xl) */
@media (max-width: 1399.98px) {
    #participar-lean-summit .titulo-secao {
        font-size: 56px;
    }

    .razao-titulo {
        font-size: 28px;
    }

    .razao-texto {
        font-size: 22px;
    }

    .btn-inscreva-se-participe {
        font-size: 24px;
    }
}

/* Large devices (lg) */
@media (max-width: 1199.98px) {
    #participar-lean-summit .titulo-secao {
        font-size: 52px;
        margin-bottom: 80px;
    }

    .razao-titulo {
        font-size: 26px;
    }

    .razao-texto {
        font-size: 20px;
    }

    .btn-inscreva-se-participe {
        font-size: 22px;
        padding: 5px 30px;
    }
}

/* Medium devices (md) */
@media (max-width: 991.98px) {
    #participar-lean-summit {
        padding: 60px 0;
    }

    #participar-lean-summit .titulo-secao {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .razao-titulo {
        font-size: 24px;
        margin-left: 20px;
    }

    .razao-texto {
        font-size: 18px;
    }

    .btn-inscreva-se-participe {
        font-size: 20px;
        padding: 5px 25px;
    }
}

/* Small devices (sm) */
@media (max-width: 767.98px) {
    #participar-lean-summit {
        padding: 50px 0;
    }

    #participar-lean-summit .titulo-secao {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .razao-titulo {
        font-size: 27px;
        margin-left: 15px;
        line-height: 1;
    }

    .razao-texto {
        font-size: 16px;
    }

    .btn-inscreva-se-participe {
        font-size: 18px;
        padding: 5px 20px;
        letter-spacing: 3px;
    }

    .razao-icon {
        width: 30px;
    }
}

/* Extra small devices (xs) */
@media (max-width: 575.98px) {
    #participar-lean-summit {
        padding: 40px 0;
    }

    #participar-lean-summit .titulo-secao {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .razao-titulo {
        font-size: 5vw;
        margin-left: 10px;
        line-height: 1;
    }

    .razao-texto {
        font-size: 14px;
    }

    .btn-inscreva-se-participe {
        font-size: 16px;
        padding: 5px 15px;
        letter-spacing: 2px;
        margin-top: 0px;
    }

    .razao-item-mt {
        margin-top: 0;
    }
}





.glider-contain {
    width: 100%;
    margin: 0 auto;
}

.testimonial-card {
    height: 100%;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
}

.glider-prev,
.glider-next {
    top: 50%;
    transform: translateY(-50%);
}

.glider-dot.active {
    background: #007bff;
}












/* O que falam sobre o Lean Summit */

#testimonialCarousel {
    height: 450px;
}

.testimonials {
    background-color: #f33f02;
    position: relative;
    padding-top: 80px;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background-color: #ddd;
}


#customers-testimonials .item-details {
    background-color: #333333;
    color: #fff;
    padding: 20px 10px;
    text-align: left;
}

#customers-testimonials .item-details h5 {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 18px;
}

#customers-testimonials .item-details h5 span {
    color: red;
    float: right;
    padding-right: 20px;
}

#customers-testimonials .item-details p {
    font-size: 14px;
}

#customers-testimonials .item {
    text-align: center;
    /* padding: 20px; */
    margin-bottom: 80px;
}

.owl-stage-outer,
.owl-stage,
.owl-item {
    height: 100%;
}

.item {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-carousel .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

.owl-carousel {
    position: relative;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 30%;
    font-size: 20px;
    color: #fff;
    border: 1px solid #ddd;
    text-align: center;
}

.owl-carousel .owl-prev {
    left: -70px;
}

.owl-carousel .owl-next {
    right: -70px;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {

    height: auto;
}


/*.owl-prev {
    left: -250px !important;
    top: 195px !important;
}


.owl-next {
    top: 195px !important;
    right: -250px !important;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-prev, .owl-next {
    position: absolute;
    background: none;
    border: none;
}

.owl-prev {
    left: -30px;
}

.owl-next {
    right: -30px;
}
*/


.titulo-o-que-falam {
    color: #FAC710;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}


.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}


.testimonial-card {
    position: relative;
    background-color: white;
    border-radius: 50px;
    margin: 0 10px;
    width: 380px;
    height: 360px;
    z-index: 1;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.39);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 46px;
    left: -10px;
    right: -10px;
    bottom: -24px;
    z-index: -1;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgb(251, 251, 251));
    border-radius: 50px;
    opacity: 0.8;
}




.swiper-container-depoimentos {
    width: 100%;
    height: auto;
    overflow: visible;
}

.swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
    opacity: 1;
}



.avatar {
    width: 113px !important;
    height: 113px !important;
    border-radius: 50%;
    object-fit: cover;
}




.carousel-inner {
    overflow: visible;
}


.prlt {
    position: relative;
    left: -45px;
    top: -45px;
    width: inherit;
}

.depoimento-info {
    position: relative;
    top: 20px;


}

.depoimento-nome {
    color: #000;

    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.depoimento-cargo {
    color: #000;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
}

.depoimento-empresa {
    font-weight: 700;
}

.depoimento-texto {
    color: #036;

    font-family: Montserrat;
    font-size: 15.8px;
    font-style: normal;
    font-weight: 400;
}







.depoimento {
    color: #FAC710;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}

.hr-galeria {
    border: 2px solid #FAC710;
    width: 60%;
    opacity: 1;
    margin: 60px auto 100px;
}

#depoimentos-lean-summit {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(180deg, #272727 0%, #050407 100%);
}

#depoimentos-lean-summit::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/cssEvento/summit2025/img/wave-publico-evento.png');
    background-size: contain;
    background-position: top center;
    opacity: 0.1;
    z-index: 0;
}

 .custom-prev, .custom-next {
    border: none;
    background: none;
}

.swiper-button-next-depoimentos,
.swiper-button-prev-depoimentos {
    width: 40px !important;
    height: 40px !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    color: transparent !important;
    top: 25% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.swiper-button-next-depoimentos::after,
.swiper-button-prev-depoimentos::after {
    display: none;
}

.swiper-button-next-depoimentos,
.swiper-button-prev-depoimentos {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-button-next-depoimentos {
    right: 0;
    background-image: url('/cssEvento/summit2025/img/r-arrow-yellow.png');
}

.swiper-button-prev-depoimentos {
    left: 0;
    background-image: url('/cssEvento/summit2025/img/l-arrow-yellow.png');
}

.swiper-button-next-depoimentos,
.swiper-button-prev-depoimentos {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev-depoimentos,
.swiper-rtl .swiper-button-next-depoimentos {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.swiper-button-next-depoimentos,
.swiper-rtl .swiper-button-prev-depoimentos {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.swiper-button-next-depoimentos:hover,
.swiper-button-prev-depoimentos:hover {
    opacity: 0.8;
}


@media (max-width: 1500px) {
    .titulo-o-que-falam {
        font-size: 58px;
    }

    .testimonial-card {
        width: 25vw;
        height: 22vw;
    }

    .depoimento-nome {
        font-size: 28px;
    }

    .depoimento-cargo {
        font-size: 14px;
    }

    .depoimento-texto {
        font-size: 14px;
        margin-top: -20px;
    }
}

@media (max-width: 1400px) {
    .testimonial-card {
        width: 27vw;
        height: 26vw;
    }
}   

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {


    .titulo-o-que-falam {
        font-size: 52px;
    }

    .testimonial-card {
        width: 360px;
        height: 320px;
        padding: 3vw 1vw !important;
    }


    .avatar {
        width: 10vw !important;
        height: 10vw !important;
    }

    .depoimento-nome {
        font-size: 26px;
    }

    .depoimento-cargo {
        font-size: 14.6px;
    }

    .depoimento-texto {
        margin-top: -3vw;
        font-size: 15px;
    }
    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 32% !important;
    }
}

@media (min-width: 1920px) {
    .swiper-button-prev-depoimentos {
        position: relative;
        top: -250px !important;
        left: -235px;
    }
    
    .swiper-button-next-depoimentos {
        position: relative;
        top: -250px !important;
        right: -1545px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .titulo-o-que-falam {
        font-size: 48px;
    }

    .testimonial-card {
        width: 281px;
        height: 350px;
        padding: 3vw 1vw !important;
    }

    .depoimento-nome {
        font-size: 24px;
    }

    .depoimento-cargo {
        font-size: 12px;
    }

    .depoimento-texto {
        font-size: 15px;
    }

    .avatar {
        width: 90px !important;
        height: 90px !important;
    }

    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 35% !important;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .titulo-o-que-falam {
        font-size: 42px;
    }

    .testimonial-card {
        width: 400px;
        height: 350px;
        padding: 20px !important;
    }

    .depoimento-nome {
        font-size: 26px;
    }

    .depoimento-cargo {
        font-size: 13px;
    }

    .depoimento-texto {
        font-size: 15px;
    }

    .avatar {
        width: 113px !important;
        height: 113px !important;
    }

    .prlt {
        left: -30px;
        top: -30px;
    }

    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 13% !important;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .titulo-o-que-falam {
        font-size: 42px;
    }

    .testimonial-card {
        width: 400px;
        height: 350px;
        padding: 20px !important;
    }

    .depoimento-nome {
        font-size: 26px;
    }

    .depoimento-cargo {
        font-size: 13px;
    }

    .depoimento-texto {
        font-size: 15px;
    }

    .avatar {
        width: 113px !important;
        height: 113px !important;
    }

    .hr-galeria {
        width: 80%;
        margin: 40px auto 60px;
    }
    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 16% !important;
    }
}

@media (max-width: 530px) {

    .testimonial-card {
        width: 300px;
        height: 400px;
        padding: 20px !important;
    }

    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 18% !important;
    }
}

@media (max-width: 400px) {

    .testimonial-card {
        width: 280px;
        height: 400px;
        padding: 20px !important;
    }
    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 22% !important;
    }
}

@media (max-width: 370px) {

    .testimonial-card {
        width: 250px;
        height: 400px;
        padding: 20px !important;
    }
    .swiper-button-next-depoimentos, .swiper-button-prev-depoimentos {
        top: 25% !important;
    }

    .depoimento-texto {
        font-size: 14px;
    }
}


.card-img, .card-img-bottom, .card-img-top {
	width: 90%;
	margin: auto;
	display: block;
}

/* Galeria de Fotos */
#galeria-fotos {
    position: relative;
    overflow: hidden;
    background-color: #000;
}





.title-galeria {
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 60px;
    padding-bottom: 10px;
}

.title-galeria span {
    color: #FAC710;
    font-family: "Barlow Condensed";
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
}

/* Extra large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .title-galeria {
        font-size: 68px;
    }
    .title-galeria span {
        font-size: 90px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .title-galeria {
        font-size: 64px;
    }
    .title-galeria span {
        font-size: 84px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .title-galeria {
        font-size: 58px;
    }
    .title-galeria span {
        font-size: 76px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .title-galeria {
        font-size: 52px;
    }
    .title-galeria span {
        font-size: 68px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .title-galeria {
        font-size: 46px;
    }
    .title-galeria span {
        font-size: 60px;
    }
}

.swiper-container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 720 / 640;

}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #FAC710;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    color: transparent !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-button-next {
    right: 0;
    background-image: url('/cssEvento/summit2025/img/r-arrow-pink.png');
}

.swiper-button-prev {
    left: 0;
    background-image: url('/cssEvento/summit2025/img/l-arrow-pink.png');
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.8;
}


/* Lightbox */
.lb-outerContainer,
.lb-dataContainer {
    background-color: #000000;
}

.lb-data .lb-caption {
    font-weight: 700;
    color: #FFFFFF;
}

.lb-data .lb-number {
    color: #FAC710;
}

@media (min-width: 1920px) {
    :root {
        --swiper-container-height: 640px;
    }

    .swiper-container {
        width: 720px;
        height: var(--swiper-container-height);
    }
}

/* Atividades opcionais */
#atividades-opcionais {
    background-color: #FAC710;
}

#atividades-opcionais h2 {
    color: #E82E89;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

#atividades-opcionais h3 {
    color: #050407;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
}

.atividade-box {
	padding: 30px 100px 20px 100px;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.visitas-orientadas, .workshop {
    background-color: #fff;
}

.atividade-box h4 {
    color: #E82E89;
    text-align: left;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 50px;
}

.atividade-box p {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
}

.atividade-box .btn {
    background-color: #E82E89;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.separador {
    background-color: #FF69B4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separador span {
    color: #fff;
    font-weight: bold;
}

.atividade-cta{
    color: #050407;
    text-align: center;
    font-family: Montserrat;
    font-size: 31px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1919.98px) {
    #atividades-opcionais h2,
    #atividades-opcionais h3,
    .atividade-box h4 {
        font-size: 2.1875vw; /* 42px em 1920vw */
    }
    
    .atividade-box {
        padding: 1.3021vw 4.1667vw 0.7813vw 4.1667vw; /* 25px 80px 15px 80px em 1920vw */
    }
    
    .atividade-box p {
        font-size: 1.138vw; /* 18px em 1920vw */
    }
    
    .atividade-box .btn {
        font-size: 1.1458vw; /* 22px em 1920vw */
    }
    
    .atividade-cta {
        font-size: 1.4583vw; /* 28px em 1920vw */
    }

    .img-atividades {
        width: 11.4583vw; /* 220px em 1920vw */
        height: 23.3854vw; /* 449px em 1920vw */
    }

}

@media (max-width: 1399.98px) {
    #atividades-opcionais h2,
    #atividades-opcionais h3,
    .atividade-box h4 {
        font-size: 3vw; /* 42px em 1400vw */
    }
    
    .atividade-box {
        padding: 1.7857vw 2.714vw 1.0714vw 3.714vw; /* 25px 80px 15px 80px em 1400vw */
    }
    
    .atividade-box p {
        font-size: 1.1857vw; /* 18px em 1400vw */
    }
    
    .atividade-box .btn {
        font-size: 1.371vw; /* 22px em 1400vw */
    }
    
    .atividade-cta {
        font-size: 2vw; /* 28px em 1400vw */
    }

    .img-atividades {
        width: 11.714vw; /* 220px em 1400vw */
        height: 29.071vw; /* 449px em 1400vw */
    }
}

@media (max-width: 1199.98px) {
    #atividades-opcionais h2,
    #atividades-opcionais h3,
    .atividade-box h4 {
        font-size: 3vw; /* 36px em 1200vw */
    }
    
    .atividade-box {
        padding: 1.6667vw 2.5vw 0.8333vw 2vw; /* 20px 60px 10px 60px em 1200vw */
    }
    
    .atividade-box p {
        font-size: 1.233vw; /* 16px em 1200vw */
    }
    
    .atividade-box .btn {
        font-size: 1.467vw; /* 20px em 1200vw */
    }
    
    .atividade-cta {
        font-size: 2vw; /* 24px em 1200vw */
    }

    .img-atividades {
        width: 11.333vw; /* 220px em 1200vw */
        height: 26.417vw; /* 449px em 1200vw */
    }
}

@media (max-width: 991.98px) {
    #atividades-opcionais h2,
    #atividades-opcionais h3,
    .atividade-box h4 {
        font-size: 32px; /* 32px em 992vw */
        margin-bottom: 1.4vw;
    }
    .atividade-box h4 {
        font-size: 2.826vw;
        margin-bottom: 1.4vw;
    }
    
    .atividade-box {
        padding: 1.5121vw 2.032vw 0.5040vw 2.032vw; /* 15px 40px 5px 40px em 992vw */
    }
    
    .atividade-box p {
        font-size: 1.211vw; /* 14px em 992vw */
    }
    
    .atividade-box .btn {
        font-size: 1.315vw; /* 18px em 992vw */
    }
    
    .atividade-cta {
        font-size: 2.2177vw; /* 22px em 992vw */
    }
    .img-atividades {
        width: 43vw; /* 220px em 992vw */
        height: 40vw; /* 449px em 992vw */
    }

}

@media (max-width: 767.98px) {
    #atividades-opcionais h2,
    #atividades-opcionais h3,
    .atividade-box h4 {
        font-size: 28px;
    }
    
    .atividade-box {
        padding: 10px 30px 50px 30px;
        margin-bottom: 30px;
    }
    
    .atividade-box p {
        font-size: 2.05vw;
    }
    
    .atividade-box .btn {
        font-size: 2.6vw;
    }
    
    .atividade-cta {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    #atividades-opcionais h2,
    #atividades-opcionais h3,
    .atividade-box h4 {
        font-size: 24px;
    }
    
    .atividade-box {
        padding: 5px 20px 5px 20px;
    }
    
    .atividade-box p {
        font-size: 12px;
    }
    
    .atividade-box .btn {
        font-size: 14px;
    }
    
    .atividade-cta {
        font-size: 18px;
    }
}

/* PROGRAMAÇÃO DE 2023 */
#programacao-2023 {
	background-color: #000;
	background-image: url('/cssEvento/summit2025/img/wave-programacao-2023.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#programacao-2023 h2{
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
}

#programacao-2023 h2 span{
    color: #FAC710;
    font-family: "Barlow Condensed";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
}

.btn-programacao-2023 {
	color: #4A4A4A;
	text-align: center;
	font-family: Montserrat;
	font-size: 40px !important;
	font-style: normal;
	font-weight: 700;
	border-radius: 40px;
	background-color: #9AECDB;
	text-decoration: none;
	padding: 5px 140px;
}

.btn-programacao-2023:hover{
        background-color: #30d0c0;
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    #programacao-2023 h2 {
        font-size: 50px;
    }
    #programacao-2023 h2 span{
        font-size: 50px;
    }   
    .btn-programacao-2023 {
        padding: 5px 100px !important;
        font-size: 30px !important;
    }
}



@media (max-width: 575.98px) {
    #programacao-2023 h2 {
        font-size: 35px;
    }   
    #programacao-2023 h2 span{
        font-size: 35px;
    }   

    .btn-programacao-2023 {
        padding: 5px 70px !important;
        font-size: 20px !important;
    }
}


/* Caso de sucesso */

#caso-de-sucesso {
    background-color: #f8f9fa;
}

.caso-sucesso-title {
    color: #FFF;
font-family: Montserrat;
font-size: 45px;
font-style: normal;
font-weight: 700;
    line-height: 1.2;
}

.caso-sucesso-highlight {
    color: #E82E89;
}

.caso-sucesso-subtitle {
color: #FFF;
font-family: Montserrat;
font-size: 36px;
font-style: normal;
font-weight: 400;
line-height: 1.1;
}

.caso-sucesso-event {
    font-weight: 400;
    color: #E82E89;
    font-size: 35px;
}

.caso-sucesso-description {
color: #fff;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  background-color: #E82E89;
  width: max-content;
  padding: 0px 5px;
    padding-top: 0px;
    padding-bottom: 0px;
  border-radius: 10px;
  line-height: 0.5;
  text-wrap: nowrap;
}


.squares-case {
    position: absolute;
    right: 10px;
    bottom: 0;
}

.btn-case {
	color: #4A4A4A;
	text-align: center;
	font-family: Montserrat;
	font-size: 19px !important;
	font-style: normal;
	font-weight: 700;
	border-radius: 40px;
    line-height: 1.6;
	background-color: #9AECDB;
	text-decoration: none;
	padding: 5px 65px;
    background: #9AECDB;
box-shadow: 5px 5px 7.1px 0px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    margin-top: 1.3rem;
}

.btn-case:hover{
        background-color: #30d0c0;
    color: #000;
    transform: scale(1.05);
}

.box-text-gemba{
    position: absolute;
}

/* Media Queries */

@media (max-width: 1599.98px) {
    .squares-case {
        width: 2.5vw;
    }
    
        .caso-sucesso-title {
        font-size: 35px;
    }
    .caso-sucesso-subtitle {
        font-size: 26px;
    }
    .caso-sucesso-event {
        font-size: 26px;
    }
    .caso-sucesso-description {
        font-size: 26px;
    }
    .caso-sucesso-btn {
        font-size: 19px;
    }
}
@media (max-width: 1399.98px) {
        .caso-sucesso-title {
        font-size: 30px;
            margin-bottom: 0px;
    }
    .caso-sucesso-subtitle {
        font-size: 20px;
        margin-bottom: 0px
    }
    .caso-sucesso-event {
        font-size: 20px;
    }
    .caso-sucesso-description {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .caso-sucesso-btn {
        font-size: 18px;
        margin-top: 1rem !important;
    }
    .squares-case {
        width: 2.5vw;
    }
    .zig-zag-case {
        width: 3vw;
    }
}

@media (max-width: 1199.98px) {
        .caso-sucesso-title {
        font-size: 25px;
            margin-bottom: 0px;
    }
    .caso-sucesso-subtitle {
        font-size: 18px;
        margin-bottom: 0px
    }
    .caso-sucesso-event {
        font-size: 18px;
    }
    .caso-sucesso-description {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .btn-case {
        font-size: 16px !important;
    }
    .zig-zag-case {
        width: 3.4vw;
    }

}

@media (max-width: 991.98px) {
        .caso-sucesso-title {
        font-size: 23px;
            margin-bottom: 0px;
    }
    .caso-sucesso-subtitle {
        font-size: 16px;
        margin-bottom: 0px
    }
    .caso-sucesso-event {
        font-size: 16px;
    }
    .caso-sucesso-description {
        font-size: 16px;
        margin-bottom: 0px;
        line-height: 1.5;
    }
    .btn-case {
        font-size: 14px !important;
    }
}

@media (max-width: 767.98px) {
    .caso-sucesso-title {
        font-size: 45px;
    }
    .caso-sucesso-subtitle {
        font-size: 27px;
    }
    .caso-sucesso-event {
        font-size: 22px;
    }
    .caso-sucesso-description {
        font-size: 19px;
        line-height: 2;
        margin-top: 10px;
    }
    .btn-case {
        font-size: 20px !important;
        padding: 5px 40px;
    }
    .caso-sucesso-img-container {
        height: 300px;
    }
    .caso-sucesso-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .zig-zag-case {
        width: 4.7vw;
    }
    
    .box-text-gemba{
    position: relative;
}

}

@media (max-width: 575.98px) {
    .caso-sucesso-title {
        font-size: 30px;
    }
    .caso-sucesso-subtitle {
        font-size: 23px;
    }
    .caso-sucesso-event {
        font-size: 22px;
    }
    .caso-sucesso-description {
        font-size: 19px;
        line-height: 2;
        margin-top: 10px;
    }
    .btn-case {
        font-size: 20px !important;
        padding: 5px 40px;
    }
}

/* Garanta seu ingresso */

#inscreva-se {
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #E82E89 50%, #FFA07A 100%);
    padding-bottom: 100px !important;
}

#inscreva-se::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/cssEvento/summit2025/img/wave-publico-evento.png');
    background-size: contain;
    background-position: top center;
    opacity: 0.4;
    z-index: 0;
}



.garanta-ingresso-title {
    color: #FFF;
    font-family: "Barlow Condensed";
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
}


.garanta-ingresso-subtitle {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 120px;
}

.garanta-ingresso-subtitle span {
    color: #036;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}



.col-decorativa-l {
    margin-right: -20px;
}

.col-decorativa-r {
    margin-left: -20px;
}


.ingresso-box {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;

    text-align: center;
    border: 5px solid #FAC710;
    width: 512px;
    margin: auto;

    height: 100%;
}

.ingresso-header {
    color: #036;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    padding-top: 30px;
}


.ingresso-header hr {
    border: 2px solid #E82E89;
    width: 90%;
    opacity: 1;
    margin: 30px auto 20px;
    background-color: #E82E89;
}

.ingresso-header h2 {
    color: #036;
    font-family: "Barlow Condensed";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
}

.ingresso-body {
    color: #7A7A7A;
    font-weight: bold;
    font-family: Montserrat;
}

.bg-line-ingresso-par {
    background: #F3F3F3;
    padding: 20px 0px 1px;
}

.bg-line-ingresso-impar {
    background: #FFF;
    padding: 20px 0px 1px;
}

.ingresso-body h3 {
    color: #036;
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}

.ingresso-body span {
    font-size: 25px;
    font-weight: 500;
}

.info-ingresso {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
}

.ingresso-divisor-span {
    font-size: 40px !important;
    font-weight: 1 !important;
    color: #00000094;
}

.preco {
    color: #00B894;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700 !important;
}

.cifrao {
    color: #00B894;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px !important;
    font-style: normal;
    font-weight: 700 !important;
}

.garanta-agora {
    color: #1E1E1E;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin-top: 20px;
}

.parcelas {
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin-top: 20px;
}



.parcelas span {
    font-weight: 600;
    font-size: 15px;
}

.cartoes {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cartoes img {
    height: 30px;
}

.condicao-especial {
    color: #1E1E1E;

    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.condicao-especial span {
    color: #036;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.btn-primary,
.btn-outline-primary {
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    width: 80%;
    margin: auto;
    margin-bottom: auto;
    border-radius: 70px;
    background: #E82E89;
    background-color: rgb(232, 46, 137);
    box-shadow: 5px 5px 7.1px 0px rgba(0, 0, 0, 0.25);
    font-size: 22px;
    line-height: 1.1;
}

.btn-primary {
    background-color: #E82E89;
    border: 2px solid #E82E89;
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #E82E89;
    color: #E82E89;
}


.btn-ingresso-regular {
    font-weight: 700;
    margin-top: 18px;
    padding: 22px;
}



.btn-pedir-codigo {
    border-radius: 19px;
    background: #9AECDB;
    box-shadow: 5px 5px 7.1px 0px rgba(0, 0, 0, 0.25);
    padding: 7px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.btn-pedir-codigo:hover {
    background: #99e4d7;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
    color: #000;
}



.btn-pedir-codigo-text {
    color: #4A4A4A;

    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: #D41C77;
    border-color: #D41C77;
    color: white;
}

.nota-rodape {
    font-size: 0.8rem;
    opacity: 0.8;
    width: 90%;
    float: right;
    margin-top: 6px !important;
}

.btn-info {
    border-radius: 38px;
    background: #9AECDB;
    box-shadow: 5px 5px 7.1px 0px rgba(0, 0, 0, 0.25);
    color: #4A4A4A;

    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    width: 412px;
    padding: 10px;
    margin-top: 25px;
}

.btn-info:hover {
    background-color: #30d0c0;
}

.detalhes-ingresso {
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}

.detalhes-ingresso span {
    color: #FAC710;
    font-weight: 700;
}

.border-light {
    height: 2px;
    opacity: 1;
    background-color: #fff;
}

.chamada-investimento {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}


.chamada-investimento {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}

/* Media queries para Bootstrap 5 breakpoints */

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1399.98px) {
    .garanta-ingresso-title {
        font-size: 64px;
    }
    
    .garanta-ingresso-subtitle {
        font-size: 28px;
    }
    
    .ingresso-box {
        width: 480px;
    }
    
    .btn-info {
        width: 380px;
        font-size: 22px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1199.98px) {
    .garanta-ingresso-title {
        font-size: 4.67vw;
    }
    
    .garanta-ingresso-subtitle {
        font-size: 2vw;
        margin-bottom: 6.67vw;
    }
    
    .ingresso-box {
        width: 36.67vw;
    }
    
    .ingresso-header h2 {
        font-size: 3vw;
    }
    
    .btn-info {
        width: 28.33vw;
        font-size: 1.67vw;
    }
    .col-decorativa-l {
        margin-right: unset;
        width: 5vw;
    }

    .col-decorativa-r {
        margin-left: unset;
        width: 5vw;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 991.98px) {
    .garanta-ingresso-title {
        font-size: 48px;
    }
    
    .garanta-ingresso-subtitle {
        font-size: 22px;
        margin-bottom: 60px;
    }
    
    .ingresso-box {
        width: 100%;
        max-width: 400px;
    }
    
    .btn-info {
        width: 300px;
        font-size: 18px;
    }
    
    .detalhes-ingresso {
        font-size: 20px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {
    .garanta-ingresso-title {
        font-size: 42px;
    }
    
    .garanta-ingresso-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .ingresso-box {
        max-width: 450px;
        padding-bottom: 50px;
    }
    
    .ingresso-header h2 {
        font-size: 32px;
    }
    
    .btn-info {
        width: 280px;
        font-size: 16px;
    }
    
    .detalhes-ingresso {
        font-size: 18px;
    }

    .investimento-mt-mob {
        margin-top: 3rem;
    }
    .nota-rodape {
        width: 100%;
        text-align: center;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
    .garanta-ingresso-title {
        font-size: 36px;
    }
    
    .garanta-ingresso-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .ingresso-box {
        max-width: 450px;
        padding-bottom: 50px;
    }
    
    .ingresso-header h2 {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-outline-primary {
        width: 90%;
        font-size: 18px;
    }
    
    .btn-info {
        width: 250px;
        font-size: 14px;
    }
    
    .detalhes-ingresso {
        font-size: 16px;
    }
    
    .chamada-investimento {
        font-size: 24px;
    }
}



/* Quero patrocinar */

#quero-patrocinar .bg-pink {
    background-color: #E82E89;
}

#quero-patrocinar h2 {
    color: #FAC710;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 85px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.9;
}

.quero-patrocinar-m {
    margin-bottom: 70px;
    margin-top: 40px;
}

#quero-patrocinar p {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    text-align: left;
}

#quero-patrocinar p span {
    font-style: italic;
}

#quero-patrocinar .btn-cyan {
    color: #4A4A4A;

    text-align: center;
    font-family: Montserrat;
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    background: #9AECDB;
    box-shadow: 5px 5px 7.1px 0px rgba(0, 0, 0, 0.25);
    padding: 10px 50px !important;
}

#quero-patrocinar .text-gray {
    color: #4A4A4A;
}

/* Estilo global replicado de #quero-patrocinar .btn-cyan */
.btn-cyan {
    color: #4A4A4A;
    text-align: center;
    font-family: Montserrat;
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    background: #9AECDB;
    box-shadow: 5px 5px 7.1px 0px rgba(0, 0, 0, 0.25);
    padding: 10px 50px !important;
}

.btn-cyan:hover {
    background: #FFF;
}

@media (max-width: 1399.98px) {
    .btn-cyan {
        font-size: 22px;
    }
}

@media (max-width: 1199.98px) {
    .btn-cyan {
        font-size: 20px;
        padding: 8px 30px !important;
    }
}

@media (max-width: 991.98px) {
    .btn-cyan {
        font-size: 22px;
        padding: 8px 30px !important;
    }
}

@media (max-width: 767.98px) {
    .btn-cyan {
        font-size: 20px;
        padding: 8px 25px !important;
    }
}

@media (max-width: 575.98px) {
    .btn-cyan {
        font-size: 18px;
        padding: 6px 20px !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1399.98px) {
    #quero-patrocinar h2 {
        font-size: 75px;
    }
    
    #quero-patrocinar p {
        font-size: 28px;
    }
    
    #quero-patrocinar .btn-cyan {
        font-size: 22px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1199.98px) {
    #quero-patrocinar h2 {
        font-size: 65px;
    }
    
    #quero-patrocinar p {
        font-size: 24px;
    }
    
    #quero-patrocinar .btn-cyan {
        font-size: 20px;
        padding: 8px 30px !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 991.98px) {
    #quero-patrocinar h2 {
        font-size: 55px;
    }
    
    #quero-patrocinar p {
        font-size: 22px;
    }
    
    #quero-patrocinar .btn-cyan {
        font-size: 22px;
        padding: 8px 30px !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {
    #quero-patrocinar h2 {
        font-size: 45px;
    }
    
    #quero-patrocinar p {
        font-size: 20px;
        text-align: center;
    }
    
    #quero-patrocinar .btn-cyan {
        font-size: 20px;
        padding: 8px 25px !important;
    }
    
    .quero-patrocinar-m {
        margin-bottom: 50px;
        margin-top: 30px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
    #quero-patrocinar h2 {
        font-size: 40px;
    }
    
    #quero-patrocinar p {
        font-size: 18px;
    }
    
    #quero-patrocinar .btn-cyan {
        font-size: 18px;
        padding: 6px 20px !important;
    }
    
    .quero-patrocinar-m {
        margin-bottom: 40px;
        margin-top: 20px;
    }
}


/* FAQ */

#faq {
    background-color: #E8E7E9;
    padding: 60px 0 80px;
}

.title-faq {
    color: #000;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 65px;
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 0.5rem;
}

.accordion-button {
    background-color: transparent;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0 0 0;
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    border-bottom: 0;
}

.acc-inside {
    background-color: transparent;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0 0 0;
    color: #000;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    border-bottom: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: #C4006B;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: unset;
}

.accordion-button::after {
    content: "+";
    background-image: none;
    font-size: 1.5rem;
    font-weight: bold;
    width: auto;
    height: auto;
}

.accordion-button:not(.collapsed)::after {
    background-image: unset;
    content: "-";
    transform: rotate(0);
}

.accordion-body {
    padding: 1rem 0;
}

.accordion-header {
    border-top: 1px solid #000;
}

.accordion-last-faq {
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 0 0 0.5rem 0;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
}

.hidden-faq {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
    padding-bottom: 0;
}

.hidden-faq.show {
    max-height: 2000px; /* Ajuste este valor conforme necessário */
    opacity: 1;
}

    .hidden-faq .accordion-button,
    .hidden-faq .accordion-body {
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

.hidden-faq:not(.show) .accordion-button,
.hidden-faq:not(.show) .accordion-body {
    transform: translateY(-20px);
    opacity: 0;
}
/* Extra large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .title-faq {
        font-size: 60px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .title-faq {
        font-size: 56px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .title-faq {
        font-size: 52px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .title-faq {
        font-size: 48px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .title-faq {
        font-size: 44px;
    }
    
    .accordion-button {
        font-size: 18px;
    }

    .acc-inside {
        font-size: 15px;
    }

}

/* Contato */
#contato-lean-summit {
    background-color: #000;
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 30px solid #E82E89;
    height: 470px;
}

.div-realizacao {
    padding-top: 20px;
}

.realizacao {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 30px;
}

.entre-contato {
    color: #FFF;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    padding-left: 85px;
    padding-top: 48px;
}

.lean-logo {
    max-width: 213px;
}

.summit-logo {
    max-width: 255px;
    padding-bottom: 35px;
}

.btn-ingresso {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    background-color: #E82E89;
    color: white;
    border: none;
    padding: 10px 40px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-ingresso:hover {
    background-color: #ff4da6;
}

.contato-info {
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    padding-left: 125px;
}

.contact-icon {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}

.social-icon {
    width: 66px;
    height: 66px;
    margin-right: 5px;
}

.linhas-lean-summit-l {
    float: left;
    position: absolute;
    bottom: 30px;
    left: 0;
}

.linhas-lean-summit-r {
    float: right;
    position: absolute;
    bottom: 30px;
    right: 0;
}


.list-inline-item {
    font-size: 22px;
    margin-top: 10px;
}

.social-align {
    padding-left: 125px;
}

@media (max-width: 1600px) {
    .linhas-lean-summit-l,
    .linhas-lean-summit-r {
        width: 33vw;
    }
}



/* Extra large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .entre-contato {
        font-size: 30px;
    }
    .contato-info {
        font-size: 22px;
    }
    .social-icon {
        width: 55px;
        height: 55px;
    }
    #contato-lean-summit {
        height: 32vw;
    }
}

/* Large devices (desktops, less than 1200px) */


@media (max-width: 1199.98px) {
    .entre-contato {
        font-size: 24px;
        padding-left: 70px;
    }
    .contato-info {
        font-size: 17px;
        padding-left: 100px;
    }
    .social-icon {
        width: 44px;
        height: 44px;
    }
    .social-align {
        padding-left: 100px;
    }
    .btn-ingresso {
        font-size: 12px;
    }

    .lean-logo {
        max-width: 133px;
    }

    .summit-logo {
        max-width: 153px;
        padding-bottom: 35px;
    }

    .linhas-lean-summit-l,
    .linhas-lean-summit-r {
        bottom: 15px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .entre-contato {
        font-size: 19px;
        padding-left: 44px;
    }
    .contato-info {
        font-size: 15px;
        padding-left: 57px;
        margin-bottom: 0px;
    }
    .social-icon {
        width: 34px;
        height: 36px;
    }
    .social-align {
        padding-left: 56px;
    }
    #contato-lean-summit {
        height: 37vw;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .entre-contato {
        font-size: 24px;
        padding-left: 0px;
        padding-top: 0px;
    }
    .contato-info {
        font-size: 16px;
        padding-left: 50px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-align {
        padding-left: 50px;
    }
    .lean-logo,
    .summit-logo {
        max-width: 150px;
    }

    #contato-lean-summit {
        height: auto;
    }

    .rodape-bottom {
            padding-bottom: 13vw;
    
    }

    .realizacao {
        padding-bottom: 19px;
    }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .entre-contato {
        font-size: 22px;
        padding-left: unset;
        padding-top: 20px;
    }
    .contato-info {
        font-size: 14px;
        padding-left: unset;
    }
    .btn-ingresso {
        font-size: 18px;
        padding: 8px 30px;
    }
    .social-icon {
        width: 35px;
        height: 35px;
    }
    .social-align {
        padding-left: 5vw;
    }

    .plmob {
        padding-left: 1vw;
    }
}




/* Loading Screen */


  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d3d3d3;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

#loading-screen iconify-icon {
    font-size: 48px; /* Ajuste o tamanho conforme necessário */
    color: #005184; /* Ajuste a cor conforme necessário */
}

.logo-lean-spinner {
    width: 100px;
}

/* Modal Video */

.modal-header {
    border: 0;
}

.modal-body {
	background-image: url('/cssEvento/summit2025/img/frame-modal-v2.webp');
	background-position: center;
	padding: 40px;
	border-radius: 30px;
	background-size: cover;
}
  
  .modal-content {
    background-color: transparent;
    border: 0;
}

.btn-close {
    position: absolute;
    z-index: 99;
    top: 1%;
    right: 2%;
    opacity: 1;
    color: #fff !important;
}

.title-modal {
	color: #fff;
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	margin-bottom: 25px;
}

.fup-modal {
	font-size: 20px;
    color: #fff;
}

@media (min-width: 1200px) {
	.title-modal {
		font-size: 42px;
	}
}

@media (max-width: 1199.98px) {
	.title-modal {
		font-size: 38px;
	}
}

@media (max-width: 991.98px) {
	.title-modal {
		font-size: 34px;
	}
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
	.title-modal {
		font-size: 30px;
	}
}

@media (max-width: 575.98px) {
	.title-modal {
		font-size: 26px;
	}
}

.campo-modal {
	width: 100%;
}

@media (min-width: 1200px) {
	.campo-modal {
		font-size: 1.563rem;
	}
}

@media (max-width: 1199.98px) {
	.campo-modal {
		font-size: 1.4rem;
	}
}

@media (max-width: 991.98px) {
	.campo-modal {
		font-size: 1.2rem;
	}
}

@media (max-width: 767.98px) {
	.campo-modal {
		font-size: 1rem;
	}
}

@media (max-width: 575.98px) {
	.campo-modal {
		font-size: 0.875rem;
	}
}
.btn-modal {
	background-color: #FAC710;
	border-radius: 30px;
	transition: all 0.3s ease;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	padding: 5px 20px;
	border: 0;
	line-height: 1.6;
	margin-top: 25px !important;
}

.btn-modal:hover {
    background-color: #00B894;
    transform: scale(1.05);
}

@media (max-width: 1399.98px) {
    .btn-modal {
        font-size: 28px;
    }
}

@media (max-width: 1199.98px) {
    .btn-modal {
        font-size: 26px;
    }
}

@media (max-width: 991.98px) {
    .btn-modal {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .btn-modal {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .btn-modal {
        font-size: 20px;
    }
}



/* UpdateProgress de Envio de Formulário */

.modalgif {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
    left: 0;
}

.center {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: max-content;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
    top: 20%;
    position: relative;
}


.spinner {
    position: relative;
    width: 20.2px;
    height: 20.2px;
    z-index: 99999;
}

    .spinner div {
        animation: spinner-4t3wzl 1.5s infinite backwards;
        background-color: #e52b49;
        border-radius: 50%;
        height: 100%;
        position: absolute;
        width: 100%;
    }

        .spinner div:nth-child(1) {
            animation-delay: 0.12s;
            background-color: rgba(229,43,73,0.9);
        }

        .spinner div:nth-child(2) {
            animation-delay: 0.24s;
            background-color: rgba(229,43,73,0.8);
        }

        .spinner div:nth-child(3) {
            animation-delay: 0.36000000000000004s;
            background-color: rgba(229,43,73,0.7);
        }

        .spinner div:nth-child(4) {
            animation-delay: 0.48s;
            background-color: rgba(229,43,73,0.6);
        }

        .spinner div:nth-child(5) {
            animation-delay: 0.6000000000000001s;
            background-color: rgba(229,43,73,0.5);
        }

@keyframes spinner-4t3wzl {
    0% {
        transform: rotate(0deg) translateY(-200%);
    }

    60%, 100% {
        transform: rotate(360deg) translateY(-200%);
    }
}

/* Botão de Voltar ao Topo */
#myBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 300;
    border: none;
    outline: none;
    background-color: #000000;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    font-size: 2em;
    font-family: "fontello";
    opacity: .8;
    line-height: 1em;
    text-decoration: inherit;
    text-align: center;
}

#myBtn:hover {
    background-color: #555;
}


/* Local do Evento */
#local-do-evento h2.section-title {
    color: #E82E89;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

#local-do-evento h3 {
    color: #050407;
    text-align: center;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}



@media (max-width: 1199px) {
    #local-do-evento h2.section-title {
        font-size: 2.8rem;
    }

    #local-do-evento h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    #local-do-evento h2.section-title {
        font-size: 2.7rem;
    }

    #local-do-evento h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    #local-do-evento h2.section-title {
        font-size: 2.3rem;
    }

    #local-do-evento h3 {
        font-size: 1.5rem;
    }

}

@media (max-width: 575px) {
    #local-do-evento h2.section-title {
        font-size: 2rem;
    }

    #local-do-evento h3 {
        font-size: 1.5rem;
    }

}


/* Keynote Speakers */

    /* Ajustes básicos do contêiner Swiper */
    .team-swiper {
        width: 100%; /* Garante que o swiper ocupe toda a largura */
        overflow: hidden;
        max-width: 1500px; /* limite de largura opcional */
        margin: 0 auto;
        padding: 40px 0;   /* espaço vertical */
        position: relative;
      }
  
      /* As slides ocupam o espaço da .swiper-wrapper */
      .team-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(100% / 3 - 10px);
        padding-top: 10px;
        
      }
  
      /* Card do integrante */
      .team-member d-flex justify-content-center {
        width: 100%;
        /* max-width: 300px; */
        margin: 0 auto;
        padding: 1rem;
      }
  
      /* Botões de navegação (cor, etc.) */
      .team-swiper .team-swiper-next,
      .team-swiper .team-swiper-prev {
        color: #E82E89 !important;
        background-image: none;
      }
  
      /* Efeito hover no card */
      .card-key {
        transition: transform 0.3s ease;
        background: transparent;
      }
      .card-key:hover {
        transform: translateY(-5px);
      }
  
      .card-key img {
        height: 431px;
        object-fit: cover;
        width: 285px;
        border-radius: 10px 10px 0 0;
        border: 5px solid #E82E89;
        border-bottom: none;
        margin: auto;
      }    
  
      .box-keynote {
        background-color: #E82E89;
        width: 320px;
        border-radius: 10px;
        height: 81px;
        padding: 2px;
        position: relative;
      }
  
      .nome-keynote {
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.2;
      }
  
      .cargo-keynote {
        color: #FFF;
        text-align: center;
        font-family: Montserrat;
        font-size: 12.1px;
        font-style: normal;
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 1;
      }
  
      .icon-button {
        /* Tamanho do “botão” */
        width: 50px;
        height: 50px;
        
        /* Cor de fundo e bordas arredondadas */
        background-color: #FFC600;
        border-radius: 12px;
        
        /* Alinhamento do ícone (centro vertical e horizontal) */
        display: flex;
        align-items: center;
        justify-content: center;
  
        /* Caso queira remover borda ou outline */
        border: none;
        outline: none;
        cursor: pointer;
  
        position: absolute;
        top: -40px;
        right: 30px;

        text-decoration: none;
  color: #000 !important;
      }
  
      /* Ícone em preto */
      .icon-button i {
        color: #000;
        font-size: 20px; /* Ajuste conforme desejar */
      }
  
      .flag-container {
      position: absolute;
      width: 100px;
      margin: 5px 5px;
  }
      .flag-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background-color: #2c1a4a;
      clip-path: polygon(30% 0%, 70% 0, 70% 60%, 50% 65%, 30% 60%);
  }
  
      /* Estiliza a bandeira em si */
      .flag-container img {
        position: relative;
        display: block;
        max-width: 100%;
        height: auto;
        border: none;
        width: 50%;
        top: 10px
      }

      #keynote-speakers-bg {
        background-color: #FAC710;
        background-image: url('/cssEvento/summit2025/img/wave-publico-evento.png');
        background-size: auto;
        background-position: top;
        height: auto;
        padding-bottom: 60px;
    }


    #keynote-speakers-bg .titulo-secao {
        color: #E82E89;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 30px;
        padding-top: 50px;
        line-height: 1;
    }

    #keynote-speakers-bg .subtitulo-secao {
        color: #E82E89;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 50px;
        font-weight: 600;
        font-style: italic;
        margin-bottom: 30px;
    }

    .border-sep-keynotes {
        background-color: #E82E89;
        border-color: #E82E89 !important;
    }








/* Palestrantes */

.card-img-top-palestrantes {
	border: 10px solid #7A7A7A;
	background: rgba(255, 255, 255, 0.00);
	box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.07);
	border-radius: 50%;
	width: 240px;
	height: 240px;
}

.card-palestrante {
	width: 318px !important;
	height: 355px !important;
	padding-top: 30px;
	border-radius: 30px;
	background-image: url('/cssEvento/summit2025/img/bg-palestrantes.png');
	background-repeat: no-repeat;
	background-color: #f5f5f5;
	border: unset;
}

.nome-palestrante{
    color: #272E39;
font-family: "Barlow Condensed";
/* font-size: 24px; */
font-style: normal;
font-weight: 700;
text-align: left;
margin-bottom: 5px;
line-height: 1;

font-size: min(4vw, 130%); /* Reduz o tamanho conforme o espaço disponível */
max-width: 100%; 
white-space: nowrap; /* Mantém o texto em uma linha */
overflow: hidden; /* Garante que o texto fique dentro do espaço */
display: block;
margin-top: 6px;
}



.empresa-palestrante{
    color: #565656;

font-family: Montserrat;
font-size: 15px;
font-style: normal;
font-weight: 500;
	text-align: left;
    line-height: 1;
}

.empresa-palestrante span{
    font-weight: 600;
    white-space: nowrap;
}

.card-body-palestrante {
    padding-top: 0;
    position: relative;
}

#palestrantes-bg {
    background-color: #F0EFF1;
    background-image: url('/cssEvento/summit2025/img/wave-palestrantes.png');
    background-size: auto;
    background-position: top;
    height: auto;
    padding-bottom: 60px;
}

.icon-palestrantes-button {
	width: 50px;
	height: 50px;
	background-color: #FFC600;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
	cursor: pointer;
	position: absolute;
	top: -47px;
	right: 8px;
    text-decoration: none;
  color: #000 !important;
}

  /* Ícone em preto */
  .icon-palestrantes-button i {
    color: #000;
    font-size: 20px; /* Ajuste conforme desejar */
  }

  @media (max-width: 1730px) {
    .col-custom-palestrantes {
        flex: 0 0 21%;
        max-width: 21%;
    }
  }

  /* @media (max-width: 500px) {
    .col-custom-palestrantes {
      flex: 0 0 100%; 
      max-width: 100%;
    }
  }
  
  @media (max-width: 501px) and (max-width: 900px) {
    .col-custom-palestrantes {
      flex: 0 0 50%;
      max-width: 50%;
    }
  } */

  #palestrantes-bg .titulo-secao {
    color: #E82E89;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-top: 50px;
    line-height: 1;
    text-align: center;
}

  

  .mobile-hidden {
    display: none !important;
}

.desktop-hidden {
    display: none !important;
}


#btnCarregarMais {
	background-color: unset;
	border-color: unset;
	color: #D41C77;
	width: 300px;
	border: none;
	box-shadow: none;
    color: #E82E89;
text-align: center;
font-family: Montserrat;
font-size: 32px;
font-style: normal;
font-weight: 700;
}

#btnCarregarMaisEmpresas {
	background-color: unset;
	border-color: unset;
	color: #D41C77;
	width: 300px;
	border: none;
	box-shadow: none;
    color: #E82E89;
text-align: center;
font-family: Montserrat;
font-size: 32px;
font-style: normal;
font-weight: 700;
}

.arrow-palestrantes-down {
	width: 30px;
	transform: rotate(-90deg);
    transition: transform 0.3s ease-in-out; /* Animação suave */
}

.arrow-palestrantes-up {
	width: 30px;
	transform: rotate(90deg);
    transition: transform 0.3s ease-in-out; /* Animação suave */
}


/* Empresas Parceiras INICIO */

.empresas-dg-summit {
    background: #F5F5F5;
}

.title-empresas-palestrantes-summit {
    color: #E82E89;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-top: 50px;
    line-height: 1;
    text-align: center;
}


.logoEmpresas {
    width: 100%;
    border: 3px solid #E82E89;
    border-radius: 10px;
    max-width: 300px;
}

@media (max-width: 1200px) {
    .title-empresas-palestrantes-summit {
        font-size: 4.333vw;
    }

}


@media (max-width: 768px) {
    .title-empresas-palestrantes-summit {
        font-size: 10vw;
    }

}

/* Empresas  Parceiras FIM */

/* A3 e Soulean */
.title-a3-soulean {
    font-size: 62px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Barlow Condensed";
    color: #4A4A4A;
    text-align: center;
}

@media (max-width: 1920px) {
    .title-a3-soulean {
        font-size: 3.4vw
    }
}

@media (max-width: 991px) {
    .title-a3-soulean {
        font-size: 6.4vw;
        margin-bottom: 2rem;
    }
}

@media (max-width: 400px) {
    .title-a3-soulean {
        font-size: 7.4vw;
        margin-bottom: 1.5rem;
    }
}
/* Nuvem de Palavras Summit */
#nuvem-de-palavras-lean-summit {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(180deg, #272727 0%, #050407 100%);
}

#nuvem-de-palavras-lean-summit::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/cssEvento/summit2025/img/wave-publico-evento.png');
    background-size: contain;
    background-position: top center;
    opacity: 0.1;
    z-index: 0;
}


#cta-agenda {
    background: url('/cssEvento/summit2025/img/bnn-agenda.png');
    background-size: contain;
    background-position: top center;
}

.title-cta-agenda {
    color: #FAC710;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.subtitle-cta-agenda {
    color: #FFF;
    font-family: "Barlow Condensed";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.text-cta-agenda {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
}

.btn-cta-agenda {
    color: #4A4A4A;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    background-color: #9AECDB;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 15px;
    margin: auto;
    max-width: max-content;
}

.btn-cta-agenda:hover{
        transform: scale(1.05);
        transition: 300ms ease-in;
}

/* Extra extra large devices (≥1400px) */
@media (max-width: 1399.98px) {
    #cta-agenda {
        background-size: cover;
    }

    .title-cta-agenda {
        font-size: 56px;
    }

    .subtitle-cta-agenda {
        font-size: 42px;
    }

    .text-cta-agenda {
        font-size: 32px;
    }

    .btn-cta-agenda {
        font-size: 22px;
    }
}

/* Extra large devices (≥1200px) */
@media (max-width: 1199.98px) {
    .title-cta-agenda {
        font-size: 48px;
    }

    .subtitle-cta-agenda {
        font-size: 36px;
    }

    .text-cta-agenda {
        font-size: 28px;
    }

    .btn-cta-agenda {
        font-size: 20px;
    }
}

/* Large devices (≥992px) */
@media (max-width: 991.98px) {
    .title-cta-agenda {
        font-size: 40px;
    }

    .subtitle-cta-agenda {
        font-size: 30px;
    }

    .text-cta-agenda {
        font-size: 24px;
    }

    .btn-cta-agenda {
        font-size: 18px;
    }
}

/* Medium devices (≥768px) */
@media (max-width: 767.98px) {
    .title-cta-agenda {
        font-size: 32px;
    }

    .subtitle-cta-agenda {
        font-size: 24px;
    }

    .text-cta-agenda {
        font-size: 20px;
    }

    .btn-cta-agenda {
        font-size: 16px;
    }
}

/* Small devices (≥576px) */
@media (max-width: 575.98px) {
    .title-cta-agenda {
        font-size: 28px;
    }

    .subtitle-cta-agenda {
        font-size: 20px;
    }

    .text-cta-agenda {
        font-size: 18px;
    }

    .btn-cta-agenda {
        font-size: 14px;
        padding: 8px 20px;
    }
}



/* Container principal para as temáticas */


/* Título da seção de temáticas */
.title-tematica {
    color: #fff; /* Tom sóbrio para o texto */
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 65px;
}

/* Itens do accordion dentro do container */
#trilhasConteudoAccordion .accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 0.5rem;
}

/* Botões do accordion */
#trilhasConteudoAccordion .accordion-button {
    background-color: transparent;
    border-bottom: 1px solid #FFF; /* Borda em cinza suave */
    padding: 1rem 0 0;
    color: #FFF; /* Cor base dos textos */
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 0;
}

/* Botões internos (sessões temáticas) – renomeados para evitar conflito */
#trilhasConteudoAccordion .acc-tematica {
    background-color: transparent;
    border-bottom: 1px solid #FFF;
    padding: 1rem 0 0;
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 0;
}

/* Estado ativo dos botões */
#trilhasConteudoAccordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: #E82E89; /* Cor de destaque inspirada na referência */
}

#trilhasConteudoAccordion .nomeSessao {
    color: #fff !important;
}

/* Foco no botão */
#trilhasConteudoAccordion .accordion-button:focus {
    box-shadow: none;
    border-color: unset;
}

/* Indicador de "+" e "–" nos botões */
#trilhasConteudoAccordion .accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
}

#trilhasConteudoAccordion .accordion-button:not(.collapsed)::after {
    content: "-";
    transform: rotate(0);
}

/* Corpo do accordion */
#trilhasConteudoAccordion .accordion-body {
    padding: 1rem 0 0;
}

/* Cabeçalhos dos itens */
#trilhasConteudoAccordion .accordion-header {
    border-top: 1px solid #E82E89; /* Linha superior em tom marcante */
}

/* Último item da temática */
#trilhasConteudoAccordion .accordion-last-tematica {
    border-bottom: 1px solid #E82E89;
    border-radius: 0;
    padding: 0 0 0.5rem 0;
}

/* Remover arredondamento no último item */
#trilhasConteudoAccordion .accordion-item:last-of-type {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
}

/* Controle de visibilidade dos conteúdos internos */
#trilhasConteudoAccordion .hidden-tematica {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
    padding-bottom: 0;
}

#trilhasConteudoAccordion .hidden-tematica.show {
    max-height: 2000px; /* Ajuste conforme necessário */
    opacity: 1;
}

    /* Transições para os botões e corpos do accordion interno */
    #trilhasConteudoAccordion .hidden-tematica .accordion-button,
    #trilhasConteudoAccordion .hidden-tematica .accordion-body {
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

#trilhasConteudoAccordion .hidden-tematica:not(.show) .accordion-button,
#trilhasConteudoAccordion .hidden-tematica:not(.show) .accordion-body {
    transform: translateY(-20px);
    opacity: 0;
}


#trilhasConteudoAccordion .accordion-collapse {
    padding-left: 20px;

}

#trilhasConteudoAccordion .acc-inside {
    color: #FAC710;
    font-weight: 500;
}

/*    #trilhasConteudoAccordion .acc-inside::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('/cssEvento/summit2025/img/r-arrow-pink.webp');
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 8px; 
    }*/
#trilhasConteudoAccordion .acc-inside {
    display: flex;
    align-items: center; /* Alinha a seta e o texto no centro */
}

    #trilhasConteudoAccordion .acc-inside::before {
        content: '';
        display: inline-block;
        width: 16px; /* Tamanho fixo para a seta */
        height: 30px; /* Tamanho fixo para a seta */
        background-image: url('/cssEvento/summit2025/img/hand-point.png');
        background-size: contain; /* Garante que a seta se ajuste proporcionalmente */
        background-repeat: no-repeat;
        margin-right: 10px; /* Espaçamento entre a seta e o texto */
        flex-shrink: 0; /* Impede que a seta encolha */
    }





    #trilhasConteudoAccordion .acc-inside::after {
        content: unset;
    }
    /* Media Queries para responsividade */
    @media (max-width: 1399.98px) {
        #trilhasConteudoAccordion .title-tematica {
            font-size: 60px;
        }
    }

    @media (max-width: 1199.98px) {
        #trilhasConteudoAccordion .title-tematica {
            font-size: 56px;
        }
    }

    @media (max-width: 991.98px) {
        #trilhasConteudoAccordion .title-tematica {
            font-size: 52px;
        }
    }

    @media (max-width: 767.98px) {
        #trilhasConteudoAccordion .title-tematica {
            font-size: 48px;
        }

        #trilhasConteudoAccordion .accordion-button {
            font-size: 18px;
        }

        #trilhasConteudoAccordion .acc-tematica {
            font-size: 15px;
        }
    }

    @media (max-width: 575.98px) {
        #trilhasConteudoAccordion .title-tematica {
            font-size: 44px;
        }
    }

    .modalNomeTematica {
	font-size: 34px;
	text-transform: uppercase;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 1rem;
}

.modalNomeSessao {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
	color: #FAC710;
	margin-bottom: 1rem;
}

.modalBulletsSessao {
	font-size: 23px;
	line-height: 1.1;
	padding-left: 10px;
	color: #9AECDB;
	font-weight: 500;
}

.modalPalestranteTematica {
	font-size: 21px;
	line-height: 1.2;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 1rem;
    text-align: center;
}

.bg-tematicas-modal {
	background-image: url('/cssEvento/summit2025/img/frame-modal-v3.webp') !important;
}


@media (max-width: 575.98px) {
    .modal-dialog-scrollable > div:nth-child(1) > button:nth-child(1) {
        z-index: 9999;
        position: relative;
        left: 90%;
    }

.modalBulletsSessao {
    font-size: 18px;
  }
  
  .modalNomeSessao {
    font-size: 22px;
  }
  
  .modalNomeTematica {
    font-size: 25px;
  }
  
}

@media (max-width: 450px) {
    .modal-dialog-scrollable > div:nth-child(1) > button:nth-child(1) {
        z-index: 9999;
        position: relative;
        left: 90%;
    }

    .modalBulletsSessao {
        font-size: 15px;
    }

    .modalNomeSessao {
        font-size: 19px;
    }

    .modalNomeTematica {
        font-size: 18px;
    }
    .modalPalestranteTematica {
        font-size: 15px;
    }
}

@media (max-width: 375px) and (max-height: 670px) {
    .modalBulletsSessao {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .modalPalestranteTematica {
        font-size: 12px;
        line-height: 1;
    }

    .modalNomeSessao {
        font-size: 15px;
    }

    .modal-dialog-scrollable > div:nth-child(1) > button:nth-child(1) {
        z-index: 9999;
        position: relative;
        left: 90%;
    }

    .logoEmpresas {
        width: 75%;
    }
}

/* Hotéis e Estacionamento */

.bg-hoteis {
    background-color: #FC8F7C;
    font-family: 'Roboto', sans-serif;
}

.box-hoteis {
    padding: 10px;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 3em;
    width: 1134px;
}

.col-img-hotel {
    padding-right: 0;
    padding-left: 10px;
}

.col-map-hotel {
    padding-left: 0;
    padding-right: 0;
}

.col-infos-hotel {
    padding-left: 35px;
    padding-right: 0;
    height: 100%;
    position: relative;
}

.title-hoteis {
    color: #28213f;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: -0.3em;
}

.avaliacao-distancia-hoteis {
    color: #28213f;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 0.4em;
}

.estrelas-hoteis {
    float: left;
    padding-right: 10px;
}

.endereco-hoteis {
    color: #28213f;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.col-infos-hotel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2px;
    background-color: #28213f;
    height: calc(85% + 1px);
}

.btn-reserva-hotel {
    margin-top: 1em;
}

    .btn-reserva-hotel a {
        background-color: #53fda9;
        text-transform: uppercase;
        font-weight: 800;
        text-decoration: none;
        color: #28213f;
        padding: 10px 30px;
        border-radius: 8px;
        font-size: 13px;
    }

    .btn-reserva-hotel:hover {
        color: #28213f;
        transform: scale(1.05);
        transition: 300ms ease-in;
        text-decoration: none;
    }

.box-tarifas {
    font-size: 13px !important;
    text-align: center;
    line-height: 1.2;
}

.tipo-diaria {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #E3E3E3;
}

.valor-diaria {
    margin-bottom: 0;
    font-weight: bold;
}

.categoria-hotel {
    margin-bottom: 0;
    font-weight: bold;
    background-color: #FC8F7C;
    color: #fff;
    border-radius: 5px;
}

.texto-diaria-hotel {
    margin-bottom: 0;
}




.tarifa-hoteis {
    font-weight: 500;
    font-size: 13px;
}

    .tarifa-hoteis span {
        color: #797979;
        font-weight: 800;
    }

    .tarifa-hoteis b {
        color: #28213f;
        font-weight: 800;
    }

.box-endereco-hoteis-mob {
    width: 100%;
}

.col-map-hotel-mob {
    padding-right: 0;
    padding-left: 0;
}

.embed-responsive {
    border-radius: 0px 10px 10px 0px;
}

.star-yellow {
    color: #f4c914;
}

.star-half-yellow-grey {
    background: linear-gradient(to right, #f4c914 50%, gray 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.efetuar-reserva {
    margin-bottom: 0.5em;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
}

.info-extra-hoteis {
    font-size: 11px;
    line-height: 1;
    font-style: italic;
    margin-bottom: 0;
    width: 90%;
}

div.col-xl-9:nth-child(3) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
    font-size: 14px;
}

div.col-xl-9:nth-child(3) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) {
    margin-bottom: 1em;
}


div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
    font-size: 14px;
}

div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) {
    margin-bottom: 1em;
}

div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(2) {
    margin-bottom: 0.2em;
}

.infos-gerias-hoteis {
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
}

.separador-hoteis {
    background-color: #fff;
    height: 3px;
    width: 35%;
    margin: 40px auto 10px;
    color: #fff;
    opacity: 1;
}

.box-estacionamento {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    color: #000;
    width: 1134px;
}

.img-estacionamento {
    width: 100%;
    border-radius: 10px 0px 0px 10px;
}

.title-estacionamento {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

    .title-estacionamento span {
        font-weight: normal;
    }

.endereco-estacionamento {
    font-size: 20px;
}

.hr-estacionemento {
    width: 90%;
    border: 0.1px solid #000;
    opacity: 1;
}

.valor-estacionamento {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.infos-estacionamento {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 0;
    color: #959595;
    font-weight: 500;
}

    .infos-estacionamento span {
        color: #53fda9;
    }




@media screen and (max-width: 1200px) {
    .box-hoteis {
        padding: 0.521vw;
        border-radius: 20px;
        width: 98vw;
    }

    .col-img-hotel {
        padding-right: 0;
    }

    .col-map-hotel {
        padding-left: 0;
    }

    .col-infos-hotel {
        padding-left: 1.823vw;
        padding-right: 0;
        height: 100%;
        position: relative;
    }

    .title-hoteis {
        font-size: 2.1vw;
        margin-bottom: 0;
    }

    .avaliacao-distancia-hoteis {
        font-size: 1.038vw;
    }

    .estrelas-hoteis {
        float: left;
        padding-right: 0.521vw;
    }

    .endereco-hoteis {
        font-size: 1.3vw;
        line-height: 1.2;
        margin-bottom: 0.6rem;
        width: 98%;
    }

    .col-infos-hotel::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 2px;
        background-color: #28213f;
        height: calc(85% + 1px);
    }

    .btn-reserva-hotel a {
        padding: 0.521vw 1.563vw;
        border-radius: 8px;
        font-size: 1.085vw;
    }

    .tarifa-hoteis {
        font-weight: 500;
        font-size: 0.985vw;
    }

        .tarifa-hoteis span {
            color: #797979;
            font-weight: 800;
        }

        .tarifa-hoteis b {
            color: #28213f;
            font-weight: 800;
        }

    .efetuar-reserva {
        margin-bottom: 0.5em;
        font-size: 1.4vw;
        line-height: 1.1;
    }

    .info-extra-hoteis {
        font-size: 1.07vw;
    }

    div.col-xl-9:nth-child(3) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    .box-estacionamento {
        border-radius: 30px;
        padding: 1.442vw;
        width: 98vw;
    }

    .img-estacionamento {
        width: 100%;
        border-radius: 10px 0px 0px 10px;
    }

    .title-estacionamento {
        font-size: 3.363vw;
        margin-bottom: 0.2em;
    }

    .endereco-estacionamento {
        font-size: 2vw;
    }

    .valor-estacionamento {
        font-size: 2vw;
    }

    .infos-estacionamento {
        font-size: 1.8vw;
        line-height: 1.2;
        width: 61%;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .box-hoteis {
        padding: 30px 10px;
        border-radius: 30px;
        background-color: #fff;
        margin-bottom: 1em;
        width: 80%;
    }



    .col-img-hotel {
        width: 50%;
    }

    .col-map-hotel {
        padding-left: 15px;
        margin-top: 15px;
    }

    .col-infos-hotel {
        padding-left: 0;
        padding-right: 0;
        height: 100%;
        position: relative;
    }

    .title-hoteis {
        font-size: 2.667vw;
        margin-bottom: 0;
        margin-top: 10px;
    }

    .avaliacao-distancia-hoteis {
        font-size: 1.638vw;
        text-align: center;
    }

    .estrelas-hoteis {
        float: left;
        padding-right: 0.521vw;
    }

    .endereco-hoteis {
        font-size: 1.838vw;
        line-height: 1.2;
        margin-bottom: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .col-infos-hotel::after {
        content: "";
        position: unset;
        right: unset;
        bottom: unset;
        width: unset;
        background-color: unset;
        height: unset;
    }

    .btn-reserva-hotel a {
        padding: 0.521vw 1.563vw;
        border-radius: 8px;
        font-size: 1.885vw;
    }

    .tarifa-hoteis {
        font-weight: 500;
        font-size: 1.638vw;
        margin-bottom: 0;
        text-align: center;
    }

        .tarifa-hoteis span {
            color: #797979;
            font-weight: 800;
        }

        .tarifa-hoteis b {
            color: #28213f;
            font-weight: 800;
        }

    .box-endereco-hoteis-mob {
        width: unset;
        padding: 5px;
        /*! border: solid 1px #28213f; */
        border-radius: 10px;
    }

    .col-map-hotel-mob {
        padding-left: 0;
        padding-right: 0px;
    }

    .embed-responsive {
        border-radius: 10px 0px 0px 10px;
    }

    .efetuar-reserva {
        margin-bottom: 0.5em;
        font-size: 1.933vw;
        line-height: 1.1;
    }

    .info-extra-hoteis {
        font-size: 14px;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 1rem;
    }

    div.col-xl-9:nth-child(3) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    .infos-gerias-hoteis {
        font-size: 1.638vw;
        text-align: center;
    }

    .separador-hoteis {
        background-color: #28213f;
        height: 1px;
        width: 50%;
        margin-top: 1rem;
    }

    .box-estacionamento {
        border-radius: 10px;
        padding: 30px 10px;
        width: 80%;
    }

    .img-estacionamento {
        width: 50%;
        border-radius: 10px;
        margin: auto;
        display: block;
    }
    .title-estacionamento {
        font-size: 4.363vw;
        margin-bottom: 0.2em;
        text-align: center;
    }

    .endereco-estacionamento {
        font-size: 3.242vw;
        text-align: center;
    }

    .valor-estacionamento {
        font-size: 3.242vw;
        text-align: center;
    }

    .infos-estacionamento {
        font-size: 2.242vw;
        line-height: 1.2;
        width: 100%;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .hr-estacionemento {
        width: 90%;
        border: 0.1px solid #000;
        opacity: 1;
        margin: auto;
    }
    .box-tarifas {
        font-size: 16px !important;
        text-align: center;
        line-height: 1.2;
    }
}

@media screen and (max-width: 768px) {
    .embed-responsive {
        border-radius: 10px 0px 0px 10px;
    }

    .efetuar-reserva {
        margin-bottom: 0.5em;
        font-size: 2.333vw;
        line-height: 1.1;
    }

    .info-extra-hoteis {
        font-size: 1.833vw;
        line-height: 1.3;
    }

    div.col-xl-9:nth-child(3) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    .infos-gerias-hoteis {
        font-size: 1.938vw;
        text-align: center;
    }
}

@media screen and (max-width: 575px) {


    .title-hoteis {
        font-size: 4.767vw;
        margin-bottom: 0;
        margin-top: 10px;
    }

    .avaliacao-distancia-hoteis {
        font-size: 3.538vw;
    }



    .endereco-hoteis {
        font-size: 2.638vw;
        line-height: 1.5;
        margin-bottom: 0;
    }




    .tarifa-hoteis {
        font-weight: 500;
        font-size: 2.738vw;
        margin-bottom: 0;
        padding: 0;
        text-align: center;
    }

        .tarifa-hoteis span {
            color: #797979;
            font-weight: 800;
        }

        .tarifa-hoteis b {
            color: #28213f;
            font-weight: 800;
        }

    .efetuar-reserva {
        margin-bottom: 0.5em;
        font-size: 2.933vw;
        line-height: 1.1;
    }

    .info-extra-hoteis {
        font-size: 2.433vw;
        line-height: 1.3;
    }

    div.col-xl-9:nth-child(3) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    div.col-xl-9:nth-child(4) > div:nth-child(1) > div:nth-child(2) > p:nth-child(3) > a:nth-child(4) {
        font-size: 0.729vw;
    }

    .infos-gerias-hoteis {
        font-size: 2.838vw;
        text-align: center;
    }



    .img-estacionamento {
        width: 100%;
    }

    .title-estacionamento {
        font-size: 4.963vw;
        margin-bottom: 0.2em;
        text-align: center;
        margin-top: 0.6em;
    }

    .endereco-estacionamento {
        font-size: 3.242vw;
        text-align: center;
    }

    .valor-estacionamento {
        font-size: 3.242vw;
        text-align: center;
    }

    .infos-estacionamento {
        font-size: 3.242vw;
        line-height: 1.2;
        width: 81%;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }
}
