/**
 * ============================================
 * BOTÕES RCS - ESTILOS CONSOLIDADOS
 * ============================================
 * Todos os botões das seções (exceto botões dos telefones)
 * Variáveis CSS root definidas em rcs.css
 */

/* ============================================
   BOTÃO RCS (Header/Nav)
   ============================================ */
:root {
  /* Paleta de Botões Principal */
  --rcs-button-primary-shadow: 0 0px 10px #01ff56;
  --rcs-button-primary-bg: linear-gradient(207deg, #0a9538 0%, #83c44c 100%);
  --rcs-button-primary-bg-hover: linear-gradient(-207deg,
      #0a9538 0%,
      #83c44c 100%);
  --rcs-button-primary-shadow-hover: 0 0px 15px rgba(0, 0, 0, 0.4);

  /* Paleta de Botões Secundária (alternativa) */
  --rcs-button-secondary-shadow: 0 0px 10px #01ffe8;
  --rcs-button-secondary-bg: linear-gradient(31deg, #3edbff 0%, #7e5ce5 100%);
  --rcs-button-secondary-bg-hover: linear-gradient(-31deg,
      #3edbff 0%,
      #7e5ce5 100%);

  --rcs-button-text: #ffffff;
  --rcs-button-text-hover: #000000;

  --rcs-button-border-radius: 12px;
}

.botao-rcs {
  box-shadow: 0 0px 5px #01ff56;
  background: var(--rcs-button-primary-bg);
  border-radius: 12px;
  font-size: 0.9375rem !important;
  padding: 0px 13px !important;
  color: var(--rcs-button-text) !important;
  text-align: center;
  transition: all 0.3s ease;
  top: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.botao-rcs:hover {
  color: var(--rcs-button-text-hover) !important;
  background: var(--rcs-button-primary-bg-hover);
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BOTÃO RCS HOME (Hero)
   ============================================ */
.botao-rcs-home {
  box-shadow: var(--rcs-button-primary-shadow);
  background: var(--rcs-button-primary-bg);
  color: var(--rcs-button-text) !important;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;

}

.botao-rcs-home:hover {
  color: var(--rcs-button-text-hover) !important;
  background: var(--rcs-button-primary-bg-hover);
  box-shadow: var(--rcs-button-primary-shadow-hover);
}

.botao-rcs--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: none;
}

.botao-rcs--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BOTÕES DE COOKIES (Accept/Reject)
   ============================================ */
.reject-btn,
.accept-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.reject-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reject-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.accept-btn {
  background: linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(123, 47, 255, 0.3);
}

.accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 113, 255, 0.4);
}

/* ============================================
   BOTÕES MODAL LGPD
   ============================================ */
.modal-lgpd-cancel {
  background: #636e72;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-lgpd-cancel:hover {
  background: #555;
}

.modal-lgpd-submit {
  background: linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(123, 47, 255, 0.3);
  transition: all 0.3s ease;
}

.modal-lgpd-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 130, 255, 0.4);
}

/* ============================================
   BOTÃO CTA CONCLUSÃO
   ============================================ */
.rcs-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rcs-button-primary-bg);
  color: var(--rcs-button-text);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 40px;
  border-radius: var(--rcs-button-border-radius);
  box-shadow: var(--rcs-button-primary-shadow);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

[data-theme="dark"] .rcs-cta-button {
  box-shadow: 0 0px 25px rgb(138, 92, 246);
}

.rcs-cta-button:hover {
  box-shadow: var(--rcs-button-primary-shadow-hover);
  color: var(--rcs-button-text-hover);
  background: var(--rcs-button-primary-bg-hover);
}

.rcs-cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

.rcs-cta-button svg {
  transition: transform 0.3s ease;
}

.rcs-cta-button:hover svg {
  transform: translateX(8px);
}

/* ============================================
   BOTÃO DEIXAR DEPOIMENTO
   ============================================ */
.botao-deixar-depoimento {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00c7ff;
  color: #ffffff;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.363);
  border: none;
  cursor: pointer;
}

.botao-deixar-depoimento:hover {
  color: #ffffff !important;
  background-color: #0035be;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.712);
  text-decoration: none;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {




  .botao-deixar-depoimento {
    padding: 10px 24px;
    font-size: 16px;
  }

  .reject-btn,
  .accept-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-width: 100px;
  }

  .modal-lgpd-submit,
  .modal-lgpd-cancel {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}