main {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}

/* Primeira Seção */

#hero-section {
  background:
    linear-gradient(to bottom, rgba(23, 23, 23, 0) 60%, rgba(23, 23, 23, 1) 100%),
    url('/wp-content/themes/lp_theme/images/NOva-capa-LP-1.webp') top left no-repeat;
  background-size: cover;
  margin-bottom: 40px;
  color: #fff;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.section-elements {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: var(--max-content-width);
  width: 100%;
  padding: 0 16px 30px 16px;
  gap: 24px;
  box-sizing: border-box;
}

/* Conteúdo principal */
.content {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.date-local {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-left: 30%;
  align-items: center;
}

.calendar,
.notebook {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* Imagem */
.image {
  display: flex;
  align-items: flex-start;
  margin-left: 30%;
}

.image img {
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 30px;
}

.speakers-image {
  position: relative;
  display: inline-block;
}

#gradient-pedro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(23, 23, 23, 0) 85%, rgba(23, 23, 23, 1) 100%);
}

.speakers-image img {
  width: 50vw;
  display: block;
  height: auto;
}

#hero-section .content {
  margin-left: 30%;
}

/* Título */
#hero-section h2 {
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 18px 0;
  color: #fff;
  text-align: left;
  max-width: 100%;
}

/* Texto secundário */
#hero-section .text-md {
  color: #fff;
  margin-bottom: 32px;
  text-align: left;
  max-width: 550px;
}

/* Botão */
.lp-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: 100px;
  padding: 18px 24px;
  text-decoration: none;
  box-shadow: 0 4px 24px 0 #ff8c2a66;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 60px;

  font-size: 20px;
  font-weight: 500;
}

.lp-btn:hover {
  filter: brightness(1.05) contrast(1.2);
  transform: translateY(-2px);
}

/* Imagem de fundo para mobile */
.bg-image-mobile {
  display: none;
}

/* ----------- MEDIA QUERIES ----------- */

@media (max-width: 1860px) {
  #hero-section {
    background-size: contain;
  }

  #hero-section h2 {
    font-size: 40px;
  }

  #hero-section .lp-btn {
    font-size: 16px;
  }

  #hero-section .content {
    width: 64%;
  }

}

@media (max-width: 1460px) {
  #hero-section {
    padding: 0 0 40px 30px;
    margin-top: 0;
    min-height: 500px;
  }

  .content {
    max-width: 500px;
  }

  .image img {
    width: 200px;
    height: 66px;
  }

  #hero-section .text-md {
    max-width: 420px;
    font-size: 1rem;
  }

  #hero-section .content .text-md p {
    margin: 12px 0;
  }

  #hero-section h2 {
    font-size: 2rem;
    margin: 0;
  }

  #hero-section .content {
    margin-left: 20%;
    width: 86%;
  }

  .image {
    margin-left: 20%;
  }

  .date-local {
    margin-left: 20%;
  }
}

@media (max-width: 998px) {
  #hero-section {
    background-image: none;
    padding: 0;
    min-height: auto;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .section-elements {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .speakers-image {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    height: auto;
    display: block;
  }

  .speakers-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .speakers-image::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 81px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #171717);
    pointer-events: none;
    z-index: 1;
  }

  #hero-section .content {
    width: 100%;
    margin-left: 0;
  }

  .image {
    margin-left: 0;
    justify-content: center;
  }

  .image,
  .content {
    width: 100%;
    max-width: 100%;
    padding: 0px 30px;
    box-sizing: border-box;
    text-align: center;
  }

  .image img {
    width: 210px;
    height: auto;
  }

  .content {
    align-items: center;
    padding: 30px;
  }

  #hero-section .text-md {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    max-width: 800px;
  }

  .date-local {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 20px;
    gap: 10px;
  }

  .calendar,
  .notebook {
    justify-content: center;
    text-align: center;
  }

  #hero-section h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
  }

  .local-date {
    flex-direction: column;
  }

  .local {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .local img {
    margin-bottom: 15px;
  }

  .date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .date img {
    margin-bottom: 15px;
  }
}

/*---------------- Sessão de beneficios-------------------*/

#benefits-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 #ff900044;
  border: 1px solid var(--color-primary);
  padding: 35px;
  padding-top: 52px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  color: #fff;
}

.section-title h2 {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  max-width: var(--max-content-width);
  color: #fff;
  margin: 0 auto 40px auto;
}

.section-subtitle h5 {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}

.section-itens {
  list-style: none;
}

.section-itens li {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.icon-check {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* media querry para sessão de beneficios */
@media (max-width: 1200px) {
  #benefits-section {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 998px) {

  .section-title h2 {
    font-size: 24px;
    font-weight: 700;
    max-width: 800px;
  }

  .section-subtitle h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .section-itens {
    padding-left: 0;
    padding-right: 0;
  }

  .section-itens li h5 {
    font-size: 14px;
    font-weight: 400;
    max-width: 800px;
  }
}

/*----------------------sessão quem participa----------------------*/

#participate-section {
  padding: 40px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cards-section {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.card {
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  width: 250px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.card:hover {
  box-shadow: 0 0 16px #ff820080;
}

.card-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 24px;
  object-fit: contain;
}

.text-xs {
  text-align: center;
  color: #fff;
}

@media (max-width: 1200px) {
  .cards-section {
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 998px) {
  .cards-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 350px;
    margin: 0 auto;
    justify-content: center;
  }
}

/*---------------- Sessão dos Palestrantes -------------------*/

#speakers-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  max-width: 1400px;
  margin: 0 auto 0 auto;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.speakers-swiper-container {
  width: 100%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}


#speakers-section .section-title h2 {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 56px;
  color: #fff;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #171717;
  transition: transform 0.3s ease;
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.speaker-card:hover {
  transform: translateY(-5px);
}

.speaker-info {
  width: 100%;
  padding: 24px;
}

.speaker-name {
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  text-align: center;
}

.speaker-role {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0 0 16px 0;
  text-align: center;
}

.speaker-bio {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
  line-height: 100%;
}

.speakers-swiper {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  top: 25% !important;
  z-index: 10;
  position: absolute;
  opacity: 1 !important;
  cursor: pointer;
  pointer-events: all;
}



.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
  font-weight: bold;
}

/* Media queries */
@media (max-width: 998px) {
  #speakers-section .section-title h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
  }

  /* Esconder grid e mostrar swiper */
  .speakers-grid {
    display: none;
  }

  .speakers-swiper-container {
    display: block;
  }

  .speaker-card {
    margin: 0 auto;
  }

  /* Estilos do Swiper */
  .speakers-swiper {
    padding: 0 40px;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: flex;
    color: #FFFFFF !important;
    width: 40px !important;
    height: 40px !important;
    top: 37% !important;
    transform: translateY(-50%) !important;
    margin: 0;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
  }
}

/*---------------------sessão de valor----------------------*/
#value-section {
  display: flex;
  flex-direction: column;
  background-color: #1F1F1F;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 #ff900044;
  border: 1px solid var(--color-primary);
  padding: 30px 16px;
  max-width: 1100px;
  margin: 40px auto 40px auto;
  color: #fff;
}

#value-section .section-title h2 {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  max-width: var(--max-content-width);
  color: #fff;
  margin: 0 auto 40px auto;
}

#value-section h2 {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}

#value-section .value-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  padding: 8px;
  text-decoration: none;
  margin: 6px auto;
  box-shadow: 0 4px 24px 0 #ff8c2a66;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 170px;
}

#value-section .installments-info {
    text-align: center;
    display: block; 
    width: 100%;
    margin: 26px 0;
    font-size: 22px;
    font-weight: 400;
}

.value-btn h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 12px 0;
  text-align: center;
}

.value-btn:hover {
  filter: brightness(1.05) contrast(1.2);
}

/* media querry para sessão de valor */
@media (max-width: 1200px) {
  #value-section {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 998px) {

  #value-section .section-title h2 {
    font-size: 24px;
    font-weight: 700;
    max-width: 800px;
  }

  #value-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  #value-section .value-btn {
    width: 140px;
  }

  .value-btn h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
  }
}

/*---------------------sessão do mapa-----------------------*/

#map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.map-image {
  max-width: 1200px;
}

.map-image-desktop {
  width: 100%;
  height: auto;
  display: block;
}

.map-image-mobile {
  width: 100%;
  height: auto;
  display: none;
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

iframe {
  width: 1185px;
  height: 390px;
  border: 0;
}

@media (max-width: 1200px) {
  .map-image {
    max-width: 1000px;
  }

  .map-container {
    max-width: 1000px;
  }
}

@media (max-width: 998px) {

  .map-container {
    max-height: 400px;
  }

  .map-image-desktop {
    display: none;
  }

  .map-image-mobile {
    display: block;
  }
}

/*---------------- Sessão dos Hotéis -------------------*/

#hotels-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#hotels-section .section-title h2 {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 56px;
  color: #fff;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  justify-items: center;
  max-width: var(--max-content-width);
}

.hotel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 20px rgba(229, 124, 38, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(229, 124, 38, 0.5);
}

.hotel-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 16px;
}

.hotel-name {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

.hotel-address {
  font-size: 14px;
  font-weight: 400;
  color: #CCCCCC;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.hotel-location-btn {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8c2a 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.hotel-location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 124, 38, 0.4);
}

/* Media queries para seção dos hotéis */
@media (max-width: 1200px) {
  #hotels-section {
    margin-left: 40px;
    margin-right: 40px;
  }

  .hotels-grid {
    gap: 24px;
  }
}

@media (max-width: 998px) {
  #hotels-section .section-title h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }

  .hotel-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #hotels-section {
    margin-left: 16px;
    margin-right: 16px;
  }

  #hotels-section .section-title h2 {
    font-size: 24px;
  }
}

/*---------------- Sessão de ingressos -------------------*/

#ingressos-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 400;

}

#ingressos-section h1 {
  font-weight: 700;
}

#ingressos-section .ingressos-content {
  max-width: var(--max-content-width);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 40px;
  padding-right: 40px;
}

#ingressos-section .ingressos-content .pacote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  border-radius: 38px;
  border: 1px solid #402713;
  background-color: #1F1F1F;
  padding: 40px 27px 40px 27px !important;
  max-width: 580px;
  width: 45%;
  margin-bottom: 4rem;
}

#ingressos-section .ingressos-content .pacote h1 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  width: fit-content;
  height: fit-content;
  line-height: 40px;
}

#ingressos-section .ingressos-content .pacote h2 {
  font-size: 20px;
  text-align: center;
  width: 85%;
}


#ingressos-section .ingressos-content .pacote .price-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

#ingressos-section .ingressos-content .pacote .price-label .first-line {
  display: flex;

}

#ingressos-section .ingressos-content .pacote .price-label .first-line .value {
  font-size: 54px;
}

#ingressos-section .ingressos-content .pacote ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
  font-size: 14px;

}

#ingressos-section .ingressos-content .pacote ul li {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

#ingressos-section .ingressos-content .pacote ul li img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}


#ingressos-section .ingressos-content .pacote .garanta-ja-button {
  color: white;
  background-color: var(--color-primary);
  padding: 15px 30px 15px 30px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
}

#ingressos-section .ingressos-content .pacote .ingressos-limitados {
  font-size: 14px;
  font-weight: 400;
}


.premium {
  box-shadow: 0px 0px 53.4px 0px #EB7A1C;
}

@media (max-width: 992px) {
  #ingressos-section h1 {
    font-size: 32px;
  }

  #ingressos-section .ingressos-content {
    flex-direction: column;
    align-items: center;
  }

  #ingressos-section .ingressos-content .pacote {
    width: 100%;
  }
}


/*---------------- Sessão de Anfitrião-------------------*/


#anfitriao-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 400;
}

#last-event-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 30px;
  font-weight: 400;
}

#last-event-title {
  text-align: center;
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 12px;
}

.carrousel-container {
  max-width: 880px;
}

.carousel-track {
  display: flex;
  gap: 40px;
  justify-content: start;
  will-change: transform;
  animation: scrolling 16s linear infinite;
}

.carousel-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
}

.testimony-container {
  margin-top: 40px;
  display: flex;
  transition: transform 0.4s ease-in-out;
}

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

.testimony img {
  height: 260px;
  width: 260px;
  object-fit: cover;
  border-radius: 50%;
}

.testimony p {
  text-align: center;
  margin-top: 8px;
}

.slider-btn {
  position: absolute;
  top: 25%;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.slider-btn.prev {
  z-index: 90;
  left: 8px;
}

.slider-btn.next {
  right: 8px;
}


@media (min-width: 768px) {
  .slider {
    max-width: 100%;
    overflow: visible;
  }

  .testimony-container {
    transform: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }

  .testimony {
    min-width: auto;
    width: 300px;
  }

  .slider-btn {
    display: none;
  }

  #last-event-title {
    text-align: center;
    max-width: 50rem;
  }
}


@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-320%);
  }
}

#anfitriao-section .anfitriao-content {
  max-width: var(--max-content-width);
  margin: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

}

#anfitriao-section .title-zone {
  width: 100% !important;
  max-width: var(--max-content-width);
  margin-top: 96px;
}

#anfitriao-section .title-zone h2 {
  text-align: center;
  margin: 0;
}


#anfitriao-section .anfitriao-content .img-zone {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  padding: 20px;
}

#anfitriao-section .anfitriao-content .img-zone img {
  max-width: 600px;
}

#anfitriao-section .anfitriao-content .text-zone {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  width: 45%;
}

#anfitriao-section .anfitriao-content .text-zone .text-zone-title {
  text-align: center;
  padding: 0;
  height: fit-content;
  ;
}

#anfitriao-section .anfitriao-content .text-zone .text-zone-text {
  font-size: 20px;
  text-align: center;
}

@media (max-width: 1140px) {
  #anfitriao-section .anfitriao-content {
    flex-direction: column;
  }

  #anfitriao-section .anfitriao-content .text-zone {
    width: 90%;
  }

  #anfitriao-section .anfitriao-content .img-zone img {
    width: 80%;
  }
}


@media (max-width: 992px) {

  #anfitriao-section .title-zone {
    margin-top: 36px;
    font-size: 24px;
  }

  #anfitriao-section .title-zone h2 {
    font-size: 24px;
  }

  #anfitriao-section .anfitriao-content .text-zone .text-zone-text p {
    font-size: 14px;
  }

  .text-zone-title h3 {
    font-size: 24px;
  }
}

/* FAQ Section */
#faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 70px;
}

.faq-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  background: var(--color-primary);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #ff8c2a;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.faq-icon svg {
  transition: transform 0.15s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.15s ease;
  background: #f2f2f2;
}

.faq-answer p {
  padding: 24px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #171717;
}

.faq-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 90%;
}

.faq-support p {
  font-size: 22px;
  color: #FFFFFF;
  margin: 0;
}

.support-btn {
  background: #22C55E;
  padding: 0px 36px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.support-btn:hover {
  background: #16A34A;
  transform: translateY(-2px);
}

.support-btn h3 {
  color: black;
  font-size: 20px;
  font-weight: 400;
}

/* Media queries para FAQ */

@media (max-width: 998px) {
  #faq-section {
    margin-top: 0;
    gap: 24px;
  }

  .faq-item {
    width: 90%;
    margin: auto;
  }

  #faq-section .section-title h2 {
    font-size: 24px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 20px;
    font-size: 14px;
  }

  .support-btn {
    padding: 0px 16px;
    margin-top: 0;
  }

  .support-btn h3 {
    font-size: 16px;
  }
}