/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #FF2E8B;
  --pink-light: #ff5fa7;
  --pink-dark: #d4006e;
  --white: #ffffff;
  --black: #000000;
  --gray-text: #555;
  --font-main: 'Segoe UI', sans-serif;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  font-family: var(--font-main);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--pink);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.hamburger {
  font-size: 20px;
}

.logo-header {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-header img {
  height: 36px;
  object-fit: contain;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  gap: 20px;
}

/* ===== CARD ===== */
.card {
  width: 100%;
  max-width: 480px;
  border: 2.5px solid var(--black);
  background: var(--white);
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* ===== FOTO FUNDO ===== */
.foto-fundo {
  width: 100%;
  height: 260px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.foto-fundo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.foto-placeholder {
  width: 85%;
  height: 75%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  font-size: 13px;
  padding: 10px;
}

/* ===== TEXTOS ===== */
.textos {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.texto1 {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.texto2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
}

.texto3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== BOTÃO ===== */
.botao-wrapper {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.botao {
  display: inline-block;
  background-color: var(--pink);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 48px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.botao:hover {
  background-color: var(--pink-dark);
  transform: scale(1.03);
}

.botao:active {
  transform: scale(0.97);
}

/* ===== ÍCONES FLUTUANTES ===== */
.icone-esquerda {
  position: fixed;
  bottom: 24px;
  left: 16px;
  z-index: 200;
}

.icone-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-size: 18px;
  color: var(--pink);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.icone-circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.icone-direita {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 200;
}

.whatsapp-btn {
  display: block;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ===== TELA 2 ===== */
.tela2-body {
  background: var(--white);
  min-height: 100vh;
}

.t2-banner {
  width: 100%;
  height: 160px;
  background: #f0f0f0;
  /* Substitua por: background-image: url('imagens/banner-tela2.jpg'); background-size: cover; */
}

.t2-content {
  padding: 24px 24px 80px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Logo */
.t2-logo-area {
  display: flex;
  align-items: center;
}

.t2-logo-text {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

.t2-logo-img {
  height: 32px;
  object-fit: contain;
}

/* Título */
.t2-titulo {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Input */
.t2-input-wrapper {
  width: 100%;
}

.t2-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #bbb;
  border-radius: 6px;
  font-size: 16px;
  color: #555;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
  font-family: var(--font-main);
}

.t2-input:focus {
  border-color: var(--pink);
}

.t2-input::placeholder {
  color: #aaa;
  letter-spacing: 1px;
}

/* Toggle */
.t2-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t2-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.t2-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.t2-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.25s;
}

.t2-slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.t2-toggle-switch input:checked + .t2-slider {
  background: var(--pink);
}

.t2-toggle-switch input:checked + .t2-slider::before {
  transform: translateX(22px);
}

.t2-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Botão 1 */
.t2-botao1 {
  width: 100%;
  padding: 14px;
  background: #d9d9d9;
  color: #555;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.5px;
}

.t2-botao1:hover {
  background: #c5c5c5;
  transform: scale(1.01);
}

.t2-botao1:active {
  transform: scale(0.98);
}

/* Linha Texto 3 + Texto 2 */
.t2-texto-linha {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.t2-texto3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.t2-texto2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Texto 4 */
.t2-texto4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}
