@font-face {
  font-family: 'Bookold';
  src: url('/font/BOOKOS-4A7D2t_s.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-azul: #3c485e;
  --color-dourado: #bb9684;
  --color-dourado-dark: #a6806e;
  --color-rosado: #d4c0b2;
  --color-rosado-50: rgba(212, 192, 178, 0.05);
  --color-preto: #2d2d2d;
  --color-bg: #fdfbf9;

  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Bookold', Georgia, serif;

  --shadow-azul: 0 10px 15px -3px rgba(60, 72, 94, 0.3);
  --shadow-dourado: 0 10px 15px -3px rgba(187, 150, 132, 0.3);

  --radius-sm: 8px;
  --radius-diagonal-sm: 15px 0 15px 0;
  --radius-diagonal: 50px 0 50px 0;
  --transition-default: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-azul);
}

body {
  font-family: var(--font-sans);
  background-color: #1a1f29;
  color: var(--color-preto);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--color-azul);
  line-height: 1.2;
}

.highlight {
  color: var(--color-dourado);
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: white;
}

.mt-3 {
  margin-top: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-dourado);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-default);
}

.btn-primary:hover {
  background: var(--color-dourado-dark);
  box-shadow: var(--shadow-dourado);
  transform: translateY(-2px);
}

.btn-whatsapp.outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-dourado);
  color: var(--color-dourado);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 48px;
  transition: var(--transition-default);
}

.btn-whatsapp.outline:hover {
  background: var(--color-dourado);
  color: var(--color-azul);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--color-azul);
  z-index: 100;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-azul);
  line-height: 1;
}

.logo-text small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-dourado);
  text-transform: uppercase;
}

.logo-image {
  height: 45px;
  width: auto;
  display: block;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 5rem 0;
  /* Espaço para o header */
  background: var(--color-azul) url('hero.webp') center/cover no-repeat;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 72, 94, 0.80);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 1.8rem;
  /* Menor no mobile */
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1rem;
  /* Menor no mobile */
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background: var(--color-bg);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  z-index: 1;
}

/* Pain */
.pain-section {
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.pain-section::before,
.pain-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.pain-section::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.pain-section::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

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

.section-title h2 {
  font-size: 2rem;
}

.pain-marquee-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.pain-marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 1.5rem;
  min-width: 100%;
  animation: scroll-marquee-pain 45s linear infinite;
}

.pain-marquee-wrapper:hover .pain-marquee-group {
  animation-play-state: paused;
}

@keyframes scroll-marquee-pain {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 1.5rem));
  }
}

.pain-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-diagonal-sm);
  border: 1px solid rgba(60, 72, 94, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: var(--transition-default);
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-azul);
}

.pain-icon {
  margin-bottom: 1rem;
  background: var(--color-rosado-50);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--color-dourado);
  font-size: 1.5rem;
}

.pain-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

@media(max-width: 767px) {
  .pain-card {
    width: 85vw;
  }
}

/* Solution */
.solution-section {
  padding: 3rem 0;
  /* Menos padding no mobile */
}

.solution-content {
  display: grid;
  gap: 2rem;
  /* Menos gap no mobile */
}

.solution-text h2 {
  font-size: 1.8rem;
  /* Menor no mobile */
}

.solution-text p {
  font-size: 0.95rem;
  /* Menor no mobile */
}

.solution-benefits {
  list-style: none;
  margin-top: 1.5rem;
}

.solution-benefits li {
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  /* Menor no mobile */
}

.image-placeholder {
  background: var(--color-bg);
  border-radius: var(--radius-diagonal);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-rosado);
}

.solution-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-diagonal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Focused Solutions */
/* Centered text and focused areas */
.focused-solutions-section {
  padding: 3rem 0;
  background-color: var(--color-bg);
}

.focused-solutions-section h2 {
  font-size: 1.8rem;
  /* Menor no mobile */
  color: var(--color-azul);
}

.focused-grid {
  display: grid;
  gap: 1.2rem;
  /* Menos gap no mobile */
  text-align: left;
}

.focused-card {
  background: white;
  padding: 1.5rem;
  /* Menos padding no mobile */
  border-radius: var(--radius-sm);
  border-top: 4px solid var(--color-dourado);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition-default);
}

.focused-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dourado);
}

.focused-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  /* Menor no mobile */
  color: var(--color-azul);
  margin-bottom: 0.75rem;
}

.focused-card p {
  font-size: 0.95rem;
  /* Menor no mobile */
}

/* Authority */
.authority-section {
  padding: 5rem 0;
  background: var(--color-azul);
  color: white;
}

.authority-section h2 {
  color: white;
  margin-bottom: 2rem;
  /* Menos gap no mobile */
  font-size: 1.8rem;
  /* Menor no mobile */
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  /* Menos gap no mobile */
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  /* Menor no mobile */
  color: var(--color-dourado);
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.95rem;
  /* Menor no mobile */
  font-weight: 500;
}

/* Lawyer Card */
.lawyer-card {
  background: white;
  border-radius: var(--radius-diagonal);
  padding: 2rem 1.5rem;
  /* Ajuste padding no mobile */
  margin-top: 3rem;
  /* Menos margin no mobile */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Menos gap no mobile */
  align-items: center;
  text-align: center;
  color: var(--color-preto);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lawyer-image {
  flex-shrink: 0;
  width: 120px;
  /* Menor no mobile */
  height: 120px;
  /* Menor no mobile */
  border: 3px solid var(--color-dourado);
  border-radius: var(--radius-diagonal-sm);
  padding: 0.25rem;
}

.lawyer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.lawyer-tag {
  color: var(--color-dourado);
  text-transform: uppercase;
  font-size: 0.7rem;
  /* Menor no mobile */
  font-weight: bold;
  letter-spacing: 1px;
}

.lawyer-info h3 {
  font-size: 1.6rem;
  /* Menor no mobile */
  margin: 0.5rem 0 0.2rem;
}

.lawyer-oab {
  color: var(--color-dourado);
  font-weight: bold;
  font-size: 0.85rem;
  /* Menor no mobile */
  margin-bottom: 1rem;
}

.lawyer-desc {
  font-size: 0.9rem;
  /* Menor no mobile */
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  /* Ajuste de linha no mobile */
}

/* FAQ */
.faq-section {
  padding: 3rem 0;
  /* Menos padding no mobile */
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
  /* Menos gap no mobile */
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  /* Menor no mobile */
  font-weight: 600;
  color: var(--color-azul);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  transition: var(--transition-default);
  flex-shrink: 0;
  /* Garante que o ícone não se deforme em textos longos */
  margin-left: 1rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-default);
}

.faq-answer p {
  font-size: 0.95rem;
  /* Menor no mobile */
}

.faq-item.active .faq-answer {
  max-height: 300px;
  /* Aumentar para lidar no mobile com muito texto */
  padding-bottom: 1rem;
}

/* CTA & Footer */
.cta-section {
  padding: 3rem 0;
  /* Menos padding no mobile */
  background: var(--color-bg);
}

.cta-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  /* Menos gap no mobile */
  background: white;
  padding: 2rem;
  /* Menos padding no mobile */
  border-radius: var(--radius-diagonal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-action {
  text-align: center;
}

.cta-action h2 {
  font-size: 1.6rem;
  /* Menor no mobile */
  margin-bottom: 1rem;
  color: var(--color-azul);
}

.cta-action p {
  margin-bottom: 1.5rem;
  /* Menor gap no mobile */
  font-size: 0.95rem;
  /* Menor no mobile */
  color: var(--color-preto);
}

.cta-contact {
  text-align: center;
  padding-top: 1.5rem;
  /* Menor padding no mobile */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-contact h3 {
  font-size: 1.3rem;
  /* Menor no mobile */
  margin-bottom: 0.75rem;
  /* Menor gap no mobile */
  color: var(--color-azul);
}

.cta-contact p {
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  /* Menor no mobile */
}

.cta-large {
  font-size: 1.1rem;
  /* Menor no mobile */
  padding: 0.8rem 1.8rem;
  /* Menor no mobile */
  display: inline-block;
  width: 100%;
  /* Total largura no mobile */
}

.footer {
  background: #1a1f29;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  /* Menor no mobile */
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: var(--transition-default);
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 90px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Desktop */
@media(min-width: 768px) {
  .hero {
    padding: 6rem 0 5rem 0;
  }

  .pain-section,
  .solution-section,
  .focused-solutions-section,
  .authority-section,
  .faq-section,
  .cta-section {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero .subtitle {
    font-size: 1.25rem;
  }

  /* Resetando reduções mobile */
  .section-title h2,
  .solution-text h2,
  .focused-solutions-section h2,
  .authority-section h2 {
    font-size: 2.2rem;
  }

  .solution-text p,
  .solution-benefits li,
  .focused-card p,
  .stat-label,
  .lawyer-desc,
  .faq-question,
  .faq-answer p,
  .cta-action p,
  .cta-contact p {
    font-size: 1.05rem;
  }

  .focused-card h4 {
    font-size: 1.4rem;
  }

  .lawyer-image {
    width: 150px;
    height: 150px;
  }

  .lawyer-tag {
    font-size: 0.8rem;
  }

  .lawyer-info h3 {
    font-size: 2rem;
  }

  .lawyer-oab {
    font-size: 1rem;
  }

  .cta-large {
    width: auto;
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }

  .cta-action h2 {
    font-size: 2.2rem;
  }

  .cta-contact h3 {
    font-size: 1.5rem;
  }



  .solution-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .focused-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .lawyer-card {
    flex-direction: row;
    padding: 3rem;
    align-items: flex-start;
    text-align: left;
  }

  .cta-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    text-align: left;
  }

  .cta-contact {
    flex: 1;
    text-align: left;
    padding-top: 0;
    border-top: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 2rem;
  }

  .cta-action {
    flex: 1.5;
    text-align: left;
  }

  .image-placeholder {
    height: 400px;
  }

  .solution-img {
    max-height: 500px;
  }
}

/* Animations Scroll & Utilities */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badges Marquee */
.trust-badges {
  background: var(--color-bg);
  padding: 2.5rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  display: flex;
}

.trust-badges::before,
.trust-badges::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-badges::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.trust-badges::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

.marquee-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  min-width: 100%;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-wrapper:hover .marquee-group {
  animation-play-state: paused;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--color-azul);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition-default);
  width: max-content;
}

.badge-card:hover {
  background: white;
  transform: translateY(-3px);
  border-color: rgba(187, 150, 132, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge-card svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 1.5rem));
  }
}

@media(max-width: 767px) {
  .badge-card {
    min-width: 80vw;
    justify-content: center;
  }
}

/* Steps Timeline */
.steps-section {
  padding: 4rem 0;
  background: var(--color-bg);
  overflow: hidden;
}

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

/* Base Mobile Vertical Timeline */
.steps-grid {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Linha central mobile */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--color-rosado);
  transform: translateX(-50%);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(60, 72, 94, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-default);
  width: calc(50% - 30px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Alinhamento alternado mobile */
.step-card:nth-child(odd) {
  align-self: flex-start;
}

.step-card:nth-child(even) {
  align-self: flex-end;
}

/* Bolinha indicadora alternada */
.step-card::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--color-dourado);
  border: 4px solid white;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 2px var(--color-rosado);
}

.step-card:nth-child(odd)::before {
  right: -42px;
}

.step-card:nth-child(even)::before {
  left: -42px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dourado);
  border-color: rgba(187, 150, 132, 0.3);
}

.step-icon {
  background: var(--color-bg);
  color: var(--color-dourado);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

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

.step-card h4 {
  font-family: var(--font-serif);
  color: var(--color-azul);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: var(--color-azul);
  color: white;
  padding: 1rem 1.5rem;
  z-index: 10000;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  display: flex !important;
  justify-content: center;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.cookie-banner.show {
  transform: translateY(0);
  visibility: visible;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.cookie-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin: 0;
}

.cookie-content a {
  color: var(--color-dourado);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 100%;
  justify-content: center;
}

.cookie-buttons button {
  flex: 1;
  max-width: 150px;
  padding: 0.7rem 1rem !important;
  display: inline-flex;
  justify-content: center;
}

@media(min-width: 768px) {

  .pain-section::before,
  .pain-section::after {
    width: 150px;
  }

  .trust-badges::before,
  .trust-badges::after {
    width: 150px;
  }

  .steps-section {
    padding: 5rem 0;
  }

  .steps-grid {
    flex-direction: row;
    gap: 1rem;
    max-width: 1200px;
  }

  /* Linha central desktop é horizontal */
  .steps-grid::before {
    top: 30px;
    left: 10%;
    right: 10%;
    bottom: auto;
    width: 80%;
    height: 4px;
    transform: none;
  }

  .step-card {
    width: 25%;
    align-self: flex-start !important;
    padding: 2rem 1.5rem;
    padding-top: 3.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
  }

  /* Bolinha indicadora no topo para todos */
  .step-card::before {
    top: 20px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }

  .step-card:nth-child(even)::before,
  .step-card:nth-child(odd)::before {
    top: 20px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-content p {
    text-align: left;
  }

  .cookie-buttons {
    width: auto;
  }
}

/* Blog Section */
.blog-section {
  padding: 3rem 0;
}

.blog-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.blog-track-container {
  overflow: hidden;
  width: 100%;
}

.blog-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

.blog-card {
  flex: 0 0 calc(25% - 1.125rem); /* 4 cards por vez no desktop */
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dourado);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--color-rosado-50);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-azul);
  line-height: 1.3;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--color-preto);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-title-link {
  text-decoration: none;
  display: block;
}

.blog-card-title-link:hover h3 {
  color: var(--color-dourado);
}

.blog-link {
  color: var(--color-dourado);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.blog-link:hover {
  color: var(--color-dourado-dark);
  gap: 0.75rem;
}

.carousel-btn {
  background: var(--color-azul);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-default);
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-dourado);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1200px) {
  .blog-card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 cards */
  }
}

@media (max-width: 850px) {
  .blog-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 cards */
  }
}

@media (max-width: 550px) {
  .blog-card {
    flex: 0 0 100%; /* 1 card */
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
  }
}

/* Article Page Specific */
.article-header {
  position: relative;
  padding: 8rem 0 6rem;
  background: var(--color-azul);
  color: white;
  text-align: center;
  overflow: hidden;
}

.article-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.1); /* Ajuste para não aparecer borda branca do blur */
  z-index: 1;
}

.article-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 72, 94, 0.7);
  z-index: 2;
}

.article-header .container {
  position: relative;
  z-index: 3;
}

.article-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.article-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-container {
  max-width: 800px;
  margin: -2rem auto 4rem;
  background: white;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.article-content {
  font-size: 1.1rem;
  color: var(--color-preto);
  line-height: 1.8;
}

.article-content h2,
.article-content h3 {
  margin: 2rem 0 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-azul);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: var(--transition-default);
}

.back-to-blog:hover {
  color: var(--color-dourado);
  transform: translateX(-5px);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-container {
    padding: 4rem;
  }

  .article-header h1 {
    font-size: 3.5rem;
  }
}