iframe {
    width: 100vh;
    height: 800px;
    border: none;
    margin: 0px auto;
}

.footer {
    background-color: #01333f; /* Cor de fundo semelhante à imagem */
    color: #ffffff;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
}

.footer-left, .footer-right {
    max-width: 45%;
}

.footer-contato {
    margin-left: 25px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}
p.grupo-marlin {
    align-items: center;
    margin-top: 10px !important;
}
img.marlin-logo {
    width: 60px;
}

.footer-left p, .footer-right p {
    margin: 5px 0;
    font-size: 14px;
    display: flex;
}

.footer-right .marlin {
    margin-left: 5px;
}

select.form-control {
  width: 100%;
  
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: transparent;

  padding: 8px 4px;
  height: 40px;

  box-shadow: none;
  outline: none;

  
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


.contact-form input.form-control,
.contact-form select.form-control {
  height: 40px;
  font-size: 14px;
  line-height: normal;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}

/* Padroniza input (profissão) com select (renda/patrimônio) */
/* #form-pessoa input.form-control,
#form-pessoa select.form-control {
  height: 40px;
  padding: 4px 4px 2px; 
  line-height: normal;
  box-sizing: border-box;
} */


#form-pessoa input.form-control,
#form-pessoa select.form-control {
  height: 24px;          
  padding: 3px 4px 1px;
  font-size: 14px;
  line-height: normal;
  box-sizing: border-box;
}

/* Reduz apenas o espaçamento vertical entre label e campo */
#form-pessoa.contact-form {
  row-gap: 8px;   /* 🔥 antes era 20px */
  column-gap: 20px;
}

/* Campos desabilitados - padrão igual ao form de contato */
#form-pessoa .form-control:disabled,
#form-pessoa .form-control[disabled] {
  color: #6b6b6b;              /* 🔥 texto legível */
  opacity: 1;                  /* 🔥 remove o "apagado" */
}

/* Placeholder em campo desabilitado */
#form-pessoa .form-control:disabled::placeholder {
  color: #6b6b6b;              /* 🔥 mesmo tom do texto */
  opacity: 1;
}

/* Correção específica para Chrome */
#form-pessoa .form-control:disabled {
  -webkit-text-fill-color: #6b6b6b;
}






.contact-form input.form-control:focus,
.contact-form select.form-control:focus {
  border-bottom: 2px solid #00D1B4;
  outline: none;
}

.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}



/* Placeholder padrão */
.form-control::placeholder {
  color: inherit;
  opacity: 1;
}

/* Input desabilitado */
.form-control:disabled {
  color: #adb5bd;              /* mesma cor do select disabled */
  background-color: #e9ecef;   /* opcional, padrão visual */
}

/* Placeholder do input desabilitado */
.form-control:disabled::placeholder {
  color: #adb5bd;  /* igual ao texto do select disabled */
  opacity: 1;
}


.typeahead-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* segurança extra */
.typeahead-list li::marker {
  content: none;
}

#form-pessoa .typeahead-list,
#form-pessoa .typeahead-list li {
  text-align: left;
}




body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f8fb; /* Cor de fundo */
    color: #333;
    height: 100vh;
    text-align: center;
}

.header {
    padding: 40px 20px;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}



.header-logo {
    width: 150px; /* Ajuste o tamanho do logo */
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333; /* Cor do texto "Olá, João!" */
    margin: 10px 0;
}




.dados-container {
    width: 80%;
    padding: 0px 44px;
    margin: 0 auto;
}

.dados-box {
    display: flex;
    flex-direction: column; /* <--- importante: empilha header + form */
    align-items: stretch;   /* garante que ocupe a largura disponível */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 25px;
    max-width: 100%;
    gap: 12px; /* pequeno espaçamento entre header e form */
}

.contact-header .title {
  display: flex;
  align-items: center; /* alinha ícone e texto verticalmente */
  gap: 12px;
}



/* .dados-box {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    margin-bottom: 25px;
    max-width: 100%;
} */

.icon {
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f0f4ff; /* Fundo do ícone */
    border-radius: 50%;
}

.title {
    display: flex;
}

p.subtitulo {
    text-align: justify;
}

.btn-editar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #006e76; /* Cor do botão */
    color: #ffffff; /* Cor do texto */
    border-radius: 20px !important; /* Bordas arredondadas */
    font-family: Arial, sans-serif;
    font-weight: 500;
    text-decoration: none;
  }
  
  .btn-editar:hover {
    background-color: #004d52; /* Cor ao passar o mouse */
    transform: scale(1.05); /* Efeito de leve crescimento */
  }
  
  .btn-editar:active {
    background-color: #00363c; /* Cor ao clicar */
  }
  
  .iconn {
    width: 16px;
    height: 16px;
    fill: #ffffff; /* Cor do ícone */
  }
  

div#dados-texto {
    text-align: left;
}

.dados-texto p {
    margin: 5px 0;
    font-size: 14px;
    color: #333; /* Texto principal */
}

.dados-texto strong {
    color: #484848; /* Destaque nos títulos */
}

.contact-container {
    max-width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 25px;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
  padding-right: 10px; /* empurra o botão um pouco mais pra direita */
}


/* .contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
} */

.contact-header .icon {
    width: 40px;
    height: 40px;
    background: #f3f7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.contact-header h2 {
    font-size: 16px;
    color: #484848;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-form label {
    font-size: 14px;
    color: #808080;
    margin-bottom: 5px;
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.contact-form input {
    width: 100%;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: none;
}

.contact-form input:focus {
    border-bottom-color: #00D1B4;
    outline: none;
}

.buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-header .buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto; /* força o botão ir pra direita total */
}


.buttons .cancel {
    background: none;
    color: #007bff;
    border: none;
}

.buttons .cancel:hover {
    text-decoration: underline;
}

.buttons .save {
    background: #00D1B4;
    color: white;
}

.buttons .save:hover {
    background: #00D1B4;
}

.button-container {
    text-align: center;
    margin-bottom: 80px;
}

.confirm-button {
    background-color: #00D1B4; /* Verde */
    color: white;
    font-size: 14px;
    padding: 15px 45px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.confirm-button:disabled {
    background-color: #a0a0a0; /* Cinza claro quando desabilitado */
    cursor: not-allowed;
    opacity: 0.6;
}

.confirm-button:hover {
    background-color: #00D1B6; /* Tom mais escuro de verde */
    transform: scale(1.05);
}

.confirm-button:disabled:hover {
    background-color: #a0a0a0; /* Cinza claro quando desabilitado */
    cursor: not-allowed;
    opacity: 0.6;
}

.confirm-button:active {
    background-color: #00D1B4; /* Verde ainda mais escuro */
    transform: scale(0.98);
}




.container {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.phones {
    display: flex;
    gap: 10px;
}

.phones img {
    width: 400px;
    height: auto;
    border-radius: 8px;
}

.content {
    max-width: 550px;
    text-align: left;
}

.content h1 {
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    color: #868585;
    margin-bottom: 20px;
    line-height: 1.5;
}

.qr-codes {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.qr-codes img {
    width: 100px;
}

.download {
    font-size: 14px;
    color: #777;
}

.download strong {
    color: #333;
}

.Alert_Exclamation {
  border: 1px solid #eaeaea;
  background-color: #f7f7f7;
  padding: 10px;
}

.Alert_Exclamation .Text_Attention {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5a5a5a;

}

span.Text_Attention {
    position: relative;
    bottom: 5px;
}

.Alert_Exclamation svg {
    color: #ffa500;
}

.Alert_Exclamation ul {
    list-style-position: inside;
    text-align: justify;
}

.Alert_Exclamation span.descricao {
    text-align: justify;
    display: block;
}

/* --- Estilos específicos para o campo de CPF --- */
#cpf {
    border-bottom: none;       /* Remove a linha inferior */
    background-color: transparent; /* Mantém o fundo igual aos outros campos */
    pointer-events: none;      /* Garante que o campo continue não editável */
}



/* Estilo do overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro com opacidade */
    display: flex;
    flex-direction: column; /* Alinhar texto e spinner verticalmente */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Sobrepõe qualquer elemento */
    visibility: hidden; /* Esconde o overlay inicialmente */
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
  }

  /* Estilo do spinner */
  .spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px; /* Espaço entre o spinner e o texto */
  }

  /* Texto de carregamento */
  .loading-text {
    font-size: 18px;
    color: #ffffff; /* Cor do texto */
    font-family: Arial, sans-serif;
  }

  /* Animação do spinner */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Quando ativo, o overlay aparece */
  #loadingOverlay.active {
    visibility: visible;
    opacity: 1;
  }

  .error {
    color: red;
    font-size: 0.9em;
  }

  .content.error {
    text-align: center;
    max-width: 100%;
}

.content.analisando-doc {
    text-align: center;
    max-width: 100%;
}

.content.analisando-doc h1 {
    font-size: 26px;
}



/* Animação de rotação */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Media query para telas com largura máxima de 600px */
@media (max-width: 600px) {
    iframe {
        width: 50vh;
    }
    .contact-form{
        grid-template-columns: none;
    }
    .footer-left, .footer-right {
        max-width: 100%;
    }
    .footer-contato {
        margin-left: 0px;
    }
    .footer-left p, .footer-right p{
        display: block;
    }
    .footer-content {
        display: block;
    }
    .footer-left {
        display: block;
    }
    .footer-right {
        margin-top: 25px;
    }
    .dados-container{
        padding: 0px 0px;
    }
    .contact-container {
        padding: 12px;
    }
    .dados-box{
        padding: 12px;
    }
    .buttons button{
        padding: 5px 15px;
        font-size: 12px;
    }

    .phones img {
        width: 230px;
        height: auto;
        border-radius: 8px;
    }

    .content.analisando-doc h1 {
        font-size: 20px;
    }
}

div#botao-iframe {
    margin-bottom: 15px;
}

#botao-iframe {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-top: 12px;
  background: #f7f9fa;
  border-radius: 6px;
  padding: 8px 10px;
  display: inline-block;
}

#botao-iframe::before {
  content: "⚠️ ";
}

#botao-iframe a {
  color: #00796b;
  font-weight: 500;
  text-decoration: none;
}

#botao-iframe a:hover {
  text-decoration: underline;
  color: #004d40;
}

/* #botao-iframe {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 16px;
}

#botao-iframe a {
  display: inline-block;
  background-color: #00bfa6;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  transition: background-color 0.2s ease;
}

#botao-iframe a:hover {
  background-color: #009f8a;
} */

/* Estilos para os botões das lojas */
.store-buttons {
    text-align: center;
}

.store-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: scale(1.05);
}

.store-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.store-badge {
    width: 120px; /* Ajuste conforme necessário */
    height: auto;
}