/* =====================================================================
   ARQUIVO: rcs-sections.css
   DESCRIÇÃO: Estilos para seções RCS com animações e responsividade
   CONTEÚDO:
   - Seções 1, 2 e 3: Apresentação com listas e badges
   - Seção de informações: Grid de cards explicativos
   - Home RCS: Cards com animações
   - Animações gerais e responsividade
===================================================================== */

/* Regra geral para todos os h2 - tamanho padrão 3rem */
h2 {
  font-size: 3rem;
}

/* =====================================================================
   SEÇÃO 1: Apresentação e Lista de Benefícios
   ===================================================================== */

.rcs-section1 {
  color: #030303;
  padding: 0;
  position: relative;
}

.rcs-section1-text {
  padding-left: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.rcs-section1-text.rcs-visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTEÚDO PRINCIPAL ===== */

/* Título com gradiente roxo -> azul */
.rcs-section1-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rcs-section1-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.rcs-section1-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcs-section1-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.55rem;
  font-weight: 500;
  color: #444;
}

.rcs-section1-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.12);
}

/* ===== BADGE COM DIGITAÇÃO ===== */
.rcs-section1-badge {
  display: inline-block;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(123, 47, 255, 0.25);
  white-space: nowrap;
}

/* ===============================
   SEÇÃO 2 
   =============================== */

.rcs-section2 {
  color: #1a1a1a;
  padding: 0;
  position: relative;
}

.rcs-section2-text {
  padding-left: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.rcs-section2-text.rcs-visivel {
  opacity: 1;
  transform: translateY(0);
}

/* Título com gradiente */
.rcs-section2-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rcs-section2-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.rcs-section2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcs-section2-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.55rem;
  font-weight: 500;
  color: #444;
}

.rcs-section2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.12);
}

.rcs-section2-badge {
  display: inline-block;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(123, 47, 255, 0.25);
  white-space: nowrap;
}

/* ===============================
   SEÇÃO 3 
   =============================== */
/* ===== BASE ===== */
.rcs-section3 {
  color: #0f0f0f;
  padding: 0;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.rcs-section3-text {
  text-align: left;
  padding-left: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* aparece com fade */
.rcs-section3-text.rcs-visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTEÚDO ===== */
/* Título com gradiente */
.rcs-section3-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rcs-section3-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

/* lista */
.rcs-section3-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcs-section3-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.55rem;
  font-weight: 500;
  color: #444;
}

.rcs-section3-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.12);
}

.rcs-section3-note {
  margin: 12px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #3b3b3b;
}

/* badge com digitação */
.rcs-section3-badge {
  display: inline-block;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(123, 47, 255, 0.25);
  white-space: nowrap;
}

/* Fundo gradiente atrás do celular */
.rcs-section3-phone-col {
  position: relative;
  overflow: visible;
  z-index: 10;
  isolation: isolate;
}

/* ---- base geral ---- */
.rcs-section3-left-1,
.rcs-section3-left,
.rcs-section3-right {
  position: absolute;
  top: 50%;
  width: 150vw;
  height: 60%;
  border-radius: 25px;
  z-index: 0;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}

/* ---- ESQUERDA (entra da esquerda) ---- */
.rcs-section3-left-1,
.rcs-section3-left {
  right: 48%;
  background: linear-gradient(-166deg, #7b2fff 0%, #3ac6ff 100%);
  border-radius: 0 25px 25px 0;
  transform: translateY(-50%) translateX(-100px);
  /* desloca da esquerda */
}

/* ---- DIREITA (entra da direita) ---- */
.rcs-section3-right {
  left: 49%;
  background: linear-gradient(175deg, #7b2fff 0%, #3ac6ff 100%);
  border-radius: 25px 0 0 25px;
  transform: translateY(-50%) translateX(100px);
  /* desloca da direita */
}

/* ---- QUANDO VISÍVEL (entra na tela) ---- */
.rcs-section3-left-1.rcs-visivel,
.rcs-section3-left.rcs-visivel {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  /* volta pra posição original */
}

.rcs-section3-right.rcs-visivel {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  /* volta pra posição original */
}

.rcs-section3-phone-col .telefone-sim {
  position: relative;
  z-index: 1;
}

/* ===== SEÇÃO EXPLICATIVA===== */
.rcs-info {
  padding: 100px 0;
  color: #111;
  text-align: center;
}

/* Título: estado inicial invisível */
.rcs-info-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(199deg, #7b2fff 0%, #3ac6ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Quando estiver visível */
.rcs-info-title.rcs-visivel {
  opacity: 1;
  transform: translateY(0);
}

.rcs-info-desc {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* quando estiver visível */
.rcs-info-desc.rcs-visivel {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
  /* entra logo após o título */
}

/* ===== GRID DOS CARDS ===== */
.rcs-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ESTILO DE CADA CARD ===== */
.rcs-info-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(100px);
}

/* ===== ÍCONES ===== */
.rcs-info-card svg {
  display: block;
  margin-bottom: 15px;
}

/* ===== TÍTULO ===== */
.rcs-info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

/* ===== DESCRIÇÃO ===== */
.rcs-info-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== DOMINÓ ANIMAÇÃO AO APARECER ===== */
.rcs-info-card.rcs-visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOVER ===== */
.rcs-info-card.rcs-visivel:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(123, 47, 255, 0.12);
  border-color: rgba(123, 47, 255, 0.2);
}

/* ====== HOME RCS: Cards com Animações ====== */

/* Container geral */
.home-rcs-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-rcs-centro {
  position: relative;
  z-index: 5;
  animation: fadeIn 0.8s ease both;
}

/* Card central */
.home-rcs-card {
  width: 80%;
  max-width: 420px;
  height: auto;
  background: #d2d9ee;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.76);
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  opacity: 0;
  animation: popIn 1s ease 0.3s forwards;
}

.home-rcs-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.home-rcs-body {
  padding: 10px;
}

.home-rcs-body h3 {
  font-size: 16px;
  margin: 0 0 5px;
  color: #141414;
}

.home-rcs-body p {
  font-size: 14px;
  line-height: 1.4;
  color: #161616;
  margin: 4px 0 5px;
}

.home-rcs-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.home-rcs-buttons span {
  background: #e9edff;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

/* Composer (entrada de mensagem) */
.home-rcs-composer {
  position: relative;
  right: 7px;
  width: 108%;
  margin-top: 5px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.chip {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  font-size: 12px;
  padding: 5px 10px;
  margin-right: 5px;
}

.msg-bar {
  display: flex;
  align-items: center;
  background: #edf0f6;
  padding: 6px 8px;
  border-radius: 20px;
  margin-top: 8px;
}

.msg-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 12px;
}

/* ====== SETAS ====== */
.home-rcs-seta {
  position: absolute;
  z-index: 5;
  opacity: 1;
}

.seta-logo {
  width: 90px;
  left: -73px;
  top: -49px;
  animation: subirDescer 3s ease-in-out infinite;
}

/* === SEÇÃO DA SETA DIREITA === */
.seta-verificado {
  position: absolute;
  width: 127px;
  right: -42px;
  top: -17px;
  z-index: 10;

  animation: subirDescer 3s ease-in-out infinite;
}

@keyframes subirDescer {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Cards externos */
.home-rcs-card-esquerda,
.home-rcs-card-direita {
  position: absolute;
}

.home-rcs-card-esquerda {
  left: -223px;
  top: 19px;
  width: 210px;
  min-height: 230px;
  border-radius: 10px;
  background: linear-gradient(120deg, #ffffff 25% 75%, #ffffff 100%);
  box-shadow: 0 8px 20px rgb(123 47 255 / 43%);
  border: 1px solid rgba(123, 47, 255, 0.815);
  text-align: center;
  padding: 10px 4px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: slideLeft 1s ease 1.8s forwards;
}

.home-rcs-esquerda-imagens {
  position: relative;
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
}

.home-rcs-esquerda-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.home-rcs-esquerda-item.ativa {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* === TEXTO INTERNO === */
.home-rcs-card-esquerda-titulo {
  font-size: 16px;
  color: #0f172a;
  font-weight: 500;
}

/* Título */
.home-rcs-card-esquerda-titulo h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #050505;
}

.tituloNome-rcs-cardEsquerdo {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Parágrafo */
.home-rcs-card-esquerda-titulo p {
  font-size: 17px;
  line-height: 1.3;
  color: #000000;
  opacity: 0.85;
  font-weight: 600;
  margin: 0;
}

/* Palavras destacadas */
.home-rcs-card-esquerda-titulo strong {
  font-weight: 800;
}

/* ====== CARD BASE ====== */
.rcs-home-verificado-card {
  position: absolute;
  right: -230px;
  top: 61px;
  width: 200px;
  min-height: 230px;
  border-radius: 10px;
  background: linear-gradient(120deg, #ffffff 25% 75%, #ffffff 100%);
  box-shadow: 0 8px 20px rgb(123 47 255 / 86%);
  border: 1px solid rgba(123, 47, 255, 0.815);
  text-align: center;
  padding: 20px 3px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: rcsSlideRight 1s ease-in-out 2s forwards;
}

/* ====== WRAPPER DAS LOGOS ====== */
.rcs-home-verificado-wrapper {
  position: relative;
  width: 95px;
  height: 95px;
  margin-bottom: 10px;
}

/* ====== LOGOS ====== */
.rcs-home-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.2s ease-in-out,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 1.4s ease-in-out;
}

.rcs-home-logo.ativa {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 5px rgba(58, 198, 255, 0.35));
}

/* ====== TEXTO ====== */
.rcs-home-verificado-texto {
  margin-top: 12px;
  font-size: 16px;
  color: #0f172a;
  font-weight: 500;
  line-height: 1.3;
}

.rcs-home-verificado-texto strong {
  font-weight: 600;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.rcs-hero-google {
  background: linear-gradient(90deg,
      #4285f4 0%,
      /* Azul Google */
      #ea4335 25%,
      /* Vermelho */
      #fbbc05 50%,
      /* Amarelo */
      #34a853 80%
      /* Verde */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(66, 133, 244, 0.3);
  letter-spacing: 0.3px;
}

/* ====== CORES ====== */
.rcs-color-google {
  color: #4285f4;
  font-weight: 700;
  font-size: 20px;
}

.rcs-color-vivo {
  color: #7b2fff;
  font-weight: 700;
  font-size: 20px;
}

.rcs-color-tim {
  color: #0046ad;
  font-weight: 700;
  font-size: 20px;
}

.rcs-color-claro {
  color: #e60000;
  font-weight: 700;
  font-size: 20px;
}

/* ====== ANIMAÇÕES ====== */
@keyframes rcsLogoFloat {
  0% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.03) translateY(-5px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes rcsSlideRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ====== CURSOR ANIMADO (MOUSE) ====== */
#rcs-mouse-cursor {
  transition: top 0.6s ease, left 0.6s ease, transform 0.12s ease,
    opacity 0.2s ease;
}

#rcs-mouse-cursor.rcs-click {
  transform: scale(0.9);
}

/* Clone visual que "viaja" do card até o celular */
.rcs-clone-animado {
  position: absolute;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: top 0.6s ease, left 0.6s ease, opacity 0.3s ease,
    transform 0.6s ease;
}

/* Destinos no celular começam invisíveis; são ativados via JS */
.conv-logo,
.titulo-app.conv-nome,
.appbar .acoes .btn-ico[title="Verificado"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* =====================================================================
   ANIMAÇÕES GLOBAIS
   ===================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* (movido para `tela-home.css`) */

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes apontarDescer {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(6px) rotate(-3deg);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 800;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* =======================================================
   LINHAS GERAIS
   ======================================================= */
.linha-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
  isolation: isolate;
}

.linha-fundo path {
  stroke: #ffffffe8;
  stroke-width: 80;
  stroke-linecap: butt;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  transition: all 0.3s ease;
}

/* =======================================================
    SEÇÃO 1
   ======================================================= */
.linha1-section1 {
  transform: translateY(-30vh);
}

/* =======================================================
   SEÇÃO 2
   ======================================================= */
.linha2-section2 {
  transform: translateY(-40vh);
}

/* =======================================================
   SEÇÃO 3
   ======================================================= */
.linha1-section3 {
  transform: translateY(-30vh);
}

.rcs-sections-wrapper {
  background-color: transparent;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.332));
}

.rcs-section3-button {
  text-align: center;
}

.rcs-section3-button a {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

/* =======================================================
   RESPONSIVIDADE - MEDIA QUERIES
   ======================================================= */

/* Acessibilidade: reduzir movimento para usuários com sensibilidade */
@media (prefers-reduced-motion: reduce) {
  .rcs-section1-text {
    transition: opacity 0.4s linear;
    transform: none;
  }

  .rcs-section2-text {
    transition: opacity 0.4s linear;
    transform: none;
  }

  .rcs-section3-text {
    transition: opacity 0.4s linear;
    transform: none;
  }
}

/* Telas muito grandes (1920px+) */
@media (min-width: 2150px) {
  .linha-fundo path {
    stroke-width: 60;
  }

  .linha1-section1 {
    transform: translateY(-30vh);
  }

  .linha2-section2 {
    transform: translateY(-40vh);
  }

  .linha1-section3 {
    transform: translateY(-20vh);
  }
}

@media (min-width: 1920px) and (max-width: 2149px) {
  .linha-fundo path {
    stroke-width: 60;
  }

  .linha1-section1 {
    transform: translateY(-35vh);
  }

  .linha2-section2 {
    transform: translateY(-55vh);
  }

  .linha1-section3 {
    transform: translateY(-35vh);
  }
}

/* Telas grandes (1700px - 1919px) */
@media (min-width: 1700px) and (max-width: 1919px) {
  .linha-fundo path {
    stroke-width: 55;
  }

  .linha1-section1 {
    transform: translateY(-40vh);
  }

  .linha2-section2 {
    transform: translateY(-60vh);
  }

  .linha1-section3 {
    transform: translateY(-40vh);
  }
}

/* Telas médias-grandes (1400px - 1699px) */
@media (min-width: 1400px) and (max-width: 1699px) {
  .linha-fundo path {
    stroke-width: 80;
  }

  .linha1-section1 {
    transform: translateY(-50vh);
  }

  .linha2-section2 {
    transform: translateY(-60vh);
  }

  .linha1-section3 {
    transform: translateY(-50vh);
  }
}

/* Telas médias-pequenas (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .linha-fundo path {
    stroke-width: 115;
  }

  .linha1-section1 {
    transform: translateY(-55vh);
  }

  .linha2-section2 {
    transform: translateY(-65vh);
  }

  .linha1-section3 {
    transform: translateY(-55vh);
  }

  .rcs-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .linha-fundo path {
    stroke-width: 110;
  }

  .linha1-section1 {
    transform: translateY(-80vh);
  }

  .linha2-section2 {
    transform: translateY(-95vh);
  }

  .linha1-section3 {
    transform: translateY(-100vh);
  }

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

  .home-rcs-card-esquerda {
    left: -180px;
    top: 30px;
  }

  .home-rcs-card-direita {
    right: -180px;
    top: 40px;
  }
}

/* Mobile (abaixo de 768px) */
@media (max-width: 775px) {
  .rcs-section1-phone-col .telefone-sim {
    right: 0;
  }

  .rcs-section3-phone-col .telefone-sim {
    left: 0;
  }

  .rcs-section3-text {
    margin-top: 30px;
  }

  .rcs-section3-left-1 {
    right: auto;
    left: -85%;
    width: 140vw;
    height: 65%;
  }

  .rcs-section3-left {
    right: auto;
    left: -75%;
    width: 130vw;
    height: 65%;
  }

  .rcs-section3-right {
    left: 45%;
    width: 130vw;
    height: 65%;
  }
}

@media (max-width: 767px) {
  .linha-fundo {
    display: none;
  }

  .rcs-sections-wrapper {
    background-color: transparent !important;
  }

  .rcs-section1-phone-col .telefone-sim {
    right: 0;
  }

  .rcs-section3-phone-col .telefone-sim {
    left: 0;
  }

  .rcs-section3-left-1 {
    top: 31.5%;
    right: auto;
    left: -45%;
    width: 140vw;
    height: 37%;
  }

  .rcs-section3-left {
    top: 31.5%;
    left: -35%;
    width: 130vw;
    height: 37%;
  }

  .rcs-section3-right {
    top: 30.9%;
    left: 5%;
    width: 130vw;
    height: 37%;
  }
}

@media (max-width: 620px) {
  .rcs-section3-left-1 {
    right: auto;
    left: -50%;
  }

  .rcs-section3-left {
    left: -40%;
    height: 36%;
  }

  .rcs-section3-right {
    left: 10%;
  }
}

@media (max-width: 576px) {
  .rcs-info-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Ajuste responsivo dedicado da seção "O que é RCS" */
@media (max-width: 991px) {
  .rcs-info {
    padding: 72px 0;
  }

  .rcs-info-title {
    font-size: clamp(2rem, 6.2vw, 2.55rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .rcs-info-desc {
    max-width: 92%;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 767px) {
  .rcs-info {
    padding: 58px 0;
  }

  .rcs-info-cards {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 0 12px;
    max-width: 100%;
  }

  .rcs-info-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .rcs-info-card h4 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .rcs-info-card p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .rcs-section3-left-1 {
    left: -45%;
    height: 36%;
    top: 31%;
  }

  .rcs-section3-left {
    top: 30%;
    left: -35%;
    height: 34%;
  }

  .rcs-section3-right {
    top: 29%;
    left: 5%;
    height: 34%;
  }
}

@media (max-width: 430px) {
  .rcs-section3-right {
    top: 28%;
    left: 5%;
    height: 34%;
  }

  .rcs-section3-left {
    top: 29%;
    left: -35%;
    height: 34%;
  }
}

@media (max-width: 421px) {
  .rcs-section3-left-1 {
    top: 30%;
    left: -45%;
    height: 35%;
  }

  .rcs-section3-left {
    left: -35%;
    top: 30%;
    height: 35%;
  }

  .rcs-section3-right {
    left: 5%;
    height: 35%;
    top: 29%;
  }
}

@media (max-width: 414px) {
  .rcs-section3-left-1 {
    top: 29%;
    left: -45%;
    height: 32%;
  }

  .rcs-section3-left {
    left: -35%;
    top: 29%;
    height: 35%;
  }

  .rcs-section3-right {
    left: 5%;
    height: 32%;
    top: 28%;
  }
}

@media (max-width: 398px) {
  .rcs-section3-left {
    left: -35%;
    top: 28%;
    height: 31%;
  }
}

@media (max-width: 380px) {
  .rcs-section3-left-1 {
    top: 28%;
    left: -45%;
    height: 27%;
  }

  .rcs-section3-right {
    left: 5%;
    height: 28%;
    top: 28%;
  }

  .rcs-section3-left {
    top: 28%;
    left: -35%;
    height: 28%;
  }
}

@media (max-width: 360px) {
  .rcs-section3-left-1 {
    top: 28%;
    left: -45%;
    height: 27%;
  }

  .rcs-section3-right {
    left: 5%;
    height: 27%;
    top: 26%;
  }

  .rcs-section3-left {
    top: 26%;
    left: -35%;
    height: 22%;
  }
}