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

:root {
  --orange: #F26522;
  --orange-dark: #D4541A;
  --orange-light: #FFF1E9;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
main { flex: 1; }

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gray-900);
}

.logo svg { color: var(--orange); flex-shrink: 0; }

nav ul { display: flex; gap: 1.75rem; list-style: none; }

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .2s;
  white-space: nowrap;
}

nav a:hover, nav a.active { color: var(--orange); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
  padding: 0.25rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,101,34,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-outline-dark:hover {
  background: var(--orange-light);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #3a1a00 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.35);
  color: #FFAA77;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.1rem;
  font-weight: 700;
}

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

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero simples (subpáginas) */
.hero-simple {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #3a1a00 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-simple::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.15) 0%, transparent 70%);
}

.hero-simple h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.6rem;
  position: relative;
}

.hero-simple p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  position: relative;
}

/* ── SECTIONS ── */
.section { padding: 4.5rem 0; }

.section-alt { background: var(--gray-50); }

.section-title { text-align: center; margin-bottom: 3rem; }

.section-title h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.section-title p {
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── CARDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

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

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--orange);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card h4 { font-size: 0.85rem; font-weight: 700; color: var(--orange); margin: 1rem 0 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }

.card ul { list-style: none; padding: 0; }
.card ul li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── CHECK LIST ── */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.35rem 0;
}
.check-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange-light);
  border-top: 1px solid rgba(242,101,34,0.15);
  border-bottom: 1px solid rgba(242,101,34,0.15);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--gray-500); max-width: 520px; margin: 0 auto 1.75rem; font-size: 0.95rem; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Sora', sans-serif;
  transition: background .2s;
  gap: 1rem;
}

.faq-question:hover { background: var(--gray-50); }

.faq-chevron {
  color: var(--orange);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.active .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-answer-inner ul { list-style: none; padding: 0; margin-top: 0.5rem; }
.faq-answer-inner li { padding: 0.25rem 0 0.25rem 1.1rem; position: relative; }
.faq-answer-inner li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: 0.8rem; }

/* ── IFRAME PAGE ── */
.iframe-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.iframe-url {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
}

.iframe-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.iframe-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.iframe-page header,
.iframe-page footer { flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; }

.contact-item strong { display: block; font-size: 0.85rem; font-family: 'Sora', sans-serif; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { font-size: 0.875rem; color: var(--gray-500); }
.contact-item a:hover { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.footer-logo svg { color: var(--orange); }

.footer-section h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-section p { font-size: 0.825rem; line-height: 1.7; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul a { font-size: 0.825rem; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-section ul a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.28);
}

/* ── BADGE PILL ── */
.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-btn { display: block; }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    z-index: 99;
  }

  nav.open ul {
    flex-direction: column;
    gap: 0;
  }

  nav.open ul li a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
