:root {
  --hp-red: #e7334a;
  --hp-red-dark: #cf1637;
  --hp-red-deep: #b81431;
  --hp-beige: #ffd7a4;
  --hp-beige-deep: #f5c892;
  --hp-brown: #5a2418;
  --hp-brown-soft: #7b3720;
  --hp-yellow: #ffd51f;
  --hp-yellow-deep: #f7c403;
  --hp-bg-light: #ffe2b8;
  --hp-text: #ffffff;
  --hp-radius-lg: 22px;
  --hp-radius-md: 16px;
  --hp-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --hp-max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Parkinsans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--hp-red);
  color: var(--hp-text);
  -webkit-font-smoothing: antialiased;
}

h2#voto-popup-title {
  color: #222;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
label {
  color: #222;
}
.hp-page {
  min-height: 100vh;
  background-color: var(--hp-red);
}

.hp-container {
  width: 100%;
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HERO ================= */

.hp-hero {
  background-color: var(--hp-red);
  background-image: url("https://hamburguerperfeito.salsaretti.com.br/wp-content/uploads/2025/11/bg-header.jpg");
  background-size: cover;
  background-position: center;
  padding: 42px 0 64px;
  text-align: center;
  color: #fff;
}

.hp-hero-logo {
  max-width: 450px;
  margin: 0 auto 0px;
}

.hp-hero-food {
  max-width: 1000px;
  margin: -70px auto 0px;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.4));
}

.hp-hero-h1 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hp-hero-h1 + .hp-hero-h1 {
  margin-top: -4px;
}

.hp-hero-p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 6px auto;
}

.hp-hero-p strong {
  font-weight: 800;
}

.hp-hero-cta-wrap {
  margin-top: 26px;
}

.hp-btn-primary,
.hp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.hp-btn-primary {
  background: var(--hp-yellow);
  color: #1d130a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hp-btn-primary:hover {
  background: var(--hp-yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.hp-btn-secondary {
  background: #f1143a;
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
}

.hp-btn-secondary:hover {
  background: #ff1950;
  transform: translateY(-2px);
}

/* ============== SECTION 2 – PASSOS ============== */

.hp-section {
  padding: 60px 0;
}

.hp-section.steps {
  background: var(--hp-beige);
  color: var(--hp-brown);
  text-align: center;
}

.hp-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--hp-brown);
  margin-bottom: 30px;
}

.hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.hp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hp-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--hp-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--hp-brown);
  margin-bottom: 4px;
}

.hp-step-text {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.hp-step-text span {
  display: block;
}

.hp-section.steps .hp-cta-wrap {
  margin-top: 10px;
}

/* ============== SECTION 3 – VALE TUDO ============== */

.hp-section.vale-tudo {
  background: var(--hp-red);
  color: #fff;
  padding: 60px 0 70px;
}

.hp-vale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.hp-vale-img {
  position: relative;
  min-height: 260px;
}

.hp-vale-copy h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hp-vale-copy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.hp-vale-copy p strong {
  font-weight: 800;
}

/* ============== SECTION 4 – PREMIAÇÃO ============== */

.hp-section.premiacao {
  background: var(--hp-red);
  color: #fff;
  text-align: center;
  padding-bottom: 70px;
}

.hp-prem-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hp-prem-title::before,
.hp-prem-title::after {
  content: "";
  display: inline-block;
  height: 16px;
  width: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* não cover */
}

/* before = divisor direito (fica à esquerda do texto) */
.hp-prem-title::before {
  background-image: url("https://hamburguerperfeito.salsaretti.com.br/wp-content/uploads/2025/11/divisor-direito.png");
}

/* after = divisor esquerdo (fica à direita do texto) */
.hp-prem-title::after {
  background-image: url("https://hamburguerperfeito.salsaretti.com.br/wp-content/uploads/2025/11/divisor-esquerdo.png");
}

.hp-prem-title-wrap {
  text-align: center;
  margin-bottom: 26px;
}

.hp-prem-cards {
  display: flex;
  gap: 0;
  justify-items: center;
  margin-bottom: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.hp-prem-card {
  position: relative;
  color: #3f2016;
  max-width: 380px;
  width: 100%;
  padding: 40px 70px 48px;
  font-size: 16px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hp-prem-card--estab {
  background-image: url("https://hamburguerperfeito.salsaretti.com.br/wp-content/uploads/2025/11/bg-pergaminho1.png");
}

.hp-prem-card--votante {
  background-image: url("https://hamburguerperfeito.salsaretti.com.br/wp-content/uploads/2025/11/bg-pergaminho2.png");
}

.hp-prem-icon {
  margin-bottom: 10px;
}

.hp-prem-icon-img {
  width: 40px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hp-prem-card-title {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 20px;
}

.hp-prem-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* ============== SECTION 5 – KETCHUP ============== */

.hp-section.ketchup {
  background: var(--hp-red);
  color: #fff;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hp-ketchup-bottom-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -220px;
  height: 300px;
  background: var(--hp-beige);
  transform: skewY(-6deg);
  transform-origin: 0 100%;
}

.hp-ketchup-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: center;
}

.hp-ketchup-heading-wrap {
  position: relative;
}

.hp-ketchup-bg-title {
  position: absolute;
  left: 0;
  top: -40px;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.14);
  text-transform: uppercase;
  line-height: 0.9;
  pointer-events: none;
}

.hp-ketchup-title {
  position: relative;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hp-ketchup-text {
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}

.hp-ketchup-img {
  position: relative;
  text-align: center;
}

.hp-ketchup-img img {
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.55));
}

/* ============== SECTION 6 – FABRICIO + FAQ ============== */

.hp-section.fabricio {
  background: var(--hp-beige);
  padding-bottom: 0;
}

.hp-fab-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  color: var(--hp-brown);
  padding-bottom: 40px;
}

.hp-fab-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hp-fab-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(circle at 30% 0, #ff35a0, #ffb52d) border-box;
}

.hp-fab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-fab-name {
  font-size: 22px;
  font-weight: 800;
}

.hp-fab-handle {
  font-size: 14px;
  color: var(--hp-brown-soft);
}

.hp-fab-right h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hp-fab-right p {
  font-size: 15px;
  line-height: 1.7;
}

/* FAQ */

.hp-faq-wrap {
  background: var(--hp-red);
  color: #fff;
  padding: 40px 0 60px;
}

.hp-faq-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.hp-faq-item {
border-radius: 10px;
border: 2px solid rgba(255, 255, 255, 0.7);
padding: 10px 18px;
font-size: 14px;
cursor: pointer;
background: transparent;
transition: background 0.2s 
ease, border-color 0.2s 
ease;
}

.hp-faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.hp-faq-item.hp-faq-open {
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 18px;
}

.hp-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hp-faq-question {
  flex: 1;
  padding-right: 10px;
  font-weight: 700;
}

.hp-faq-toggle {
  font-weight: 900;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.hp-faq-item.hp-faq-open .hp-faq-toggle {
  transform: rotate(45deg);
}

.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hp-faq-item.hp-faq-open .hp-faq-answer {
  max-height: 500px;
  margin-top: 12px;
  padding-top: 12px;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* FOOTER */

.hp-footer {
  background: var(--hp-red);
  color: #ffe9d1;
  padding: 20px 0 26px;
  font-size: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.hp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hp-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-footer-logo {
  width: 90px;
  height: auto;
}

.hp-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.hp-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hp-footer-links a {
  font-size: 12px;
  color: rgba(255, 233, 209, 0.9);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.hp-footer-links a:hover {
  color: #ffffff;
}

/* ============== RESPONSIVO ============== */

@media (max-width: 960px) {
  .hp-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .hp-vale-grid,
  .hp-ketchup-inner,
  .hp-fab-grid,
  .hp-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hp-ketchup-bg-title {
    font-size: 60px;
    top: -30px;
  }

  .hp-ketchup-img img {
    max-width: 280px;
  }

  .hp-fab-left {
    align-items: center;
    text-align: center;
  }

  .hp-fab-right h2,
  .hp-fab-right p {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hp-hero {
    padding-top: 30px;
  }
  .hp-hero-logo {
    max-width: 280px;
    margin: 0 auto -20px;
  }

  .hp-hero-food {
    max-width: 383px;
    margin: -50px auto 0px;
  }

  .hp-section {
    padding: 50px 0;
  }

  .hp-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hp-prem-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
  }

  .hp-prem-card {
    max-width: 100%;
  }

  .hp-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-footer-right {
    align-items: flex-start;
  }

  .hp-footer-links {
    justify-content: flex-start;
  }

  .hp-prem-title::before,
  .hp-prem-title::after {
    width: 80px;
  }
}

/* ============== POPUP VOTO SANDUÍCHE ============== */

.voto-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.voto-popup-overlay.voto-popup-open {
  display: flex;
}

.voto-popup {
  background: #ffffff;
  max-width: 480px;
  width: 100%;
  margin: 0 16px;
  border-radius: 16px;
  padding: 24px 24px 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
  position: relative;
  font-family: "Parkinsans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.voto-popup-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.voto-popup h2 {
  font-size: 22px;
  margin: 0 0 4px;
  font-weight: 700;
}

.voto-popup p.voto-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: #555;
}

.voto-form-group {
  margin-bottom: 14px;
}

.voto-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.voto-input,
.voto-textarea,
.voto-select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px !important;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  height: 3em;
}

.voto-input:focus,
.voto-textarea:focus,
.voto-select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #1118271a;
}

.voto-textarea {
  min-height: 48px;
  resize: vertical;
}

.voto-whatsapp-wrapper {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.voto-country-select {
  flex: 0 0 150px;
}

.voto-whatsapp-input {
  flex: 1;
}

.voto-button-submit {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #111827;
  color: #ffffff;
  transition: transform .08s ease, box-shadow .08s ease, opacity .2s;
}

.voto-button-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.voto-button-submit:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.voto-message {
  margin-top: 10px;
  font-size: 13px;
}

.voto-message-error {
  color: #b91c1c;
}

.voto-message-success {
  color: #166534;
}

.voto-required {
  color: #dc2626;
  margin-left: 2px;
}

@media (max-width: 480px) {
  .voto-whatsapp-wrapper {
    flex-direction: column;
  }
  .voto-country-select {
    flex: 1;
  }
}
