/* =====================
   VARIÁVEIS DE CORES
   ===================== */
:root {
  --azul-principal: #0078B9;
  --azul-escuro: #005f8e;
  --cinza-claro: #EBEBEB;
  --cinza-escuro: #232b3b;
  --fundo-modal: #FFFFFF;
  --borda-modal: #0078B9;
  --texto-principal: #222;
  --preto: #000a;
  --azul-medio: #339BD3;
  --azul-claro: #6AB6DF;
  --azul-destaque: #56BFF9;
  --fundo-formulario: #31637B;
}

/* === ESTILO EXCLUSIVO PARA O SELECT DE INDICAÇÃO === */
#indicacao.select-indicacao {
  background: linear-gradient(135deg, rgba(255,255,255,0.32) 80%, rgba(52,155,211,0.10) 100%) !important;
  color: #265066 !important;
  border: 3px solid var(--azul-principal) !important;
  border-radius: 8px !important;
  font-size: 1.18rem !important;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
  font-weight: 600 !important;
  padding: 0 22px !important;
  height: 54px !important;
  margin-bottom: 18px !important;
  box-shadow: 0 2px 12px var(--azul-principal)22 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  transition: border 0.22s, box-shadow 0.22s, background 0.22s, color 0.22s !important;
  outline: none !important;
  cursor: pointer !important;
}
#indicacao.select-indicacao:focus, #indicacao.select-indicacao:hover {
  background: #fff !important;
  color: #265066 !important;
  border: 3px solid var(--azul-destaque) !important;
  box-shadow: 0 4px 18px var(--azul-principal)33, 0 0 0 2px var(--azul-medio)33 !important;
}
#indicacao.select-indicacao option {
  background: #fff !important;
  color: #265066 !important;
  font-weight: 600 !important;
  font-size: 1.12rem !important;
}
#indicacao.select-indicacao {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%230078B9" height="32" viewBox="0 0 24 24" width="32" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 32px 32px !important;
}
@media (max-width: 600px) {
  #indicacao.select-indicacao {
    font-size: 1rem !important;
    padding: 0 12px !important;
    height: 44px !important;
  }
}

/* === SELECT CUSTOMIZADO DE INDICAÇÃO === */
.custom-select-indicacao {
  width: 100%;
  position: relative;
  background: #fff;
  border: 2px solid var(--azul-principal);
  border-radius: 6px;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  color: #265066;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px var(--azul-principal)11;
  cursor: pointer;
  min-height: 48px;
  padding: 0 44px 0 18px;
  display: flex;
  align-items: center;
  transition: border 0.22s, box-shadow 0.22s, background 0.22s, color 0.22s;
}
.custom-select-selected {
  flex: 1;
  user-select: none;
  outline: none;
  color: #265066;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.custom-select-indicacao::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  border: solid var(--azul-principal);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 7px;
  pointer-events: none;
  transition: transform 0.22s;
}
.custom-select-indicacao.open::after {
  transform: translateY(-50%) rotate(135deg);
}
.custom-select-options {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border: 2px solid var(--azul-principal);
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 32px var(--azul-principal)1a;
  z-index: 10;
  max-height: 260px;
  overflow-y: auto;
  animation: fadeInSelect 0.18s;
}
@keyframes fadeInSelect {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.custom-select-option {
  padding: 16px 22px;
  font-size: 1.12rem;
  color: #265066;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #eaf6fc;
  transition: background 0.18s, color 0.18s;
}
.custom-select-option:last-child {
  border-bottom: none;
}
.custom-select-option.selected {
  background: var(--azul-principal);
  color: #fff;
}
.custom-select-option:hover:not(.selected) {
  background: #eaf6fc;
  color: #265066;
}
@media (max-width: 600px) {
  .custom-select-indicacao {
    font-size: 1rem;
    padding: 0 32px 0 12px;
    min-height: 44px;
  }
  .custom-select-option {
    font-size: 1rem;
    padding: 12px 12px;
  }
}

/* =====================
   BASE GLOBAL
   ===================== */
body {
  background: var(--fundo-formulario);
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
h2 {
  color: var(--azul-principal);
}
input, select, button, h1, h2, h3, h4, h5, h6, label {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

/* =====================
   FORMULÁRIO PRINCIPAL
   ===================== */
form {
  background: var(--fundo-modal);
  padding: 32px;
  border-radius: 16px;
  max-width: 800px;
  margin: 32px auto;
  box-shadow: 0 4px 24px var(--azul-principal)1a;
}
form#cotacaoForm, .form-card {
  background: #339BD3;
  border-radius: 0 0 18px 18px;
  max-width: 600px;
  margin: 0 auto 32px auto;
  box-shadow: none;
  border: none;
  padding: 28px 24px 20px 24px;
}
label, .form-card label, .form-card h3, .form-card h2, .form-card h1 {
  color: #fff;
  font-weight: 600;
}
input, select, button, .operadora-card {
  background: #fff;
  color: #339BD3;
  border: none;
  box-shadow: none;
}
input, select {
  margin-bottom: 18px;
}
.tipo-btn, .copart-btn {
  background: #fff;
  color: #339BD3;
  border: 2px solid #339BD3;
  font-weight: bold;
}
.tipo-btn.selected, .tipo-btn:hover, .copart-btn.selected, .copart-btn:hover {
  background: #339BD3;
  color: #fff;
  border: 2px solid #fff;
}
.operadora-card {
  border-radius: 12px;
  box-shadow: none;
  border: none;
  margin: 8px;
}
input[type="number"], input[type="text"], input[type="email"] {
  width: 100%;
  box-sizing: border-box;
}
input:focus, select:focus, button:focus {
  outline: none;
  border: 2px solid var(--azul-principal);
  box-shadow: 0 0 0 2px var(--azul-medio)33;
}

/* =====================
   BOTÕES GERAIS
   ===================== */
button {
  font-weight: bold;
  cursor: pointer;
  margin-top: 12px;
  background: var(--azul-principal);
  color: #fff;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px var(--azul-principal)33;
}
button:hover, .tipo-btn.selected, .copart-btn.selected {
  background: var(--azul-medio);
  color: #fff;
}

/* =====================
   MODAL DE FAIXAS ETÁRIAS
   ===================== */
#faixasBackdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
#faixasModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: var(--fundo-modal);
  color: var(--texto-principal);
  padding: 28px 32px 20px 32px;
  border-radius: 14px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 380px;
  max-width: 96vw;
  border: none;
}
#faixasModal h3 {
  color: var(--texto-principal);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: left;
  padding: 0;
}
#faixasForm {
  margin: 0;
  padding: 0;
  color: var(--cinza-escuro);
  border: none;
}
#faixasForm .faixas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 12px;
  margin-bottom: 16px;
}
#faixasForm .faixa-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cinza-escuro);
}
#faixasForm .faixa-item label {
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: var(--cinza-escuro);
}
#faixasForm input[type="number"] {
  border: none;
  background: #f4f6fa;
  box-shadow: 0 0 0 1px #e0e6ed;
  padding: 6px 8px;
  min-width: 48px;
  max-width: 70px;
  font-size: 1rem;
}
#faixasForm input[type="number"]:focus {
  box-shadow: 0 0 0 2px var(--azul-principal);
  background: #fff;
}
#faixasForm .faixas-btns {
  gap: 8px;
  margin-top: 10px;
}
#faixasForm button:first-child {
  background: var(--azul-principal) !important;
  color: #fff !important;
  border: none !important;
  font-weight: bold;
  box-shadow: none;
  border-radius: 6px;
  padding: 10px 24px;
  transition: none;
}
#faixasForm button:first-child:hover,
#faixasForm button:first-child:focus {
  background: var(--azul-principal) !important;
  color: #fff !important;
}
#faixasForm button[type="button"]:last-child {
  background: #f4f6fa;
  color: var(--azul-principal);
  border: none;
  font-weight: bold;
  box-shadow: none;
  border-radius: 6px;
  padding: 10px 24px;
  transition: color 0.2s;
}
#faixasForm button[type="button"]:last-child:hover,
#faixasForm button[type="button"]:last-child:focus {
  color: var(--azul-escuro);
  background: #f4f6fa;
}
@media (max-width: 700px) {
  #faixasModal {
    min-width: 90vw;
    padding: 16px 4vw 12px 4vw;
  }
  #faixasForm .faixas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
}
}

/* =====================
   BOTÕES ESPECIAIS
   ===================== */
.tipo-pessoa-btns {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 8px;
  justify-content: center;
}
.tipo-btn {
  flex: 1 1 0;
  min-width: 0;
  background: #339BD3 !important;
  color: #fff !important;
  border: 1.5px solid #fff !important;
  border-radius: 0 !important;
  padding: 18px 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: none;
  text-align: center;
  outline: none;
  width: 33.33%;
  max-width: 33.33%;
}
.tipo-btn.selected {
  background: #fff !important;
  color: var(--azul-principal) !important;
  border: none !important;
  box-shadow: 0 2px 8px var(--azul-principal)33;
}
.tipo-btn:not(.selected):hover {
  background: #56BFF9 !important;
  color: #fff !important;
  border: 1.5px solid #fff !important;
}
.copart-btn {
  background: #fff;
  color: var(--azul-principal);
  border: 1.5px solid var(--azul-medio);
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 8px;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px var(--azul-principal)1a;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}
.copart-btn.selected, .copart-btn:hover {
  background: var(--azul-principal);
  color: #fff;
  border: 1.5px solid var(--azul-medio);
  box-shadow: 0 2px 8px var(--azul-principal)33;
}

/* =====================
   OUTROS COMPONENTES (operadoras, tooltip, etc)
   ===================== */
.operadoras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  justify-content: center;
  max-width: 100%;
}
.operadora-card {
  background: #fff;
  border: 2px solid var(--azul-medio);
  border-radius: 14px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 90px;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s, transform 0.18s cubic-bezier(.4,1.3,.6,1);
  box-shadow: 0 2px 8px var(--azul-principal)1a;
}
.operadora-card:hover {
  border: 2.5px solid var(--azul-escuro);
  background: #eaf6fc;
  box-shadow: 0 6px 24px var(--azul-principal)44, 0 2px 12px var(--azul-principal)1a;
  transform: scale(1.06);
  z-index: 2;
}
.operadora-card.selected {
  border: 2.5px solid var(--azul-medio);
  background: var(--azul-principal);
  color: #fff;
  box-shadow: 0 4px 16px var(--azul-principal)44;
}
.operadora-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 0;
  background: #fff;
  border-radius: 8px;
}
.operadora-card span {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

/* Tooltip customizado bonito */
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 220px;
  max-width: 320px;
  background: linear-gradient(135deg, var(--azul-principal) 80%, var(--azul-escuro) 100%);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  border: 1.5px solid var(--borda-modal);
  padding: 16px 22px;
  position: absolute;
  z-index: 10;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%) scale(0.98);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,1.3,.6,1), transform 0.35s cubic-bezier(.4,1.3,.6,1);
  box-shadow: 0 8px 32px var(--azul-principal)1a, 0 1.5px 0 #fff2 inset;
  font-size: 1.08rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px var(--azul-principal)33);
  text-shadow: 0 1px 8px var(--azul-escuro)44, 0 0 2px #fff2;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}
.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: var(--azul-principal) transparent transparent transparent;
  filter: drop-shadow(0 2px 4px var(--azul-principal)1a);
}

/* =====================
   RESPONSIVIDADE
   ===================== */
@media (max-width: 480px) {
  #faixasModal {
    min-width: 90vw;
    padding: 0;
  }
  #faixasForm {
    padding: 12px 4px 8px 4px;
  }
  #faixasForm input[type="number"] {
    width: 60px;
    font-size: 1rem;
  }
  #faixasForm label {
    font-size: 0.98rem;
    gap: 8px;
  }
}

#resposta {
  background: #f4f8fb;
  color: #0078B9;
  padding: 12px;
  border-radius: 8px;
  margin-top: 24px;
  white-space: pre-wrap;
  border: 1.5px solid #0078B9;
}

#sucessoBackdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}
#sucessoModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px 48px 32px 48px;
  border-radius: 18px;
  z-index: 2100;
  box-shadow: 0 4px 32px #000a;
  min-width: 320px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#sucessoModal h3 {
  color: #0078B9;
  font-size: 2rem;
  margin-bottom: 12px;
  text-align: center;
  font-weight: bold;
}
#sucessoModal p {
  color: #222;
  font-size: 1.2rem;
  max-width: 420px;
  text-align: center;
}
#sucessoModal img {
  width: 90px;
  margin-bottom: 24px;
  display: block;
}
#fecharSucesso {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f4f8fb;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #0078B9;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0078b933;
  padding: 2px 10px 2px 10px;
  transition: background 0.2s, color 0.2s;
}
#fecharSucesso:hover {
  background: #0078B9;
  color: #fff;
}
@media (max-width: 480px) {
  #sucessoModal {
    min-width: 90vw;
    max-width: 98vw;
    padding: 16px 4vw 12px 4vw;
  }
  #sucessoModal h3 {
    font-size: 1.2rem;
  }
  #sucessoModal img {
    width: 60px;
    margin-bottom: 16px;
  }
}

input, select, button, .form-card, .operadora-card, .copart-btn, #faixasForm input[type="number"], #faixasForm button[type="button"]:last-child {
  background: #fff;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 0;
}

.form-top-img {
  width: 100%;
  max-width: 600px;
  display: block;
}

.form-card {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 28px 24px 20px 24px;
  margin-top: 0;
  margin-bottom: 32px;
  box-sizing: border-box;
}

@media (max-width: 650px) {
  .form-container, .form-top-img, .form-card {
    max-width: 98vw;
  }
  .form-card {
    padding: 14px 2vw 10px 2vw;
  }
}

.form-topo {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 0 auto;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.form-topo-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: block;
}
.form-topo-texto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 32px 18px 32px;
  color: #fff;
  z-index: 2;
  background: linear-gradient(180deg, rgba(38,80,102,0.7) 0%, rgba(38,80,102,0.2) 60%, rgba(38,80,102,0.0) 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.form-topo-texto h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
  color: #fff;
}
.form-topo-texto .destaque {
  color: var(--azul-claro);
  font-weight: 700;
}
.form-topo-texto p {
  font-size: 1rem;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

form#cotacaoForm {
  background: var(--azul-medio);
  border-radius: 0 0 18px 18px;
  max-width: 600px;
  margin: 0 auto 32px auto;
  box-shadow: 0 4px 24px var(--azul-principal)1a;
  border: none;
  padding: 28px 24px 20px 24px;
}

form#cotacaoForm label {
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 16px;
  display: block;
  text-align: left;
}
form#cotacaoForm input[type="text"],
form#cotacaoForm input[type="email"],
form#cotacaoForm input[type="number"] {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.26);
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  color: #265066;
  padding: 0 16px;
  margin-bottom: 18px;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  box-sizing: border-box;
  box-shadow: none;
}

@media (max-width: 600px) {
  .tipo-pessoa-btns {
    flex-direction: column;
    gap: 10px;
  }
  .tipo-btn {
    padding: 14px 0;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
  }
}

.tipo-pessoa-btns > .tooltip {
  flex: 1 1 0;
  min-width: 0;
  width: 33.33%;
  max-width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tipo-pessoa-btns .tipo-btn {
  width: 100%;
  max-width: 100%;
}

.valores-grid {
  display: flex;
  gap: 18px;
  width: 100%;
  margin: 24px 0 18px 0;
}
.valor-box {
  flex: 1 1 0;
  background: #6AB6DF;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 2px 12px #0078b91a;
}
.valor-header {
  background: #fff;
  color: var(--azul-principal);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  padding: 14px 0 10px 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.valor-input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  padding: 32px 0 28px 0;
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.valor-input::placeholder {
  color: #eaf6fc;
  opacity: 1;
}
@media (max-width: 700px) {
  .valores-grid {
    flex-direction: column;
    gap: 12px;
  }
  .valor-input {
    font-size: 1.3rem;
    padding: 18px 0 14px 0;
  }
}

.possui-plano-btns {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 18px;
}
.possui-btn {
  flex: 1 1 0;
  min-width: 0;
  background: #339BD3;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 18px 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: none;
  text-align: center;
  outline: none;
  width: 50%;
  max-width: 50%;
}
.possui-btn.selected {
  background: #fff;
  color: var(--azul-principal);
  border: none;
  box-shadow: 0 2px 8px var(--azul-principal)33;
}
.possui-btn:not(.selected):hover {
  background: #56BFF9;
  color: #fff;
  border: 2px solid #fff;
}
@media (max-width: 600px) {
  .possui-plano-btns {
    flex-direction: column;
  }
  .possui-btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 0;
    font-size: 1rem;
  }
}

#plano_atual {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.26);
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  color: #265066;
  padding: 0 16px;
  margin-bottom: 18px;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  box-sizing: border-box;
  box-shadow: none;
}
#planoAtualDiv label {
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 8px;
  display: block;
  text-align: left;
}

.coparticipacao-btns {
  width: 100%;
  margin-bottom: 18px;
}
.copart-row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.copart-row .copart-btn {
  width: 50%;
  max-width: 50%;
  margin-top: 0;
}
.copart-btn {
  background: #339BD3;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 18px 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: none;
  text-align: center;
  outline: none;
  margin-bottom: 0;
}
.copart-btn.selected {
  background: #fff;
  color: var(--azul-principal);
  border: none;
  box-shadow: 0 2px 8px var(--azul-principal)33;
}
.copart-btn:not(.selected):hover {
  background: #56BFF9;
  color: #fff;
  border: 2px solid #fff;
}
.coparticipacao-btns .copart-btn[data-value="indiferente"] {
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .copart-row {
    flex-direction: column;
    gap: 10px;
  }
  .copart-row .copart-btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 0;
    font-size: 1rem;
  }
  .coparticipacao-btns .copart-btn[data-value="indiferente"] {
    padding: 14px 0;
    font-size: 1rem;
  }
}

.faixas-btn {
  width: 75%;
  background: #fff;
  color: var(--azul-principal);
  font-weight: bold;
  font-size: 1.18rem;
  border: none;
  border-radius: 0;
  padding: 18px 0;
  margin: 28px 0 18px 0;
  box-shadow: 0 2px 12px #0078b91a;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  display: block;
}
.faixas-btn:hover, .faixas-btn:focus {
  background: var(--azul-claro);
  color: #fff;
  box-shadow: 0 4px 18px #0078b933;
}

form#cotacaoForm button[type="submit"] {
  background: #fff;
  color: var(--azul-principal);
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px var(--azul-principal)22;
  border: 2px solid var(--azul-principal);
  margin-top: 18px;
  padding: 16px 0;
  width: 100%;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
form#cotacaoForm button[type="submit"]:hover,
form#cotacaoForm button[type="submit"]:focus {
  background: var(--azul-escuro);
  color: #fff;
  border: 2px solid var(--azul-escuro);
  box-shadow: 0 4px 18px var(--azul-principal)33;
}

.sucesso-gif-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.sucesso-gif {
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .sucesso-gif {
    width: 60px;
    height: 60px;
  }
  .sucesso-gif-container {
    margin-bottom: 12px;
  }
}

.label-indicacao {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.form-card .custom-select-indicacao {
  background: #fff !important;
  border: 2px solid var(--azul-principal) !important;
  border-radius: 6px !important;
  font-size: 1.15rem !important;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
  font-weight: 600 !important;
  color: #265066 !important;
  box-shadow: 0 2px 8px var(--azul-principal)11 !important;
  min-height: 48px !important;
  padding: 0 44px 0 18px !important;
  display: flex !important;
  align-items: center !important;
}
.form-card .custom-select-selected {
  color: #265066 !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
}
.form-card .custom-select-options {
  background: #fff !important;
  border: 2px solid var(--azul-principal) !important;
  border-top: none !important;
  border-radius: 0 0 6px 6px !important;
  box-shadow: 0 8px 32px var(--azul-principal)1a !important;
}
.form-card .custom-select-option {
  color: #265066 !important;
  font-size: 1.12rem !important;
  font-weight: 600 !important;
  background: #fff !important;
  border-bottom: 1px solid #eaf6fc !important;
}
.form-card .custom-select-option.selected {
  background: var(--azul-principal) !important;
  color: #fff !important;
}
.form-card .custom-select-option:hover:not(.selected) {
  background: #eaf6fc !important;
  color: #265066 !important;
}

#indicacaoCustom.custom-select-indicacao {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 18px !important;
  padding: 0 18px 0 18px !important;
  background: #FFF !important;
  color: #265066 !important;
  border: 3px solid var(--azul-principal) !important;
  border-radius: 8px !important;
  font-size: 1.18rem !important;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
  font-weight: 600 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  transition: border 0.22s, box-shadow 0.22s, background 0.22s, color 0.22s !important;
  outline: none !important;
  cursor: pointer !important;
}
#indicacaoCustom.custom-select-indicacao:focus, #indicacaoCustom.custom-select-indicacao:hover {
  background: #fff !important;
  color: #265066 !important;
  border: 3px solid var(--azul-destaque) !important;
  box-shadow: 0 4px 18px var(--azul-principal)33, 0 0 0 2px var(--azul-medio)33 !important;
}
#indicacaoCustom.custom-select-indicacao option {
  background: #fff !important;
  color: #265066 !important;
  font-weight: 600 !important;
  font-size: 1.12rem !important;
}
#indicacaoCustom.custom-select-indicacao {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%230078B9" height="32" viewBox="0 0 24 24" width="32" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 32px 32px !important;
}
@media (max-width: 600px) {
  #indicacaoCustom.custom-select-indicacao {
    font-size: 1rem !important;
    min-height: 44px !important;
    padding: 0 10px 0 10px !important;
  }
}

#indicacaoCustom.custom-select-indicacao, 
#indicacaoCustom .custom-select-selected, 
#indicacaoCustom .custom-select-option {
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  color: #31637B !important;
}
#indicacaoCustom .custom-select-option.selected {
  background: var(--azul-principal) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
#indicacaoCustom .custom-select-option:hover:not(.selected) {
  background: #eaf6fc !important;
  color: #265066 !important;
}

#indicacaoCustom .custom-select-options {
  max-height: none !important;
  overflow-y: visible !important;
}
#indicacaoCustom .custom-select-option {
  padding: 10px 18px !important;
}
