:root {
  --color-essence: #0c3777;
  --color-light: #f8f5f0;
  --color-dark: #1a1a1a;
  --color-accent: #d4af8c;
  --color-text: #333333;
  --color-gray: #6b7280;
  --border-radius: 12px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: var(--color-dark);
}
/* Navbar transparente por padrão */
.navbar {
  background-color: transparent !important;
  transition: all 0.3s ease-in-out;
  box-shadow: none !important;
}

/* Quando a classe 'bg-white' for adicionada pelo JS ao fazer scroll */
.navbar.bg-white {
  background-color: white !important;
}

/* Ajuste das cores dos links sobre a imagem escura */
.navbar:not(.bg-white) .nav-link,
.navbar:not(.bg-white) .navbar-brand {
  color: white !important; /* Ou use var(--color-accent) se preferir */
}

/* Mantém o logo em destaque mesmo sobre a imagem */
.navbar:not(.bg-white) .navbar-brand {
  color: var(--color-accent) !important;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-accent) !important;
  align-items: center;
}

.navbar-brand span {
  font-style: italic;
  font-weight: 100;
}

.nav-link {
  font-weight: 500;
  color: var(--color-dark) !important;
  position: relative;
  padding: 5px 0 !important;
  margin: 0 10px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-accent {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius);
}

.btn-accent:hover {
  background-color: var(--color-gray) !important;
  border-color: var(--color-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgb(5, 13, 24);
  transition: all 0.3s ease;
}

.btn-outline-primary {
  color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  background-color: transparent;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius);
}

.btn-outline-primary:hover {
  background-color: rgba(5, 13, 24, 0.05) !important;
  color: var(--color-light) !important;
  border-color: var(--color-light) !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

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

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
}

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

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(
    135deg,
    rgba(248, 245, 240, 0.9) 0%,
    rgba(232, 226, 214, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
  background-image: url("../js/imagens/hero.png");
  background-position: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-accent);
}

.hero-title span {
  font-style: italic;
  color: white;
}

.hero-text strong {
  color: white;
  font-weight: 600;
}

.hero-text {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
}

.hero-subtitle-insight {
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.hero-text-insight {
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 10px;
}

.hero-highlight {
  background-color: rgba(5, 13, 24, 0.08);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-accent);
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.hero-highlight p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}

/* Cards com Imagens */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(5, 13, 24, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}
.card-item {
  text-align: center;
  padding: 30px 20px 0 20px;
}

.parallax_1 {
  background-image: url("../js/imagens/força.png");

  min-height: 800px; /* ajusta à tua hero */

  background-attachment: fixed;
  background-position: center 1%;
  background-repeat: no-repeat;
  background-size: auto;
}

.parallax_2 {
  background-image: url("../js/imagens/janela.png");

  min-height: 800px; /* ajusta à tua hero */

  background-attachment: fixed;
  background-position: center 1%;
  background-repeat: no-repeat;
  background-size: auto;
}

/* Imagens enquadradas nos cards */
.img-frame {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-frame:hover img {
  transform: scale(1.05);
}

.img-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

.identify-card {
  border-top: 4px solid var(--color-essence);
}

.identify-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.identify-card ul li i {
  flex: 0 0 auto;
  margin-top: 3px;
}

/* Problem/Solution Cards */
.problem-card {
  border-top: 4px solid #e53e3e;
}
.problem-card .card-text {
  margin-bottom: 1.5rem;
}

.problem-card ul {
  text-align: left;
  margin-top: 1.5rem;
}

.problem-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.problem-card ul li i {
  flex: 0 0 auto;
  margin-top: 3px;
}

.solution-card {
  border-top: 4px solid green;
}
.solution-card .card-text {
  margin-bottom: 1.5rem;
}

.solution-card ul {
  text-align: left;
  margin-top: 1.5rem;
}

.solution-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.solution-card ul li i {
  flex: 0 0 auto;
  margin-top: 3px;
}

.problem-card .card-icon {
  color: #e53e3e;
}

.solution-card .card-icon {
  color: green;
}

/* PARA QUEM É */
.for-whom {
  background-color: rgba(42, 92, 94, 0.03);
  padding: 80px 0;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.for-whom-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-subtle);
  text-align: center;
  transition: var(--transition);
}

.for-whom-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.for-whom-card.is-for {
  border-top: 5px solid var(--color-essence);
}

.for-whom-card.not-for {
  border-top: 5px solid var(--color-gray);
}

.for-whom-icon {
  font-size: 3rem;
  margin-bottom: 25px;
}

.is-for .for-whom-icon {
  color: var(--color-essence);
}

.not-for .for-whom-icon {
  color: var(--color-gray);
}

.for-whom-card h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.for-whom-card ul {
  list-style: none;
  text-align: left;
}

.for-whom-card li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

/* Método ESA */
.method {
  background-color: white;
  padding: 80px 0;
}

.method-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.pillar-card {
  background-color: white;
  padding: 50px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-subtle);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(42, 92, 94, 0.1);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--color-accent);
}

.pillar-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--color-essence);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.pillar-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--color-essence);
}

/* ETAPAS */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}

.method-steps:before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 3px;
  background-color: rgba(42, 92, 94, 0.1);
  z-index: 1;
}

.step {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-light);
  border: 3px solid var(--color-essence);
  color: var(--color-essence);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 40px;
  flex-shrink: 0;
}

.step-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-subtle);
  flex: 1;
}

.step-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--color-essence);
}

/* Pricing Section */
.pricing-card {
  position: relative;
  border: 2px solid var(--color-essence);
  text-align: center;
  padding-top: 40px;
  overflow: visible;
}

.price {
  font-size: 3.5rem;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-essence);
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
}

.pricing-card.card {
  border: 2px solid var(--color-essence);
  transform: scale(1.05);
}

/* Testimonials com Imagens */
.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--color-accent);
}

.offer-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: visible;
  text-align: left;
}

.offer-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-essence);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Top borders para diferenciar “níveis” */
.offer-live {
  border-top: 4px solid #0d6efd;
}
.offer-course {
  border-top: 4px solid var(--color-essence);
}
.offer-consult {
  border-top: 4px solid #16a34a;
}

.offer-icon {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.offer-list li i {
  flex: 0 0 auto;
  margin-top: 3px;
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: white;
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(42, 92, 94, 0.05);
}

.faq-answer {
  background-color: white;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 1.5rem 0;
  margin: 0;
}

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

/* Footer */
footer {
  background-color: var(--color-dark);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}



.footer-column2 h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  margin-left: 125px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column2 h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-links2 {
  list-style: none;
  padding: 0;
  margin-left: 125px;
}

.footer-links2 li {
  margin-bottom: 0.75rem;
}

.footer-links2 a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links2 a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--color-accent);
  transform: translateY(-5px);
}

/* ============================
   SECÇÃO: CLAREZA DAS OPÇÕES
============================ */

.choice-card {
  text-align: left;
}

.choice-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-essence);
  opacity: 0.9;
}

.choice-block {
  background: rgba(248, 245, 240, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 14px 14px 8px;
}

.choice-block h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-essence);
  font-weight: 700;
}

.choice-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.choice-block li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
}

.choice-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 900;
}


/* bloco final */
.decision-box {
  background: rgba(5, 13, 24, 0.06);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--border-radius);
  padding: 22px;
  text-align: center;
}

.decision-box h3 {
  margin-bottom: 10px;
  color: var(--color-dark);
}

/* responsive */
@media (max-width: 991px) {
  .choice-featured {
    transform: none;
  }
  .choice-featured:hover {
    transform: translateY(-10px);
  }
}


/* ============================
   RESPONSIVE PATCH (mobile-first)
============================ */

/* 1) Evitar overflow horizontal (muito comum com paddings/margens) */
html,
body {
  overflow-x: hidden;
}

/* 2) Tipografia e espaçamentos mais fluidos */
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.hero-text {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

/* 3) Botões do hero: em mobile ficam full-width */
@media (max-width: 576px) {
  .hero .btn {
    width: 100%;
  }
}

/* 4) Grids custom: empilhar em mobile */
@media (max-width: 992px) {
  .method-pillars,
  .for-whom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .method-steps .step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 5) Em desktop: 2 colunas na secção "Para quem é" (se ainda não estiver) */
@media (min-width: 992px) {
  .for-whom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
