/* =========================
   RESET GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

/* =========================
   BODY
========================= */
body {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
              url("assets/img/bg-gringa.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* =========================
   CONTAINER
========================= */
.container {
  background: #ffffff;
  max-width: 420px;
  width: 100%;
  border-radius: 26px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

/* =========================
   LOGO
========================= */
.logo {
  width: 110px;
  margin-bottom: 20px;
}

/* =========================
   TEXTOS
========================= */
h1 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: .9rem;
  color: #666;
  margin-bottom: 22px;
}

/* =========================
   INPUTS PADRÃO
========================= */
input[type="text"],
input[type="email"] {
  width: 100%;
  height: 52px;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  font-size: 16px; /* mantém padrão iOS */
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}

/* =========================
   CORREÇÃO DEFINITIVA iOS - WHATSAPP
========================= */
input[type="tel"] {
  width: 100%;
  height: 52px;               /* FORÇA ALTURA */
  padding: 14px;              /* IGUAL AOS OUTROS */
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  font-size: 16px;            /* OBRIGATÓRIO NO iOS */
  line-height: 1.2;
  background: #fff;

  /* RESET TOTAL SAFARI */
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
}

/* =========================
   INPUT FOCUS
========================= */
input:focus {
  border-color: #111;
  outline: none;
}

/* =========================
   FILE INPUT (PADRÃO NATIVO)
========================= */
.file-label {
  display: block;
  text-align: left;
  font-size: .75rem;
  font-weight: 500;
  margin: 10px 0 4px;
  color: #444;
}

input[type="file"] {
  width: 100%;
  margin-bottom: 12px;
  font-size: .85rem;
}

/* =========================
   LGPD SANFONA
========================= */
.lgpd-accordion {
  text-align: left;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 12px;
  font-size: .75rem;
  color: #555;
  margin: 16px 0;
}

.lgpd-accordion summary {
  cursor: pointer;
  font-weight: 500;
}

.lgpd-accordion summary::-webkit-details-marker {
  display: none;
}

/* =========================
   BOTÃO
========================= */
button {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: none;
  background: #111;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
}

button:hover {
  opacity: .9;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 480px) {
  .container {
    padding: 26px 22px;
  }
}