/* ===== ESTILO EMPILHADO REFINADO (07/10) ===== */

body {
  margin: 0;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  background: url('https://www.amorsemdramas.com.br/assets/img/bg-checklist.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.content-wrapper {
  max-width: 600px;
  width: 90%;
  text-align: left;
}

/* --- ELEMENTOS DE TEXTO --- */

.headline-lupa {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #F7E5A3;
  margin: 0 0 15px 0;
}

.destaque {
  font-size: 1.4rem;
  color: #F7E5A3;
  font-weight: bold;
}

.subheadline.destaque {
    font-size: 1.2rem;
    margin: 15px 0;
}

.section-intro {
  font-size: 1.3rem;
  color: #F7E5A3;
  font-weight: bold;
  margin-top: 40px;
  text-align: left;
}

/* --- FORMULÁRIO E BOTÕES --- */

.form-wrapper {
    margin: 15px 0 30px 0; /* Margem superior reduzida */
    width: 100%;
}

.form-input {
  width: 100%;
  padding: 18px 15px; /* Padding vertical aumentado */
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.form-button {
  width: 100%;
  padding: 15px 25px;
  background-color: #F7E5A3;
  color: #333;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.form-button:hover {
    transform: scale(1.02);
}

.form-subtext {
    font-size: 0.8em;
    text-align: center;
    margin-top: 10px;
    color: #ddd;
}

/* --- MOCKUP E PROVA SOCIAL --- */

.mockup {
  display: block;
  max-width: 300px;
  width: 80%;
  height: auto;
  margin: 30px auto;
}

.quote {
  font-style: italic;
  padding: 15px;
  margin: 15px 0;
  border-left: 3px solid #F7E5A3;
  background-color: rgba(0,0,0,0.1);
}

/* --- CTA SECUNDÁRIO --- */

.secondary-cta {
    margin-top: 40px;
    text-align: center;
}

.secondary-cta h2 {
    font-size: 1.5rem;
}

.secondary-cta .form-button {
    animation: pulse 2s infinite ease-in-out;
}

/* Animação de Pulsar para o botão */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


/* --- SPINNER DE LOADING --- */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #F7E5A3;
    animation: spin 1s ease infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}