<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Estilos para o carrossel de depoimentos
 */

/* Estilos gerais */
.clarke-testimonials-carousel {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Carrossel */
.clarke-carousel-container {
  position: relative !important;
  overflow: hidden !important;
  padding: 1rem 0 !important;
}

.clarke-carousel-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
  height: 400px !important;
  width: 100% !important;
}

/* Slides */
.clarke-carousel-slide {
  position: absolute !important;
  border-radius: 0.75rem !important;
  overflow: hidden !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.clarke-carousel-slide.slide-left {
  left: 0% !important;
  width: 25% !important;
  height: 60% !important;
  top: 20% !important;
  z-index: 0 !important;
  opacity: 0.7 !important;
  transform: scale(0.95) !important;
}

.clarke-carousel-slide.slide-center {
  left: 50% !important;
  transform: translateX(-50%) scale(1.1) !important;
  width: 45% !important;
  height: auto !important; /* Alterado para auto */
  top: 50% !important; /* Centralizar verticalmente */
  transform: translate(-50%, -50%) scale(1.1) !important; /* Centralizar verticalmente e aplicar escala */
  z-index: 10 !important;
}

.clarke-carousel-slide.slide-right {
  right: 0% !important;
  width: 25% !important;
  height: 60% !important;
  top: 20% !important;
  z-index: 0 !important;
  opacity: 0.7 !important;
  transform: scale(0.95) !important;
}

.clarke-carousel-slide-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

/* Ajuste especÃ­fico para o slide central */
.clarke-carousel-slide.slide-center .clarke-carousel-slide-inner {
  height: 0 !important;
  padding-bottom: 56.25% !important; /* ProporÃ§Ã£o 16:9 para o slide central */
}

/* Ajuste especÃ­fico para slides laterais */
.clarke-carousel-slide.slide-left .clarke-carousel-slide-inner,
.clarke-carousel-slide.slide-right .clarke-carousel-slide-inner {
  height: 100% !important;
  padding-bottom: 0 !important;
}

.clarke-carousel-slide img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Ajuste especÃ­fico para imagens laterais */
.clarke-carousel-slide.slide-left img,
.clarke-carousel-slide.slide-right img {
  object-position: center !important; /* Centralizar a imagem */
}

/* BotÃ£o de play */
.clarke-play-button {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background-color: #10b981 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  transition: background-color 0.2s !important;
  z-index: 20 !important;
}

.clarke-play-button:hover {
  background-color: #34d399 !important;
}

.clarke-play-button svg {
  width: 32px !important;
  height: 32px !important;
  color: white !important;
  fill: white !important;
}

/* BotÃµes de navegaÃ§Ã£o */
.clarke-carousel-prev,
.clarke-carousel-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  transition: background-color 0.2s !important;
}

.clarke-carousel-prev {
  left: 16px !important;
}

.clarke-carousel-next {
  right: 16px !important;
}

.clarke-carousel-prev:hover,
.clarke-carousel-next:hover {
  background-color: white !important;
}

.clarke-carousel-prev svg,
.clarke-carousel-next svg {
  width: 24px !important;
  height: 24px !important;
  color: #065f46 !important;
}

/* InformaÃ§Ãµes do depoimento */
.clarke-testimonial-info {
  max-width: 800px !important;
  margin: 0.5rem auto 0 !important;
  text-align: center !important;
  color: #fafafa !important;
}

.clarke-testimonial-title {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  margin-bottom: 1.5rem !important;
  color: #fafafa !important;
}

@media (min-width: 768px) {
  .clarke-testimonial-title {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
}

.clarke-testimonial-title .highlight {
  background-color: #10b981 !important;
  color: white !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 0.375rem !important;
  font-weight: bold !important;
}

.clarke-testimonial-company {
  font-weight: bold !important;
  color: #fafafa !important;
}

.clarke-testimonial-text {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  margin-top: 1.5rem !important;
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #fafafa !important;
}

@media (min-width: 768px) {
  .clarke-testimonial-text {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
}

.clarke-testimonial-link {
  margin-left: 0.25rem !important;
  font-weight: bold !important;
  color: #10b981 !important; /* Alterado para verde para melhor contraste com o fundo */
  cursor: pointer !important;
  text-decoration: none !important;
}

.clarke-testimonial-link:hover {
  text-decoration: underline !important;
}

/* Modal de vÃ­deo */
.clarke-video-modal {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  z-index: 1000 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
}

.clarke-video-modal.active {
  display: flex !important;
}

.clarke-modal-content {
  position: relative !important;
  width: 100% !important;
  max-width: 1024px !important;
  background-color: black !important;
  border-radius: 0.5rem !important;
  overflow: hidden !important;
}

.clarke-modal-close {
  position: absolute !important;
  top: 0.5rem !important;
  right: 0.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: background-color 0.2s !important;
}

.clarke-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.clarke-modal-close svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  color: white !important;
}

.clarke-modal-video-container {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56.25% !important; /* ProporÃ§Ã£o 16:9 */
}

.clarke-modal-video-container iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .clarke-carousel-slide.slide-left,
  .clarke-carousel-slide.slide-right {
    display: none !important;
  }

  .clarke-carousel-slide.slide-center {
    width: 90% !important;
  }

  .clarke-carousel-wrapper {
    height: 300px !important;
  }
}

/* Tema claro - textos escuros para fundos claros */
.clarke-testimonials-carousel.clarke-theme-light .clarke-testimonial-info {
  color: #232323 !important;
}

.clarke-testimonials-carousel.clarke-theme-light .clarke-testimonial-title {
  color: #232323 !important;
}

.clarke-testimonials-carousel.clarke-theme-light .clarke-testimonial-text {
  color: #232323 !important;
}

.clarke-testimonials-carousel.clarke-theme-light .clarke-testimonial-company {
  color: #232323 !important;
}

/* Tema escuro - textos claros para fundos escuros */
.clarke-testimonials-carousel.clarke-theme-dark .clarke-testimonial-info {
  color: #f2f2f2 !important;
}

.clarke-testimonials-carousel.clarke-theme-dark .clarke-testimonial-title {
  color: #f2f2f2 !important;
}

.clarke-testimonials-carousel.clarke-theme-dark .clarke-testimonial-text {
  color: #f2f2f2 !important;
}

.clarke-testimonials-carousel.clarke-theme-dark .clarke-testimonial-company {
  color: #f2f2f2 !important;
}

/* Link "ConheÃ§a essa histÃ³ria" mantÃ©m a cor verde em ambos os temas */
.clarke-testimonials-carousel .clarke-testimonial-link {
  color: #10b981 !important;
}
</pre></body></html>