:root {
  --background: #F9F6F2;
  --text: #1C1A17;
  --muted: #5A5A5A;
  --accent-foreground: #C8501A;
  --foreground: #1C1A17;
  --background-secondary: #F9F6F2;
  --card: #FFFFFF;
  --border: rgba(28, 22, 17, 0.08);
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #F9F6F2;
}

main {
  background: #F9F6F2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.25rem;
}

.stick-bar {
  position: sticky;
  top: 0;
  z-index: 110;
  background: var(--accent-foreground);
  color: #ffffff;
}

.stick-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 40px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.stick-bar-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}

.stick-bar-separator {
  color: #ffffff;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 105;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
  padding: 0.75rem 0;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a,
.mobile-menu a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.mobile-menu a:hover {
  color: var(--accent-foreground);
}

.stick-bar-link:hover,
.whatsapp-button:hover {
  opacity: 0.85;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
  background: #1DA851;
}

.whatsapp-icon {
  display: inline-flex;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 1px;
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}

body.mobile-menu-open .mobile-menu {
  display: block;
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }

  .whatsapp-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .stick-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.5rem 0;
    justify-content: flex-start;
  }

  .stick-bar-separator {
    display: none !important;
  }

  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem;
    padding: 0.75rem 0;
    min-height: auto;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
  }
}

/* Hero parallax styles */
.hero-parallax {
  position: relative;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-parallax::before {
  /* fallback for browsers that don't support fixed backgrounds on mobile */
  content: "";
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.80) 35%, rgba(0,0,0,0.20) 65%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 120px 0 60px 64px;
  text-shadow: none;
  text-align: left;
  max-width: 520px;
  margin-left: 0;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem 0;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-bullets li {
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-bullets li::before {
  content: '✓';
  color: #C8501A;
  font-weight: 700;
  margin-top: 0.1rem;
}

.hero-cta,
.problem-cta,
.what-i-do-cta,
.about-cta,
.for-who-cta,
.blog-card-link {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-cta {
  display: inline-block;
  background: #C8501A;
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
}

.hero-cta:hover {
  background: #ffffff;
  color: #C8501A;
  border-color: #C8501A;
}

.problem-cta,
.what-i-do-cta,
.about-cta,
.for-who-cta {
  display: inline-block;
  background: #C8501A;
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
}

.problem-cta:hover,
.what-i-do-cta:hover,
.about-cta:hover,
.for-who-cta:hover {
  background: #ffffff;
  color: #C8501A;
  border-color: #C8501A;
}

.blog-card-link {
  color: var(--accent-foreground);
  font-weight: 700;
}

.blog-card-link:hover {
  background: #FDF0EA;
}

/* Credibility stripe */
.credibility-section {
  background: #F9F6F2;
  padding: 2.25rem 0;
  position: relative;
  z-index: 1;
}

.credibility-items {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: space-between;
}

.credibility-item {
  flex: 1 1 0;
  text-align: center;
  padding: 0.75rem 1rem;
}

.credibility-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--accent-foreground);
  margin-bottom: 0.5rem;
}

.credibility-text {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.credibility-source {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 680px) {
  .credibility-items {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Seção: O Problema */
.problem-section {
  background: var(--background);
  padding: 2.5rem 0;
}

.problem-inner {
  display: block;
  gap: 2rem;
}

.problem-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  margin: 0 0 0.75rem 0;
  color: var(--text);
}

.problem-copy p {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1rem;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.problem-stat {
  min-height: 150px;
}

.problem-stat {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  border-radius: 8px;
}

.problem-stat .stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent-foreground);
  margin-bottom: 0.3rem;
}

.problem-stat .stat-text {
  font-size: 0.95rem;
  color: var(--text);
}

.problem-stat .stat-source {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.problem-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent-foreground);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .problem-inner {
    grid-template-columns: 1fr;
  }
}

/* Seção: O que eu faço */
.what-i-do {
  background: var(--background);
  padding: 2.5rem 0;
}

.what-i-do .section-intro {
  max-width: 100%;
  margin-bottom: 1.75rem;
}

.what-i-do h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 0.75rem 0;
  color: var(--text);
}

.what-i-do p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.what-i-do-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.what-i-do-card,
.about-card,
.for-who-card,
.blog-card,
.problem-stat,
.credibility-item {
  background: var(--card);
  border: 1px solid rgba(28, 22, 17, 0.08);
  border-radius: 16px;
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.what-i-do-card:hover,
.about-card:hover,
.for-who-card:hover,
.blog-card:hover,
.problem-stat:hover,
.credibility-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-card {
  overflow: hidden;
  border-radius: 24px;
}

.what-i-do-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 80, 26, 0.1);
  border-radius: 999px;
  color: var(--accent-foreground);
}

.what-i-do-card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
}

.what-i-do-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
}

.what-i-do-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent-foreground);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .what-i-do-grid {
    grid-template-columns: 1fr;
  }
}

/* Seção: Sobre */
.about-section {
  background: var(--background-secondary);
  padding: 2.5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.about-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 1rem 0;
  color: var(--text);
}

.about-copy p {
  margin: 0 0 1.25rem 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.about-card {
  background: var(--card);
  border: 1px solid rgba(28, 22, 17, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.about-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent-foreground);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
}

/* Seção: Para quem é */
.for-who-section {
  background: var(--background);
  padding: 2.5rem 0;
}

.for-who-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 1.25rem 0;
  color: var(--text);
}

.for-who-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.for-who-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  min-height: 1.5rem;
  color: var(--accent-foreground);
  font-weight: 700;
}

.for-who-card {
  background: var(--background-secondary);
  border: 1px solid rgba(28, 22, 17, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  gap: 0.85rem;
  margin-top: 3rem;
}

.for-who-card h3 {
  font-size: 1rem;
  margin: 0;
  color: #C8501A;
  font-weight: 700;
}

.for-who-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
}

.for-who-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent-foreground);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 680px) {
  .for-who-grid {
    grid-template-columns: 1fr;
  }
}

/* Seção: FAQ */
.faq-section {
  background: var(--background-secondary);
  padding: 2.5rem 0;
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 1.5rem 0;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(28, 22, 17, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(200, 80, 26, 0.1);
  color: var(--accent-foreground);
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 16px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  padding: 12px 16px 16px 16px;
  margin: 0;
  color: #1A1A1A;
  line-height: 1.7;
}

/* Seção: Blog */
.blog-section {
  background: #F9F6F2;
  background-color: #F9F6F2;
  padding: 2.5rem 0 3rem;
}

.blog-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 1.5rem 0;
  color: var(--text);
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  background: var(--card);
  border: 1px solid rgba(28, 22, 17, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  min-height: 240px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card-meta span {
  background: rgba(28, 22, 17, 0.05);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

/* Scroll animations */
h2, h3 {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

h2.visible, h3.visible {
  opacity: 1;
  transform: translateX(0);
}

.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }
.card:nth-child(5) { transition-delay: 0.5s; }

.blog-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.4;
}

.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-foreground);
  font-weight: 700;
}

.blog-card-link::after {
  content: '→';
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Rodapé */
.site-footer {
  background: #1A1A1A;
  color: #F9F6F2;
  padding: 2.5rem 0;
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text,
.footer-links a,
.footer-social a,
.footer-copy {
  color: #F9F6F2;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.footer-social a {
  color: #F9F6F2;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-social a:hover {
  opacity: 0.85;
}

.footer-meta {
  margin-top: 1.25rem;
  color: rgba(249, 246, 242, 0.7);
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(249, 246, 242, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  z-index: 130;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}


@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 4px !important;
    width: 28px !important;
    height: 22px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
  }
  .mobile-menu-toggle span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #C8501A !important;
    border-radius: 2px !important;
    min-height: 3px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 768px) {
  .stick-bar-inner {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .hero-parallax .container,
  .hero-content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(to right,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.88) 45%,
      rgba(0,0,0,0.75) 75%,
      rgba(0,0,0,0.55) 100%) !important;
  }
  .site-header .header-inner {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}