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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  color: #262626;
}

* {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 640px) {
  .hero-title {
    font-size: 1.875rem;
  }
}
.hero-title span {
  color: #f4921e;
  position: relative;
}
.hero-title span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f4921e;
  border-radius: 9999px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #525252;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.question-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f4921e;
  letter-spacing: 1px;
}

.question-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #262626;
}

.section-hint {
  font-size: 0.75rem;
  color: #737373;
}

.input-hint {
  font-size: 0.75rem;
  color: #737373;
  margin-top: 0.5rem;
  display: block;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .container {
    padding: 3rem;
  }
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffd9ab;
  z-index: 0;
}
.bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#671911 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.03;
  pointer-events: none;
}

.form-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .form-card {
    padding: 4rem;
  }
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.header-decoration .decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f4921e, transparent);
}
.header-decoration .decoration-dot {
  width: 8px;
  height: 8px;
  background: #f4921e;
  border-radius: 9999px;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.hero .logo {
  max-width: 180px;
  height: auto;
  transition: transform 250ms ease;
  transition: transform 150ms ease;
}
.hero .logo:hover {
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .hero .logo {
    max-width: 220px;
  }
}

.footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid #671911;
  color: #671911;
  font-size: 0.875rem;
}

.logo {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #671911 0%, #4a120c 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 350ms ease;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-submit:hover::before {
  left: 100%;
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit svg {
  transition: transform 150ms ease;
}
.btn-submit:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/hero-desktop.webp");
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.08);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-title {
  color: #fff;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.form-card {
  position: relative;
  margin-top: -100px;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero {
    min-height: 420px;
  }
  .hero .hero-background {
    background-image: url("../assets/img/hero-mobile.webp");
  }
  .hero .hero-subtitle {
    font-size: 0.9rem;
  }
  .form-card {
    margin-top: -50px;
  }
}
.form-section {
  margin-bottom: 3rem;
}
.form-section:last-of-type {
  margin-bottom: 0;
}
.form-section .section-header {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .form-section .section-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.textarea-wrapper {
  position: relative;
}
.textarea-wrapper textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 0.5rem;
  transition: all 150ms ease;
  resize: vertical;
  font-family: inherit;
}
.textarea-wrapper textarea:focus {
  border-color: #f4921e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 146, 30, 0.1);
}
.textarea-wrapper .textarea-focus-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4921e;
  transition: width 250ms ease;
  pointer-events: none;
}
.textarea-wrapper textarea:focus ~ .textarea-focus-effect {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.input-group label {
  font-weight: 500;
  font-size: 0.875rem;
  color: #404040;
}
.input-group input,
.input-group select {
  padding: 0.5rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 0.5rem;
  transition: all 150ms ease;
}
.input-group input:focus,
.input-group select:focus {
  border-color: #f4921e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 146, 30, 0.1);
}

.input-group.full-width {
  margin-bottom: 1.5rem;
}

.birthday-group {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1rem;
}

.frequency-options span {
  font-size: 0.875rem;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.d-none {
  display: none !important;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.obrigatory {
  position: relative;
  padding-left: 12px;
}
.obrigatory::before {
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 0;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../assets/img/asterisco.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.nps-scale .scale-header,
.rating-scale .scale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #525252;
  padding: 0 0.5rem;
}
.nps-scale .scale-buttons,
.rating-scale .scale-buttons {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 0.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .nps-scale .scale-buttons,
  .rating-scale .scale-buttons {
    gap: 0.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}
.nps-scale .scale-option,
.rating-scale .scale-option {
  text-align: center;
}
.nps-scale .scale-option input,
.rating-scale .scale-option input {
  display: none;
}
.nps-scale .scale-option input:checked + label,
.rating-scale .scale-option input:checked + label {
  background: #f4921e;
  color: #ffffff;
  border-color: #f4921e;
  transform: scale(1.05);
}
.nps-scale .scale-option label,
.rating-scale .scale-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
  background: #ffffff;
  border: 2px solid #d4d4d4;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 150ms ease;
  font-weight: 600;
}
.nps-scale .scale-option label:hover,
.rating-scale .scale-option label:hover {
  border-color: #f4921e;
  transform: translateY(-2px);
}
.nps-scale .scale-labels,
.rating-scale .scale-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #671911;
  padding: 0 0.5rem;
}
.nps-scale .scale-labels span:first-child,
.rating-scale .scale-labels span:first-child {
  text-align: left;
}
.nps-scale .scale-labels span:last-child,
.rating-scale .scale-labels span:last-child {
  text-align: right;
}

.frequency-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.frequency-options .frequency-option {
  cursor: pointer;
}
.frequency-options .frequency-option input {
  display: none;
}
.frequency-options .frequency-option input:checked + .option-content {
  background: #f4921e;
  color: #ffffff;
  border-color: #f4921e;
}
.frequency-options .frequency-option input:checked + .option-content .option-icon {
  color: #ffffff;
}
.frequency-options .frequency-option .option-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 70px;
  padding: 1rem;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 0.75rem;
  transition: all 150ms ease;
}
.frequency-options .frequency-option .option-content:hover {
  border-color: #f4921e;
  transform: translateX(4px);
}
.frequency-options .frequency-option .option-content .option-icon {
  font-size: 1.25rem;
  transition: transform 150ms ease;
}

.form-card {
  position: relative;
  margin-top: -100px;
  z-index: 10;
  border-top: 5px solid #671911;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-section {
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: calc(var(--section-index, 0) * 0.1s);
}

.form-section:nth-child(1) {
  --section-index: 1;
}

.form-section:nth-child(2) {
  --section-index: 2;
}

.form-section:nth-child(3) {
  --section-index: 3;
}

.form-section:nth-child(4) {
  --section-index: 4;
}

.form-section:nth-child(5) {
  --section-index: 5;
}

.form-section:nth-child(6) {
  --section-index: 6;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #f4921e;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d47a18;
}

::-moz-selection {
  background: #f4921e;
  color: #ffffff;
}

::selection {
  background: #f4921e;
  color: #ffffff;
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn-submit.loading svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.grecaptcha-badge {
  z-index: 99;
}
@media (width < 768px) {
  .grecaptcha-badge {
    display: none;
  }
}

.option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-icon i {
  font-size: 1.15rem;
  color: #671911;
}

.option-icon i,
.question-number i,
.input-hint i {
  color: #671911;
}/*# sourceMappingURL=main.css.map */