* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f3f3;
  color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 88px;
  padding: 10px 0;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  margin: 0 auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #ff5c00;
}

.btn-header {
  text-decoration: none;
  background: #ff5c00;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 92, 0, 0.25);
}

.hero {
  min-height: 85vh;
  background: url("img/fd_002.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.76);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 120px;
  padding-bottom: 60px;
}

.badge {
  display: inline-block;
  background: #ffe7d9;
  color: #ff5c00;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: 76px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -2px;
  color: #111;
  margin-bottom: 28px;
}

.hero h1 span {
  color: #ff5c00;
  font-style: italic;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #4f4f4f;
  max-width: 560px;
  margin-bottom: 34px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ff5c00;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 30px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 10px 24px rgba(255, 92, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255, 92, 0, 0.28);
}

.method-section {
  background: #f3f3f3;
  padding: 110px 0;
}

.method-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: start;
}

.method-left h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #111;
  margin-bottom: 32px;
  max-width: 620px;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.method-item {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.method-number {
  min-width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff2ea;
  color: #ff5c00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.method-text h3 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.method-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.method-card {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 34px;
  padding: 34px 32px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.method-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -18px;
  top: -18px;
  background: #fff1e8;
  border-radius: 50%;
}

.method-card h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  color: #111;
  margin-bottom: 24px;
}

.method-card p {
  position: relative;
  z-index: 2;
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 28px;
}

.method-features {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ff5c00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.results-section {
  background: #f3f3f3;
  padding: 50px 0 110px;
}

.results-title {
  text-align: center;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 900;
  color: #111;
  margin-bottom: 42px;
  letter-spacing: -1.5px;
}

.results-title span {
  color: #ff5c00;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.result-card {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.05);
}

.result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid #ff5c00;
  color: #ff5c00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  margin: 0 auto 22px;
}

.result-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.result-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 320px;
  margin: 0 auto;
}

.cta-section {
  background: #f3f3f3;
  padding: 0 0 110px;
}

.cta-box {
  background: linear-gradient(135deg, #ff5c00 0%, #ff5c00 100%);
  border-radius: 40px;
  padding: 90px 30px;
  text-align: center;
  box-shadow: 0 18px 30px rgba(255, 92, 0, 0.12);
}

.cta-box h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  margin-bottom: 34px;
  letter-spacing: -1.5px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ff5c00;
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  padding: 24px 46px;
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
}

.quiz-offer-block.is-hidden {
  display: none;
}

#quiz-scroll-target {
  position: relative;
  top: -120px;
}

.profile-section {
  padding: 100px 0 40px;
  text-align: center;
}

.profile-badge {
  display: inline-block;
  background: #ffe7d9;
  color: #ff5c00;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
}

.profile-title span {
  color: #ff5c00;
}

.profile-features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.profile-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.profile-card .check {
  background: #ff5c00;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.profile-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.profile-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.plans-section {
  padding: 30px 0 120px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.plan-card {
  border-radius: 30px;
  padding: 40px;
  position: relative;
}

.plan-light {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-highlight {
  background: #ff5c00;
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 92, 0, 0.2);
}

.plan-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 18px;
}

.price {
  margin-bottom: 12px;
}

.price strong {
  font-size: 48px;
  line-height: 1;
}

.price span {
  font-size: 18px;
  margin-left: 6px;
}

.price-sub {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.plan-list {
  list-style: none;
  margin-bottom: 30px;
}

.plan-list li {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.5;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.plan-btn-light {
  background: #e5e5e5;
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.plan-btn-light:hover {
  background: #dcdcdc;
  color: #111;
  transform: translateY(-2px);
}

.plan-btn-main {
  background: #fff;
  color: #ff5c00;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.plan-btn-main:hover {
  transform: translateY(-2px);
}

.badge-plan {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #fff;
  color: #ff5c00;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.footer {
  background: #f3f3f3;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 70px 0 36px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-menu a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-menu a:hover {
  color: #ff5c00;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.social-link:hover {
  transform: translateY(-3px);
  background: #ff5c00;
  border-color: #ff5c00;
}

.social-link svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  transition: 0.3s ease;
}

.social-link:hover svg {
  stroke: #fff;
}

.footer-text {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 18px;
}

.footer-copy {
  font-size: 14px;
  color: #999;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp:hover {
  transform: scale(1.08);
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 62px;
  }

  .results-title,
  .profile-title {
    font-size: 48px;
  }

  .cta-box h2 {
    font-size: 52px;
  }

  .cta-button {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-left h2 {
    max-width: 100%;
  }

  .results-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .menu,
  .btn-header {
    display: none !important;
  }

  .header {
    background: rgba(255, 255, 255, 0.96) !important;
  }

  .header .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .header-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 78px !important;
    padding: 8px 0 !important;
    gap: 0 !important;
  }

  .logo {
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    flex-shrink: 0 !important;
    line-height: 0 !important;
  }

  .logo img {
    display: block !important;
    width: 160px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  .hero-content {
    padding-top: 104px !important;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .method-section {
    padding: 80px 0;
  }

  .method-left h2 {
    font-size: 28px;
  }

  .results-section {
    padding: 20px 0 80px;
  }

  .results-title {
    font-size: 38px;
    margin-bottom: 28px;
  }

  .cta-section {
    padding: 0 0 80px;
  }

  .cta-box {
    padding: 60px 22px;
    border-radius: 28px;
  }

  .cta-box h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .cta-button {
    width: 100%;
    max-width: 420px;
    font-size: 20px;
    padding: 18px 24px;
    border-radius: 16px;
  }

  .profile-section {
    padding: 80px 0 30px;
  }

  .profile-title {
    font-size: 38px;
  }

  .plans-section {
    padding: 30px 0 90px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .footer {
    padding: 56px 0 30px;
  }
}

@media (max-width: 560px) {
  .header .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .header-content {
    min-height: 74px !important;
    padding: 6px 0 !important;
  }

  .logo {
    width: auto !important;
    margin: 0 auto !important;
    max-width: none !important;
  }

  .logo img {
    width: 75px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  .hero-content {
    padding-top: 96px !important;
  }

  .container {
    width: 92%;
  }

  .badge {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .btn-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 14px;
  }

  .results-title,
  .profile-title {
    font-size: 32px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-button {
    font-size: 18px;
  }

  .profile-card {
    min-width: 100%;
  }

  .price strong {
    font-size: 38px;
  }

  .plan-list li {
    font-size: 15px;
  }

  .plan-btn {
    font-size: 16px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-menu {
    gap: 16px;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .whatsapp {
    width: 54px;
    height: 54px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}
.highlight-upper {
  text-transform: uppercase;
}
.footer {
  padding: 20px 0 calc(var(--cta-h) + 95px);
  color: #fff;
}

.footer .container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #38bdf8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

.footer img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .footer .container {
    flex-direction: column;
    gap: 10px;
  }

  .footer img {
    height: 16px;
  }
}
