.elementor-2305 .elementor-element.elementor-element-95d00fb{--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-2305 .elementor-element.elementor-element-95d00fb:not(.elementor-motion-effects-element-type-background), .elementor-2305 .elementor-element.elementor-element-95d00fb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9F9F9;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family );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 );}/* Start custom CSS for text-editor, class: .elementor-element-608ef09 */.esteira-servicos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.esteira-servicos h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

/* GRID 3 colunas no desktop */
.scroll-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card-servico {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card-servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-servico img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.card-servico:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
  font-weight: 600;
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card-content a {
  display: inline-block;
  padding: 10px 18px;
  background: #0077ff;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  align-self: start;
}

.card-content a:hover {
  background: #005ecc;
}

/* Mobile: 1 por linha */
@media (max-width: 768px) {
  .scroll-cards {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */