:root {
  --purple: #6a0dad;
  --purple-dark: #4b0082;
  --white: #ffffff;
  --soft-gray: #f5f5f5;
  --text-dark: #333333;
  --color-background: #000000;
  --shadow: 0 25px 50px rgba(106, 13, 173, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  /* background: var(--color-background) url("Assets/img/background.webp") no-repeat
    center center fixed; */
  background: var(--color-background);
  background-size: cover;
  line-height: 1.6;
}

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

button,
input {
  font-family: inherit;
}

main {
  padding: 2rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--purple);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.header-copy {
  flex: 1;
  margin: 0 1rem;
}

.header-copy h1 {
  margin: 0.1rem 0 0;
}

.event-pretitle {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--purple);
  margin: 0;
}

.cta-link {
  border: none;
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cta-link:hover {
  color: var(--purple-dark);
}

.hero {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-copy {
  background: var(--white);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: fadeIn 0.8s ease;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
  font-size: 0.8rem;
}

.hero-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 0.5rem;
}

.hero-sub {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #555;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
}

.benefits li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

.benefits i {
  color: var(--purple) !important;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.benefits-white {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: grid;
  gap: 0.75rem;
}

.benefits-white li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  line-height: 1.7;
}

.benefits-white li::before {
  content: "✓";
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

.cta-button {
  border: none;
  background: var(--purple);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 15px 30px rgba(106, 13, 173, 0.35);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.cta-button.full {
  width: 100%;
  justify-content: center;
}

.cta-note {
  margin-top: 1rem;
  color: #666;
}

.info-cards-container {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: var(--purple);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: fadeIn 0.6s ease;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.info-card > * {
  position: relative;
  z-index: 1;
}

.info-card h2,
.info-card h3,
.info-card h4 {
  margin: 0 0 0.75rem;
  color: var(--white);
}

.info-card h2 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  opacity: 0.95;
}

.info-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.25rem;
}

.info-card h4:first-child {
  margin-top: 0;
}

.info-card p {
  margin: 0.5rem 0;
  line-height: 1.7;
  opacity: 0.95;
}

.icon-inline {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -3px;
  filter: brightness(0) invert(1);
}

.info-card.verde,
.info-card.laranja,
.info-card.amarelo,
.info-card.azul {
  background: var(--purple);
}

.card-divider {
  width: 60px;
  height: 4px;
  background: var(--white);
  border-radius: 999px;
  margin: 1.5rem 0;
}

.results {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.results h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.results-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 85%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.carousel-btn {
  background: rgba(106, 13, 173, 0.15);
  color: var(--purple);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  box-shadow: none;
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
}

.carousel-btn:hover {
  background: rgba(106, 13, 173, 0.25);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.indicator.active {
  background: var(--purple);
}

.testimonials {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.testimonials h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.6s ease;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(106, 13, 173, 0.2);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.specialist {
  margin-top: 3rem;
  background: var(--white);
  border-radius: 32px;
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.specialist-media {
  position: relative;
}

.photo {
  width: 100%;
  min-height: 480px;
  border-radius: 24px;
  background-image: linear-gradient(
      135deg,
      rgba(106, 13, 173, 0.25),
      rgba(255, 255, 255, 0.7)
    ),
    url("Assets/img/especialista.webp");
  background-size: cover;
  background-position: top;
  box-shadow: var(--shadow);
}

.shimmer {
  animation: fadeIn 1.2s ease, shimmer 2.8s linear infinite;
}

.specialist-copy h3 {
  margin-top: 0.25rem;
  font-size: 2rem;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--purple);
}

.ghost-button {
  border: 2px solid var(--purple);
  color: var(--purple);
  background: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ghost-button:hover {
  background: var(--purple);
  color: var(--white);
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #777;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--white);
  padding: 2rem;
  border-radius: 28px;
  width: min(480px, 90%);
  box-shadow: var(--shadow);
  animation: fadeIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  color: #888;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fafafa;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

.questionnaire {
  max-width: 720px;
  margin: 3rem auto;
  background: var(--white);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.question {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.question h4 {
  margin-bottom: 0.75rem;
}

.question-error {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid #ef4444;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.validation-message {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.4s ease;
}

.validation-message p {
  margin: 0;
  color: #92400e;
  line-height: 1.6;
}

.validation-message strong {
  color: #78350f;
}

.radio-group {
  display: grid;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid #eee;
  border-radius: 16px;
  transition: border 0.2s ease, background 0.2s ease;
}

.radio-option input {
  accent-color: var(--purple);
}

.radio-option:hover {
  border-color: var(--purple);
  background: rgba(106, 13, 173, 0.04);
}

.confirm-card {
  text-align: center;
  background: var(--white);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 680px;
  margin: 4rem auto;
}

.confirm-card p {
  color: #555;
}

.confirm-card .cta-button {
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 2fr 1fr;
  }

  .specialist {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.05);
  }
  100% {
    filter: brightness(1);
  }
}
