/* ==========================================================================
   1. RESET BÁSICO, TIPOGRAFIA E CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.text-center { text-align: center; }

h1, h2, h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.2rem;
  color: #FF007F; /* Rosa Choque */
}

h2 {
  font-size: 1.6rem;
}

.section-title {
  text-align: center;
  border-bottom: 2px solid #FF007F;
  display: inline-block;
  padding-bottom: 5px;
  margin: 20px auto;
}

p {
  color: #dddddd;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* Links Gerais em Azul Claro Elegante */
a {
  color: #38bdf8;
  text-decoration: none;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}


/* ==========================================================================
   2. HEADER E NAVEGAÇÃO
   ========================================================================== */
.header-site {
  background-color: #121212;
  border-bottom: 3px solid #FF007F;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 12px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

.main-nav a:hover, 
.main-nav a.active {
  color: #FF007F;
}

/* Botão Hambúrguer Mobile */
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger-btn span {
  width: 28px;
  height: 3px;
  background-color: #FF007F;
}


/* ==========================================================================
   3. BOTÕES (SISTEMA UNIFICADO)
   ========================================================================== */
.btn-primary {
  display: inline-block;
  background-color: #FF007F;
  color: #ffffff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover { 
  background-color: #d6006b; 
}

/* Botão Secundário Consolidado (Rosa Choque) */
.btn-secondary {
  display: inline-block;
  color: #FF007F !important;
  border: 2px solid #FF007F;
  background-color: transparent;
  padding: 10px 22px;
  text-decoration: none !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #FF007F;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
  transform: translateY(-2px);
}


/* ==========================================================================
   4. LAYOUT PRINCIPAL (HERO + CARROSSEL COMPACTO)
   ========================================================================== */
.hero-carousel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-content h2 {
  font-size: 1.3rem;
  color: #cccccc;
  font-weight: 300;
  margin-top: 10px;
}

.hero-carousel-side {
  width: 100%;
}

.side-title {
  font-size: 1.1rem;
  color: #FF007F;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container do Carrossel Dinâmico */
.carousel-container-compact {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #333333;
  border-radius: 8px;
  background-color: #121212;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-slide {
  display: none;
  position: relative;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

/* Imagem Dinâmica/Estática */
.card-image-wrapper.static-image {
  position: relative;
  width: 100%;
  aspect-ratio: 500 / 320;
  overflow: hidden;
  border-radius: 6px;
  pointer-events: none;
  user-select: none;
}

.carousel-slide.active .card-image-wrapper.static-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: slideInLeft 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Overlay de Texto no Carrossel */
.slide-overlay-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(20, 20, 20, 0.75) 100%);
  backdrop-filter: blur(4px);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 4px solid #38bdf8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
}

.carousel-slide.active .slide-overlay-badge {
  animation: slideInRightText 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.badge-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #38bdf8;
  margin-bottom: 2px;
}

.slide-overlay-badge h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}

.carousel-caption {
  text-align: center;
  padding: 8px 10px;
  font-size: 0.85rem;
  color: #94a3b8;
  background-color: #1a1a1a;
}

/* Botões de Navegação do Carrossel */
.carousel-container-compact .prev,
.carousel-container-compact .next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 5;
}

.carousel-container-compact .prev:hover,
.carousel-container-compact .next:hover {
  background-color: #38bdf8;
  color: #000000;
}

.carousel-container-compact .prev { left: 10px; }
.carousel-container-compact .next { right: 10px; }

/* Dots / Indicadores */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 0;
  background-color: #1a1a1a;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  background-color: #475569;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: #38bdf8;
  width: 20px;
  border-radius: 4px;
}


/* ==========================================================================
   5. BLOCOS DE RECURSOS E IMAGENS COM LINK
   ========================================================================== */
.feature-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px auto;
  background-color: #121212;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #FF007F;
}

.feature-block.reverse {
  flex-direction: row-reverse;
  border-left: none;
  border-right: 4px solid #FF007F;
}

.feature-text { flex: 1; }
.feature-media { flex: 1; }

.cta-box {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #333333;
}

/* Cards de Imagem Clicáveis */
.image-link {
  display: block;
  text-decoration: none;
  width: 100%;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid #333333;
  background-color: #1a1a1a;
  transition: border-color 0.3s ease;
}

.card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zoom-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #38bdf8;
  font-size: 0.85rem;
  padding: 6px 9px;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
}

.card-image-wrapper:hover {
  border-color: #38bdf8;
}

.card-image-wrapper:hover img {
  transform: scale(1.04);
}

.card-image-wrapper:hover .zoom-badge {
  background: #38bdf8;
  color: #000000;
  transform: scale(1.1);
}


/* ==========================================================================
   6. SEÇÃO FAQ (ACCORDION) & VÍDEO
   ========================================================================== */
.faq-video-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 60px;
  align-items: start;
}

@media (min-width: 992px) {
  .faq-video-section {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.text-left {
  text-align: left !important;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1c1c1c;
  border: 1px solid #333333;
  border-left: 4px solid #FF007F;
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #38bdf8;
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  padding: 0;
  gap: 15px;
}

.faq-question {
  color: #f1f5f9;
}

.faq-icon {
  font-size: 1.4rem;
  color: #38bdf8;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-content {
  padding-top: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.98rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #38bdf8;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  padding: 0;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: #38bdf8;
  background-color: #222222;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-body {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

.faq-item.active .btn-arrow {
  transform: rotate(180deg);
}

/* Coluna do Vídeo */
.video-card {
  background-color: #1c1c1c;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 16px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background-color: #000000;
}

.responsive-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #333333;
}

.video-transcript-box {
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

.video-transcript-box h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.transcript-accordion {
  margin-top: 12px;
  background-color: #262626;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #383838;
  cursor: pointer;
}

.transcript-accordion summary {
  color: #38bdf8;
  outline: none;
}

.transcript-text {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #444444;
  color: #94a3b8;
  font-size: 0.88rem;
}


/* ==========================================================================
   7. FORMULÁRIO DE CONTATO (ESTILO ESCURO E DETALHES EM ROSA)
   ========================================================================== */
.contact-form-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-title {
  color: #ec4899;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.required-asterisk {
  color: #ec4899;
}

.smoothborder {
  width: 100%;
  padding: 12px 14px;
  background-color: #1a1a1a;
  border: 1px solid #ec4899;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.smoothborder::placeholder {
  color: #94a3b8;
}

.smoothborder:focus {
  outline: none;
  border-color: #f472b6;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
}

.recaptcha-wrapper {
  margin: 18px 0;
  display: flex;
  justify-content: flex-start;
}

.btn-submit {
  cursor: pointer;
  width: 100%;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #38bdf8 100%);
  background-size: 200% 200%;
  background-position: left center;
  transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.btn-submit:hover {
  background-position: right center;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}


/* ==========================================================================
   8. RODAPÉ (FOOTER)
   ========================================================================== */
.footer-site {
  background-color: #0d0d0d;
  border-top: 2px solid #FF007F;
  padding: 40px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  color: #FF007F;
  font-size: 1.2rem;
  border-bottom: 1px solid #333333;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #dddddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FF007F;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #222222;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
}


/* ==========================================================================
   9. BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 50px;
  background-color: #25d366;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transform-origin: center right;
}

.whatsapp-btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.whatsapp-btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  text-align: left;
  line-height: 1.15;
  user-select: none;
}

.whatsapp-btn-text .top-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.92;
}

.whatsapp-btn-text .bottom-text {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.pulse-stretch-btn {
  animation: whatsappPulseStretch 2.4s infinite ease-in-out;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  animation-play-state: paused;
  transform: scale(1.05);
}


/* ==========================================================================
   10. ANIMAÇÕES (KEYFRAMES) & RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@keyframes whatsappPulseStretch {
  0% {
    transform: scale(1) scaleX(1);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  15% {
    transform: scaleX(1.12) scaleY(0.92);
  }
  30% {
    transform: scaleX(0.95) scaleY(1.08);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.75);
  }
  45% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1) scaleX(1);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  100% {
    transform: scale(1) scaleX(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0.3;
    transform: translateX(-60px) scale(1.03);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRightText {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Telas de Até 900px (Tablets e Notebooks Pequenos) */
@media (max-width: 900px) {
  .hero-carousel-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .hero-content {
    text-align: center;
  }
}

/* Telas Mobile (Até 768px) */
@media (max-width: 768px) {
  .hamburger-btn { display: flex; }

  .main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #121212;
    border-bottom: 2px solid #FF007F;
  }

  .main-nav.active { display: block; }

  .main-nav ul {
    flex-direction: column;
    padding: 15px;
  }

  .feature-block, 
  .feature-block.reverse {
    flex-direction: column;
    border-right: none;
    border-left: 4px solid #FF007F;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
}

/* Telas Pequenas (Até 480px) */
@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 18px;
    right: 15px;
    padding: 8px 14px 8px 12px;
  }
  
  .whatsapp-btn-text .top-text {
    font-size: 0.65rem;
  }
  
  .whatsapp-btn-text .bottom-text {
    font-size: 0.82rem;
  }
}

/* Depoimento de clientes com foto- Container Principal */
  .depoimentos-section {
    background-color: #000000;
    padding: 60px 0;
  }

  .depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Coluna Esquerda: Imagem + Texto */
  .depoimento-col-esquerda {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  }

  .depoimento-col-esquerda img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
  }

  .depoimento-col-esquerda .texto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 18, 18, 0.95) 75%);
    padding: 30px 20px 20px 20px;
  }

  .depoimento-col-esquerda .texto-overlay h3 {
    margin: 0 0 6px 0;
    font-size: 1.3rem;
    color: #FF007F; /* Rosa Choque */
  }

  .depoimento-col-esquerda .texto-overlay p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
  }

  /* Coluna Direita: Card do Depoimento */
  .depoimento-col-direita {
    flex: 1;
    min-width: 300px;
    background-color: #121212;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #262626;
    border-left: 5px solid #FF007F;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
  }

  /* Cabeçalho do Card: Estrelas e Selo */
  .depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }

  .rating-stars {
    color: #f59e0b; /* Amarelo Dourado */
    font-size: 1.25rem;
    letter-spacing: 2px;
    user-select: none;
  }

  /* Selo Compra Verificada */
  .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #10b981; /* Verde */
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .verified-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    background-color: #10b981;
    color: #000000;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
  }

  .depoimento-aspas {
    font-size: 3.5rem;
    color: #262626;
    line-height: 0.8;
    font-family: Georgia, serif;
    margin-bottom: 5px;
    user-select: none;
  }

  .depoimento-texto {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 24px;
  }

  /* Rodapé do Autor */
  .depoimento-autor {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px dashed #262626;
    padding-top: 18px;
  }

  .depoimento-autor img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #38bdf8;
  }

  .depoimento-autor-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
  }

  .depoimento-autor-info span {
    font-size: 0.85rem;
    color: #94a3b8;
  }

  /* Ajuste Mobile */
  @media (max-width: 768px) {
    .depoimentos-container {
      flex-direction: column;
    }
    .depoimento-col-esquerda img {
      min-height: 280px;
    }
  }

/* Efeito de mascara no texto da imagem do comentário */

.texto-overlay {
  background: rgba(0, 0, 0, 0.55); /* Máscara escura para dar leitura */
  color: #ffffff;
  padding: 15px;
}

