:root {
  --bg-1: #c3dfd7;
  --bg-2: #c8dfd2;
  --bg-3: #cddfcd;
  --bg-4: #d2dfc8;
  --bg-5: #d7dfc3;
  --accent: #25d366;
  --dark: #2d3748;
  --text: #333;
  --muted: #55606a;
  --radius: 12px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-1);
  width: 100%; /* ADICIONE ESTA LINHA */
  overflow-x: hidden; /* ADICIONE ESTA LINHA */
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden; /* ADICIONE ESTA LINHA */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 40;
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
/* Logo como link */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
}

main {
  padding-top: auto;
}
section {
  padding: 20px 18px 30px 18px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.kicker {
  color: var(--muted);
  font-weight: 600;
}
h1 {
  margin: 8px 0 12px;
  font-size: 28px;
}
.lead {
  color: var(--muted);
  margin-bottom: 16px;
}
.cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.btn-whatsapp {
  background: var(--accent);
  color: #ffffff;
}
.btn-ghost {
  background: transparent;
  border: 1px solid #ccc;
  color: var(--text);
}

.home {
  background: var(--bg-1);
}

.sobre-mim {
  background: var(--bg-1);
}
.especialidades {
  background: var(--bg-2);
}
.abordagem {
  background: var(--bg-3);
}
.como-funciona {
  background: var(--bg-4);
}
.faq {
  background: var(--bg-5);
}
.blog-section {
  background: var(--bg-4);
}
.links-uteis {
  background: var(--bg-3);
}
.contato {
  background: var(--bg-2);
}

.sobre-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}
.photo {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.how {
  display: flex;
  gap: 20px;
  align-items: center;
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.post {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}
.post h4 {
  margin: 8px 0;
}
.read {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.big-whatsapp {
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
}

footer {
  background: var(--dark);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.whatsapp-fixed {
  display: none;
}
.whatsapp-fixed button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.18);
}

/* Responsividade */
@media (max-width: 1000px) {
  .grid,
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-right {
    width: 320px;
  }
}
@media (max-width: 700px) {
  .home-inner {
    flex-direction: column-reverse;
  }
  .home-right {
    width: 100%;
  }
  .sobre-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid,
  .posts {
    grid-template-columns: 1fr;
  }
  header {
    height: 56px;
  }
  .nav-wrap {
    padding: 0 12px;
  }
  nav {
    display: none;
  }
  .whatsapp-fixed {
    display: flex;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
  }
}

.small {
  font-size: 14px;
  color: var(--muted);
}
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2d3748;
  line-height: 1.6;
}

/* HOME SECTION - AJUSTES SOLICITADOS */
.home {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* IMAGEM PARA DESKTOP (horizontal) */
.home {
  background: url('img/home-horizontal.webp') no-repeat center center/cover;
}

.home-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

/* SPAN MAIOR OU IGUAL */
.home-content h1 span {
  color: #25d366;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4.5vw, 3rem); /* AUMENTEI O TAMANHO */
  font-weight: 800; /* MAIS NEGRITO */
}

.home-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content {
  text-align: center;
  max-width: 800px;
  color: #fff;
  width: 100%;
}

.home-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

/* SPAN SEMPRE EM CIMA */
.home-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-whatsapp {
  display: inline-block;
  padding: clamp(12px, 3vw, 16px) clamp(24px, 4vw, 32px);
  background: #25d366;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  border: 2px solid #25d366;
  margin-bottom: 15px;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25d366;
  transform: translateY(-2px);
}

/* INFO EMPILHADA */
.mini-info {
  margin-top: 10px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  opacity: 0.9;
  line-height: 1.4;
}

.mini-info span {
  display: block;
}

.crp-info {
  font-weight: 600;
  margin-bottom: 4px;
}

.atendimento-info {
  opacity: 0.8;
}

/* ===== RESPONSIVIDADE ===== */

/* TABLET */
@media (max-width: 1024px) {
  .home {
    height: 80vh;
    min-height: 500px;
  }
}

/* MOBILE - MUDANÇA DE IMAGEM */
@media (max-width: 768px) {
  .home {
    background: url('img/home-vertical.webp') no-repeat center center/cover;
    height: 85vh;
    min-height: 600px;
    padding: 20px 15px;
  }

  .home-overlay {
    background: rgba(30, 41, 59, 0.85);
    padding-top: 0px;
    padding: 0 15px;
  }
}

/* MOBILE PEQUENO - INFO EMPILHADA */
@media (max-width: 480px) {
  .home {
    height: 90vh;
    min-height: 650px;
  }

  .mini-info span {
    display: block;
  }

  .crp-info {
    margin-bottom: 2px;
  }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
  .home {
    height: 120vh;
    min-height: 400px;
  }
}

/* SOBRE MIM - VERSÃO APRIMORADA */
.sobre-mim {
  padding: 20px 10px;
}

.sobre-container {
  display: flex;
  align-items: center;
  gap: 60px; /* Espaço moderno entre texto e foto */
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center;
}

.sobre-texto {
  flex: 1;
  min-width: 300px;
}

.sobre-texto h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 50px; /* Espaço extra para a linha */
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px; /* Espaço interno para a linha */
}

.sobre-texto h2::after {
  content: '';
  position: absolute;
  bottom: 0; /* Agora fica no fundo do padding */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.sobre-texto p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sobre-foto {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.sobre-foto img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px; /* Cantos suaves em vez de círculo */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-foto img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .sobre-container {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sobre-mim {
    padding: 15px 7px;
  }

  .sobre-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .sobre-texto h2::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Ajuste esta valor para distanciar do texto */
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Largura da linha */
    height: 3px; /* Espessura da linha */
    background: var(--accent); /* Cor verde */
    border-radius: 2px;
  }

  .sobre-foto img {
    max-width: 280px;
  }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
  .sobre-mim {
    padding: 25px 10px;
  }

  .sobre-texto p {
    font-size: 1rem;
    text-align: center; /* CORREÇÃO: Alterado de 'left' para 'center' */
  }
}

/* ESPECIALIDADES */
/* ESPECIALIDADES - VERSÃO APRIMORADA */
.especialidades {
  padding: 20px 10px;
  text-align: center;
}

.especialidades h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.especialidades h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.cards-especialidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  flex-grow: 1;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .especialidades {
    padding: 15px 7px;
  }

  .cards-especialidades {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .card {
    padding: 20px;
  }

  .card img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .cards-especialidades {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ABORDAGEM */
.abordagem {
  padding: 20px 10px;
}

.abordagem-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.abordagem-texto {
  text-align: center;
  flex: 1;
  min-width: 300px;
  padding: 5px;
}

.abordagem-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2d3748;
}

.abordagem-texto p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.abordagem-foto {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.abordagem-foto img {
  width: 105%;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .abordagem-container {
    flex-direction: column;
    text-align: center;
  }

  .abordagem-texto {
    order: 1;
  }

  .abordagem-foto {
    order: 2;
    margin-top: 0px;
  }
}

/* COMO FUNCIONA */
.como-funciona {
  padding: 20px 10px;
}

.como-funciona h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #2d3748;
}

.funciona-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.funciona-text {
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.funciona-text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.funciona-text ul {
  list-style: none; /* Remove os marcadores pretos */
  padding-left: 0; /* Remove o recuo padrão */
  margin: 20px 0;
}

.funciona-text li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 0; /* Garante que não há recuo */
}

.funciona-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.funciona-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog */
.blog-section {
  padding: 20px 10px;
  text-align: center;
}

.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Container principal */
.blog-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* Carrossel */
.blog-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.blog-carousel::-webkit-scrollbar {
  display: none;
}

/* Cards */
.blog-card {
  flex: 0 0 300px;
  max-width: 90vw;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  scroll-snap-align: center;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.blog-card a:hover {
  text-decoration: underline;
}

/* Botões do carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:disabled {
  display: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 80%;
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .blog-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.blog-section {
  text-align: center;
  display: block;
}

.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  display: block;
  width: 100%;
}

.blog-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* CONTATO */
.contato {
  padding: 20px 10px;
  color: #2d3748;
  text-align: center;
}

.contato h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a202c;
}

.contato-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contato-info {
  margin: 25px 0;
  font-size: 1.05rem;
  color: #4a5568;
}

.assinatura {
  margin-top: 35px;
  font-size: 1rem;
  font-style: italic;
  color: #2d3748;
}

/* FAQ */
/* FAQ - VERSÃO APRIMORADA */
.faq {
  padding: 20px 10px;
}

.faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
}

.faq h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.faq-grid {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.faq-col {
  flex: 1;
  min-width: 300px;
}

.faq-categoria {
  margin-bottom: 35px;
}

.faq-categoria h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-light);
  font-weight: 600;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.05rem;
  background: #f8fafc;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question:hover {
  background: #edf2f7;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px;
  background: #fff;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid #e2e8f0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .faq-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 15px 7px;
  }

  .faq-grid {
    flex-direction: column;
    gap: 0;
  }

  .faq-col {
    width: 100%;
  }

  .faq-categoria {
    margin-bottom: 25px;
  }

  .faq-categoria h3 {
    font-size: 1.2rem;
  }

  .faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 15px 7px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .faq-categoria h3 {
    font-size: 1.1rem;
  }
}

/* ===== FAQ BOTÃO CENTRALIZADO ===== */
.faq .cta-container {
  text-align: center;
  width: 100%;
}

.faq .btn-whatsapp {
  display: inline-block;
  margin: 0 auto;
}

/* ===== Links Úteis (novo, responsivo, empilhado) ===== */
.links-uteis {
  padding: 20px 10px;
  color: #2c3e50;
}

/* Wrapper central — garante que header e grid não fiquem lado a lado */
.links-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Header (titulo + descrição) — empilhados e centralizados */
.links-header {
  width: 100%;
  text-align: center;
  margin-bottom: 28px; /* espaço entre header e grid */
}

.links-header h2 {
  font-size: 2rem;
  margin: 0 0 8px 0;
  color: #2c3e50;
}

.links-desc {
  margin: 0 auto;
  color: #55606a;
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* GRID de cards (sempre abaixo do header) */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 colunas */
  gap: 20px;
  width: 100%;
  margin-top: 8px;
}

/* Card individual */
.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}

/* Hover */
.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.1);
  background: #eefaf4;
}

/* Emoji + texto */
.emoji {
  font-size: 1.6rem;
  line-height: 1;
  width: 34px;
  text-align: center;
}

.link-text {
  font-size: 1rem;
  text-align: left;
  display: block;
}

/* RESPONSIVIDADE */
/* Tablet / small desktop -> 2 colunas */
@media (max-width: 900px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile pequeno -> 1 coluna */
@media (max-width: 600px) {
  .links-grid {
    grid-template-columns: 1fr;
  }

  .links-header h2 {
    font-size: 1.6rem;
  }

  .links-desc {
    font-size: 1rem;
    padding: 0 12px;
  }

  .link-card {
    padding: 14px;
  }
}

/* ===== HEADER PROFISSIONAL ===== */

/* Logo */
.logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Navegação Desktop */
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

/* Efeito Hover */
nav a:hover {
  color: var(--accent);
}

/* Linha inferior no hover */
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Navegação ativa (opcional) */
nav a.active {
  color: var(--accent);
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
  .nav-wrap {
    justify-content: center; /* Centraliza o logo */
  }

  nav {
    display: none; /* Esconde os links */
  }

  .logo-img {
    height: 40px; /* Logo um pouco menor no mobile */
  }
}

/* VALOR MAIS BAIXO AINDA */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px; /* Tente este */
}

section {
  scroll-margin-top: 35px;
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 55px;
  }

  section {
    scroll-margin-top: 55px;
  }
}

/* ===== LINHA VERDE PARA TODAS AS SEÇÕES ===== */

/* Minha Abordagem */
.abordagem-texto h2 {
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.abordagem-texto h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
}

/* Como Funciona */
.como-funciona h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
  display: block;
  width: 100%;
}

.como-funciona h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
}

/* Blog */
.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.blog-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
}

/* Links Úteis */
.links-header h2 {
  font-size: 2rem;
  margin: 0 0 40px 0;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.links-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
}

/* Contato */

.contato-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.contato-conteudo {
  flex: 2 1 400px;
  text-align: left;
  text-align: center;
}

.contato h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a202c;
}

.contato-text {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 600px;
  color: #4a5568;
}

.btn-whatsapp {
  display: inline-block;
  padding: 18px 35px;
  background: #4fce5d;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, background 0.3s;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: scale(1.05);
}

.contato-info {
  margin: 25px 0;
  font-size: 1.05rem;
  color: #4a5568;
}

.assinatura {
  margin-top: 25px;
  font-size: 1rem;
  font-style: italic;
  color: #2d3748;
}

.contato-img {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.contato-img img {
  width: 260px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    text-align: center;
  }

  .contato-conteudo {
    text-align: center;
  }

  .contato-img {
    order: 2; /* foto abaixo no mobile */
  }

  .contato-img img {
    width: 180px;
    margin-top: 25px;
  }
}
