.elementor-2692 .elementor-element.elementor-element-3ba2763{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2692 .elementor-element.elementor-element-0d957c4 .elementor-heading-title{font-family:"Raleway", Sans-serif;font-size:1.8em;font-weight:300;line-height:37px;color:var( --e-global-color-180f483 );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2692 .elementor-element.elementor-element-090e8a5{font-family:"Raleway", Sans-serif;font-size:1em;font-weight:400;color:var( --e-global-color-text );}.elementor-2692 .elementor-element.elementor-element-090e8a5 a{color:var( --e-global-color-text );}.elementor-2692 .elementor-element.elementor-element-143055d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-2692 .elementor-element.elementor-element-143055d{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-7f23d99 *//* ======== Estrutura Geral ======== */
.slide-carrosel1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

.car1-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

/* ======== Área dos produtos ======== */
.car1-produtos {
  width: 70%;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-top:40px;
}

.car1-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 40px; /* espaçamento entre cards */
}

/* ======== Card ======== */
.card-produto-carrosel {
  flex: 0 0 calc(100% / 3);
  background: #fff;
  border-radius: 8px;
  text-align: center;
  margin: 0px;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.6;
  cursor: pointer;
  overflow: hidden;
}

.card-produto-carrosel.active {
  transform: scale(1.05);
  z-index: 2;
  opacity: 1;
  background-color: #f2f2f2;
  border-radius: 16px;
}

.card-produto-carrosel:hover {
  background: #f8f8f8;
}

/* ======== Imagem ======== */
.img-wrapper-carrosel {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.img-prod-carrosel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 16px;
}


/* ======== Barra de tempo ======== */
.barra-tempo-carrosel {
  height: 6px;
  width: 0%;
  background-color: #25224f;
  margin: 12px auto 6px;
  border-radius: 100px;
  transition: width 4s linear;
}

.card-produto-carrosel.active .barra-tempo-carrosel {
  width: 60%;
}

/* ======== Títulos ======== */
.titulo-carrosel1 {
  font-size: 1.1rem;
  margin: 6px 0 15px;
  font-weight: 600;
}

/* ======== Controles ======== */
.car1-controles {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 15px;
}

.controle-nav-slide1 {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 17px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}

.controle-nav-slide1:hover {
  background: #25224f;
}

/* ======== Lateral dinâmica ======== */
.car1-lateral {
  width: 30%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.car1-lateral::before {
  content: "";
  display: block;
  padding-top: 100%;
  visibility: hidden;
}

.car1-lateral-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.85)
  );
  color: #fff;
  padding: 40px;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 40px 0 0 0;
}

/* ======== Conteúdo lateral ======== */
.car1-lateral-titulo {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}

.car1-lateral-descricao {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: left;
}

.botao-carrosel-cta {
  width: fit-content;
  background-color: #25224f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.botao-carrosel-cta:hover {
  background-color: #25224f;
}

/* ======== Transições ======== */
.car1-lateral-titulo,
.car1-lateral-descricao,
.botao-carrosel-cta {
  transition: opacity 0.4s ease;
}

/* ======== Responsivo ======== */
@media (max-width: 1024px) {
  .card-produto-carrosel {
    flex: 0 0 calc(100% / 2.5);
  }
}

@media (max-width: 768px) {
  .car1-container {
    flex-direction: column;
  }

  .car1-produtos,
  .car1-lateral {
    width: 100%;
  }

  .img-wrapper-carrosel {
    height: 180px;
  }

  .card-produto-carrosel {
    flex: 0 0 calc(100% / 2);
  }

  .car1-lateral-overlay {
    position: relative;
    border-radius: 0;
  }
}/* End custom CSS */