/* RESET E GLOBAIS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  background: #F5F5F0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1B3A2D;
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { height: 50px; }

.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  color: #F5F5F0;
}

.menu li { position: relative; }

.menu a:hover { color: #C8873A; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1B3A2D;
  list-style: none;
  padding: 0.5rem 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  min-width: 220px;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1rem;
}

.dropdown-menu li a:hover {
  background-color: #C8873A; /* fundo laranja */
  color: #FFFFFF;            /* texto branco */
  padding-left: 1rem;        /* mantém indentação leve, sem quebrar layout */
  transition: 0.3s ease;
}
.hamburger {
  display: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.header-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-contact a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.header-contact a:hover img {
  transform: scale(1.2);
}


/* HERO */
.hero {
  background: #1B3A2D;
  position: relative;
  padding: 3rem 0;

  /* curva inferior em U */
  border-bottom-left-radius: 50% 180px;
  border-bottom-right-radius: 50% 180px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  padding: 1rem 0;
}

.hero-text {
  max-width: 520px;
  padding-left: clamp(2rem, 5vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200,135,58,0.06);
  bottom: -100px;
  left: -50px;
  animation: floatCircle 18s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.15) translateY(-30px); }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-height: 480px;
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid #C8873A;   /* moldura principal */
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 420px;
  height: 100%;
  max-height: 480px;
  border: 2px solid rgba(200,135,58,0.5);
  border-radius: 22px;
  transform: translate(15px, 15px);
  z-index: 1;
}

.highlight { color: #C8873A; }
.badge { color: #C8873A; font-weight: 600; }

/* BOTÕES */
.cta-btn {
  display: inline-block;
  background: #C8873A;
  color: #FFFFFF;
  padding: 15px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(200,135,58,0.4);
}

.cta-btn.outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #FFFFFF;
}

.cta-final p {
  margin: 0.5rem 0 0.2rem;
  opacity: 0.9;
}

.cta-final .cta-btn {
  margin-top: 0.5rem;
}

/* SERVIÇOS */
.services { padding: 6rem 0; }
.section-title { text-align: center; font-size: 2rem; color: #1B3A2D; }
.section-line { width: 60px; height: 3px; background: #C8873A; margin: 1rem auto; }
.section-subtitle { text-align: center; color: #666; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  border-top: 3px solid #C8873A;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}

.service-icon { font-size: 2rem; }
.service-card h3 { color: #1B3A2D; }

/* AVALIAÇÕES - HEADER */ 

.avaliacoes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.avaliacoes-header .section-tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C8873A;
  margin-bottom: 0.6rem;
}

.avaliacoes-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1B3A2D;
}

.avaliacoes-header::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #F08A24;
  display: block;
  margin: 25px auto 0;
  border-radius: 3px;
  opacity: 0.8;
}

/* ================= AVALIAÇÕES ================= */

.reviews-section {
  background: #F5F5F0;
  padding: 0rem 0 6rem;
}

.reviews-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

/* LADO ESQUERDO */

.reviews-info {
  text-align: left;
}

.reviews-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.reviews-content h3 {
  color: #1B3A2D;
  margin-bottom: 0.5rem;
}

.stars {
  color: #C8873A;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin: 0.5rem 0;
}

.stars.small {
  font-size: 1rem;
}

.reviews-count {
  color: #666;
  margin-bottom: 1.5rem;
}

/* CARROSSEL */

.reviews-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.review-header h4 {
  color: #1B3A2D;
  font-size: 1rem;
}

.review-header span {
  font-size: 0.8rem;
  color: #777;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

/* SETAS */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1B3A2D;
  color: #FFFFFF;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
  transition: 0.3s;
}

.arrow:hover {
  background: #C8873A;
}

.arrow.left {
  left: -18px;
}

.arrow.right {
  right: -18px;
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .reviews-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reviews-info {
    text-align: center;
  }

  .arrow.left {
    left: 0;
  }

  .arrow.right {
    right: 0;
  }

   .review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
  }

  .arrow.left { left: 0; }
  .arrow.right { right: 0; }
}

/* CTA FINAL */
.cta-final {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  background-image: url('images/escritorio.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27,58,45,0.82);
}

.cta-final .container {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

/* FOOTER */
.footer {
  background: #1B3A2D;
  color: #F5F5F0;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer a:hover { color: #C8873A; }

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 65px;
  height: 55px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img { transform: scale(1.12); }

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero {
    border-bottom-left-radius: 50% 80px;
    border-bottom-right-radius: 50% 80px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align:center; }
  .nav { display: none; flex-direction: column; }
  .hamburger { display: block; }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .header-contact {
    order: 3; /* aparece abaixo do menu e logo */
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

   .hero-image {
    margin-top: 2rem;
  }

  .hero-image img {
    max-height: 320px;
    width: 80%;
  }
  .hero-text {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-image::before {
    display: none; /* evita desalinhamento no mobile */
  }
}


/* ================= MEI PAGE ================= */

.mei-hero {
  background: #1B3A2D;
  padding: 4.5rem 0 7.5rem; /* diminui em cima, compensa embaixo */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50% 140px;
  border-bottom-right-radius: 50% 140px;
}

.mei-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mei-badge {
  color: #C8873A;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.mei-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.mei-hero p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

.mei-hero-cards {
  display: grid;
  gap: 1rem;
}


/* INTRO */
:root {
  --verde: #1B3A2D;
  --verde-deep: #142B20;
  --ambar: #C8873A;
  --ambar-light: rgba(200,135,58,0.1);
  --neutro: #F5F5F0;
  --texto: #1A1A1A;
  --branco: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--neutro); color: var(--texto); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.highlight { color: var(--ambar); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--verde);
  text-align: center;
}
.section-line {
  width: 50px; height: 3px;
  background: var(--ambar);
  margin: 0.8rem auto 1rem;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center; color: #777;
  font-size: 0.95rem; margin-bottom: 3rem;
}



.intro {
  background: var(--branco);
  padding: 2rem 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--verde);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.intro-text p {
  color: #555; line-height: 1.8;
  font-size: 0.95rem; margin-bottom: 1.2rem;
}
.intro-checklist {
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-top: 0.5rem;
}
.intro-check {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.9rem; color: #444;
}
.check-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ambar-light);
  border: 1.5px solid rgba(200,135,58,0.4);
  display: flex; align-items: center; justify-content: center;
  color: #C8873A; font-size: 0.7rem; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.intro-visual {
  background: #FFFFFF;
  border-radius: 24px; padding: 2.5rem;
  border: 1px solid rgba(27,58,45,0.07);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.intro-visual-title {
  font-size: 0.78rem; font-weight: 700;
  color: #C8873A; text-transform: uppercase;
  letter-spacing: 1.5px;
}
.obrigacao-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: #F5F5F0; border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: 0.2s;
}
.obrigacao-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.obrigacao-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--ambar-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.obrigacao-text strong { display: block; font-size: 0.88rem; color: var(--verde); }
.obrigacao-text span { font-size: 0.78rem; color: #999; }
.obrigacao-freq {
  margin-left: auto;
  font-size: 0.7rem; font-weight: 700;
  color: var(--ambar); background: var(--ambar-light);
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}

/* PLANOS */
.mei-planos {
  padding: 6rem 0;
  background: #F5F5F0;
}

.mei-planos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mei-plano-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.mei-plano-card.dark {
  background: #1B3A2D;
  color: #FFFFFF;
}

.mei-plano-card ul {
  margin: 1.5rem 0;
  list-style: none;
}

.mei-plano-card li {
  margin-bottom: 0.6rem;
}

.preco {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.preco span {
  font-size: 0.9rem;
  font-weight: 400;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .mei-hero-grid,
  .mei-intro-grid,
  .mei-planos-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .mei-hero {
    border-bottom-left-radius: 50% 70px;
    border-bottom-right-radius: 50% 70px;
  }
}

/* PLANOS */
.planos {
  background: var(--neutro);
  padding: 6rem 0;
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}

/* Card escuro (MEI Serviços) */
.plano-card {
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

.plano-dark {
  background: var(--verde);
  box-shadow: 0 8px 32px rgba(27,58,45,0.25);
}

.plano-dark::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,135,58,0.06);
  top: -100px; right: -80px;
}

.plano-light {
  background: var(--branco);
  border: 1.5px solid rgba(27,58,45,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.plano-tipo {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}
.plano-dark .plano-tipo { color: rgba(200,135,58,0.7); }
.plano-light .plano-tipo { color: rgba(27,58,45,0.45); }

.plano-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; line-height: 1.2;
  margin-bottom: 0.4rem;
}
.plano-dark .plano-nome { color: white; }
.plano-light .plano-nome { color: var(--verde); }

.plano-desc {
  font-size: 0.85rem; margin-bottom: 2rem;
}
.plano-dark .plano-desc { color: rgba(245,245,240,0.5); }
.plano-light .plano-desc { color: #999; }

.plano-sep {
  height: 1px; margin-bottom: 1.5rem;
}
.plano-dark .plano-sep { background: rgba(255,255,255,0.08); }
.plano-light .plano-sep { background: rgba(27,58,45,0.08); }

.plano-lista {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 2rem; flex: 1;
}
.plano-lista li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem;
}
.plano-dark .plano-lista li { color: rgba(245,245,240,0.85); }
.plano-light .plano-lista li { color: #444; }

.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; flex-shrink: 0;
}
.plano-dark .check-icon { background: rgba(200,135,58,0.2); color: var(--ambar); }
.plano-light .check-icon { background: rgba(27,58,45,0.08); color: var(--verde); }

.plano-preco-area {
  margin-top: auto; padding-top: 1.5rem;
  border-top: 1px solid;
}
.plano-dark .plano-preco-area { border-color: rgba(255,255,255,0.08); }
.plano-light .plano-preco-area { border-color: rgba(27,58,45,0.08); }

.plano-preco {
  display: flex; align-items: flex-end; gap: 0.3rem;
  margin-bottom: 1.2rem;
}
.preco-valor {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; color: var(--ambar);
  line-height: 1;
}
.preco-mes {
  font-size: 0.85rem; color: #888; margin-bottom: 0.3rem;
}
.plano-dark .preco-mes { color: rgba(245,245,240,0.4); }

.plano-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: 30px;
  font-weight: 700; font-size: 0.9rem;
  transition: 0.3s ease; cursor: pointer;
}
.plano-dark .plano-btn {
  background: var(--ambar); color: white;
}
.plano-dark .plano-btn:hover { background: #b06a28; }
.plano-light .plano-btn {
  background: var(--verde); color: white;
}
.plano-light .plano-btn:hover { background: var(--verde-deep); }

.plano-nota {
  font-size: 0.72rem; color: rgba(245,245,240,0.3);
  text-align: center; margin-top: 0.8rem;
}
.plano-light .plano-nota { color: #bbb; }

/* ===== COMO FUNCIONA ===== */
.como {
  background: var(--neutro);
  padding: 6rem 0;
}
.passos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; position: relative; margin-top: 3rem;
}
.passos::before {
  content: "";
  position: absolute;
  top: 36px; left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--ambar), rgba(200,135,58,0.2));
  z-index: 0;
}
.passo {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1rem; position: relative; z-index: 1;
}
.passo-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--verde); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  border: 3px solid var(--neutro);
  box-shadow: 0 0 0 3px var(--ambar);
  flex-shrink: 0;
}
.passo h4 { font-size: 0.9rem; font-weight: 700; color: var(--verde); }
.passo p { font-size: 0.8rem; color: #777; line-height: 1.5; }

/* Lado direito — formulário */
.contato-form-area {
  padding: 2.5rem 3rem;
  display: flex; flex-direction: column;
  margin: 0;  
  background: var(--branco);
}

.contato-info {
  background: var(--verde);
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Elemento decorativo interno */
.contato-info::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200,135,58,0.07);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
}

.contato-info h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--branco);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.contato-info h2 .highlight {
  color: var(--ambar);
}

.contato-info > p {
  color: rgba(245,245,240,0.7);
  font-size: 0.9rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.contato-detalhes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.contato-detalhes div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: rgba(245,245,240,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}

.contato-detalhes div:hover {
  background: rgba(255,255,255,0.1);
}


.form-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--verde);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.form-subtitulo {
  color: #888; font-size: 0.88rem;
  margin-bottom: 2.5rem; line-height: 1.6;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; margin-bottom: 1.2rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--verde); letter-spacing: 0.3px;
}
.form-label span { color: var(--ambar); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  border: 1.5px solid rgba(27,58,45,0.12);
  border-radius: 12px; padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--texto);
  background: var(--neutro);
  transition: 0.25s; outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ambar);
  background: white;
  box-shadow: 0 0 0 4px rgba(200,135,58,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #bbb; }

.form-textarea {
  resize: none; height: 130px;
  line-height: 1.6;
}

/* Seletor de assunto */
.assunto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem; margin-bottom: 1.2rem;
}
.assunto-btn {
  border: 1.5px solid rgba(27,58,45,0.12);
  border-radius: 10px; padding: 10px 8px;
  text-align: center; cursor: pointer;
  font-size: 0.78rem; font-weight: 600;
  color: #888; background: var(--neutro);
  transition: 0.2s; line-height: 1.3;
}
.assunto-btn:hover { border-color: var(--ambar); color: var(--ambar); }
.assunto-btn.active {
  border-color: var(--ambar); color: var(--ambar);
  background: var(--ambar-light);
}
.assunto-icon { font-size: 1.1rem; display: block; margin-bottom: 0.3rem; }

.form-submit {
  background: var(--ambar); color: white;
  border: none; border-radius: 30px;
  padding: 15px 36px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: 0.3s;
  display: inline-flex; align-items: center;
  gap: 0.6rem; margin-top: 0.5rem;
  width: 100%; justify-content: center;
}
.form-submit:hover {
  background: #b06a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,135,58,0.35);
}
.form-submit:active { transform: translateY(0); }

.form-nota {
  text-align: center; font-size: 0.75rem;
  color: #bbb; margin-top: 0.8rem; line-height: 1.6;
}

/* Feedback de envio */

#form-container {
  transition: opacity 0.3s ease;
}

.form-success {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 1rem;
  padding: 3rem; height: 100%;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(52,168,83,0.1);
  border: 2px solid rgba(52,168,83,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--verde);
}
.form-success p { font-size: 0.9rem; color: #888; max-width: 320px; line-height: 1.7; }
.btn-novo {
  background: var(--verde); color: white;
  padding: 11px 24px; border-radius: 30px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
  transition: 0.3s; margin-top: 0.5rem;
}
.btn-novo:hover { background: var(--ambar); }

/* ================= CONTATO LAYOUT ================= */

.contato-wrapper {
  background: var(--neutro);
  padding: 2.0rem 0; 
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;                   /* remover gap entre os lados */
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(27,58,45,0.07);
}

/* Lado direito (texto) */
.contato-info {
  max-width: 480px;
}

.contato-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--branco);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.contato-info p {
  color: var(--branco);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contato-detalhes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #444;
}

.contato-detalhes div {
  background: #FFFFFF;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--ambar);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  color: var(--verde);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-info {
    order: -1; /* aparece acima no mobile */
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
  }

  .contato-detalhes {
    align-items: center;
  }

  .contato-form-area {
    padding: 2rem 1.5rem;
  }
}

.blog-post {
  padding: 4rem 0;
}

.post-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.post-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.post-content p,
.post-content li {
  line-height: 1.7;
  margin-top: 0.8rem;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
}

.back-btn {
  display: inline-block;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.post-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 10px;
  text-align: center;
}

/* ===== BLOG POST ===== */

/* Barra de progresso de leitura */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  background: #C8873A;
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Layout com sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 4rem;
    overflow: visible;
}

.blog-main {
  min-width: 0;
}

/* Botão voltar */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #C8873A;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: gap 0.2s ease;
}
.back-btn:hover { gap: 0.8rem; }

/* Badge de categoria */
.post-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,135,58,0.1);
  color: #C8873A;
  border: 1px solid rgba(200,135,58,0.25);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Título do post */
.post-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1B3A2D;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* Meta info */
.post-meta {
  font-size: 0.82rem;
  color: #aaa;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-meta::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: #C8873A;
  border-radius: 2px;
}

/* Imagem de capa */
.post-capa {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.post-capa-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Conteúdo do post */
.post-content {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
}

.post-content p {
  margin-bottom: 1.3rem;
}

.post-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1B3A2D;
  margin: 2.2rem 0 0.8rem;
  padding-left: 1rem;
  border-left: 3px solid #C8873A;
  line-height: 1.3;
}

.post-content ul,
.post-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-content ul li,
.post-content ol li {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 0.3rem;
}

.post-content ul li::marker { color: #C8873A; }
.post-content ol li::marker { color: #C8873A; font-weight: 700; }

/* CTA dentro do post */
.post-cta {
  background: #1B3A2D;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,135,58,0.07);
  top: -80px; right: -60px;
}
.post-cta h3 {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.post-cta p {
  color: rgba(245,245,240,0.65);
  font-size: 0.88rem;
  margin-bottom: 1.3rem;
  position: relative; z-index: 1;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C8873A;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s;
  position: relative; z-index: 1;
}
.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(200,135,58,0.4);
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
  display: flex;
  position: block;
  flex-direction: column;
  gap: 1.5rem;
  top: 100px;
  align-self: start;
}

.sidebar-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(27,58,45,0.07);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #C8873A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-card p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.6;
}

.sidebar-autora {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.autora-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #1B3A2D;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.sidebar-autora strong {
  display: block;
  font-size: 0.88rem;
  color: #1B3A2D;
  font-weight: 700;
}
.sidebar-autora span {
  font-size: 0.74rem;
  color: #aaa;
}

.sidebar-cta {
  display: block;
  text-align: center;
  background: #C8873A;
  color: white;
  padding: 10px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: 0.3s;
}
.sidebar-cta:hover { background: #b06a28; }

.sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sidebar-post-link {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(27,58,45,0.06);
  transition: color 0.2s;
}
.sidebar-post-link:last-child { border-bottom: none; }
.sidebar-post-link:hover { color: #C8873A; }

/* Responsivo */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
  .post-capa-img {
    height: 240px;
  }
}

/* OVERLAY ESCURO */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  
  display: none;
  align-items: center;
  justify-content: center;
  
  z-index: 9999;
}

/* CAIXA */
.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

/* BOTÃO */
.popup-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #0b1f3a; /* sua paleta */
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}