/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6A00;
  --orange-dark: #DB5A00;
  --orange-light: #FFF2E8;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #292929;
  --grey: #6B7280;
  --grey-light: #F5F5F5;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B7280;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,106,0,0.35); }
.btn--primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  font-size: 14px;
}
.btn--nav:hover { background: var(--orange-dark); }

.btn--full { width: 100%; }

.btn--lg { padding: 18px 40px; font-size: 17px; }

/* =============================================
   SECTION HELPERS
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-hybrid { color: var(--white); }
.logo-center { color: var(--orange); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 64px;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.hero__tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero__title span { color: var(--orange); }

.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero__highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}

.highlight svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scroll-hint 1.8s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.2; transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   MYTHS
   ============================================= */
.myths {
  padding: 100px 0;
  background: var(--grey-light);
}

.myths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.myth-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.myth-card__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.myth-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.myth-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.myths__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mini-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.mini-highlight svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 1px;
}

/* =============================================
   SCOPE (O que pode incluir)
   ============================================= */
.scope {
  padding: 100px 0;
}

.scope__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.scope-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.scope-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.scope-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.scope-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.scope-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.scope-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.scope__cta {
  text-align: center;
}

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee {
  padding: 100px 0;
  background: var(--dark);
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.guarantee__text {
  max-width: 640px;
}

.guarantee__text .section-tag { margin-bottom: 12px; }

.guarantee__text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.guarantee__text p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.75;
}

.guarantee__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guarantee-item {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 24px;
}

.guarantee-item svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
  margin-bottom: 16px;
}

.guarantee-item p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 36px;
  margin-bottom: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.rating__score {
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.rating__stars {
  font-size: 20px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating__info p {
  font-size: 14px;
  color: var(--text-muted);
}

.rating__info strong { color: var(--dark); }

.rating__google {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-left: 8px;
}

.testimonials__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
}

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

.testimonial {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial__stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial cite {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 100px 0;
  background: var(--grey-light);
}

.faq__group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 760px;
  margin: 0 auto 16px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item[open] { border-color: var(--orange); }

.faq__item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   FOOTER CTA
   ============================================= */
.footer-cta {
  padding: 80px 0;
  background: var(--orange);
}

.footer-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.footer-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.footer-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.footer-cta .btn--primary {
  background: var(--dark);
  color: var(--white);
}

.footer-cta .btn--primary:hover {
  background: var(--dark-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* =============================================
   QUOTE FORM
   ============================================= */
.quote {
  padding: 100px 0;
}

.quote__inner {
  max-width: 720px;
}

.quote__location {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: var(--text);
  background: var(--orange-light);
  border: 1px solid #FFD9BF;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  margin-bottom: 24px;
}

.quote__location svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
}

.quote__location strong { color: var(--dark); }

.quote__form {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--orange);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.form-consent label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a {
  color: var(--orange);
  text-decoration: underline;
}

.quote__feedback {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.quote__feedback[hidden] { display: none; }

.quote__feedback--success {
  background: #F0FFF4;
  border: 1px solid #BBF7D0;
  color: #166534;
}

.quote__feedback--error {
  background: #FFF5F0;
  border: 1px solid #FFD9BF;
  color: var(--orange-dark);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-3);
}

.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer__brand .footer__location {
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .myths__grid { grid-template-columns: 1fr; }
  .myths__highlights { grid-template-columns: 1fr 1fr; }
  .scope__grid { grid-template-columns: 1fr; }
  .guarantee__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__rating { flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .myths__highlights { grid-template-columns: 1fr; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .quote__form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero__cta .btn { width: 100%; }
  .btn--lg { width: 100%; }
}

/* =============================================
   COOKIES
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  padding: 20px 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.cookie-banner__text strong { color: var(--white); }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn--cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn--cookie-settings:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.btn--cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn--cookie-reject:hover { color: var(--white); border-color: var(--white); }

.btn--cookie-accept {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.btn--cookie-accept:hover { background: var(--orange-dark); }

/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal-overlay[hidden] { display: none; }

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal__header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.cookie-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.cookie-modal__close:hover { color: var(--dark); }
.cookie-modal__close svg { width: 20px; height: 20px; }

.cookie-modal__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-modal__body > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.cookie-category {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category__header strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.cookie-category__header p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
}

.cookie-toggle__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--orange); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(20px); }

.cookie-toggle--disabled {
  cursor: default;
  font-size: 12px;
  font-weight: 600;
  color: #22C55E;
  background: #F0FFF4;
  border: 1px solid #BBF7D0;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.cookie-modal__footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal__footer .btn--cookie-reject,
.cookie-modal__footer .btn--cookie-accept {
  font-size: 14px;
}

@media (max-width: 600px) {
  .cookie-banner__actions { width: 100%; }
  .btn--cookie-settings, .btn--cookie-reject, .btn--cookie-accept { flex: 1; text-align: center; }
  .cookie-modal__footer { flex-direction: column; }
  .cookie-modal__footer .btn--cookie-reject,
  .cookie-modal__footer .btn--cookie-accept { width: 100%; text-align: center; }
}
