/*
Theme Name: Orbe Gente & Gestão
Theme URI: https://orbegenteegestao.com.br
Author: Orbe
Author URI: https://orbegenteegestao.com.br
Description: Tema custom minimalista para consultoria de RH
Version: 1.1
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');

/* Força modo claro e desabilita dark mode */
html {
  color-scheme: light only;
}

:root {
  --primary: #051f45;
  --secondary: #9e4b6c;
  --background: #f5f5f5;
  --accent-light: #c6a874;
  --accent-dark: #000000;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #333333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 1.5rem 0;
  border-bottom: none;
  box-shadow: none;
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-light);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d6b 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 900px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--secondary);
}

.hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
}

/* HERO COM VÍDEO DE FUNDO (Home) */
.hero-video {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d6b 100%);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center top;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 31, 69, 0.78) 0%, rgba(10, 61, 107, 0.78) 100%);
  z-index: 1;
}

.hero-video .hero-container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-video {
    min-height: 500px;
    padding: 3rem 1.5rem;
  }
}

/* SEÇÕES GERAIS */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  margin: 0 auto 2rem;
}

/* ABOUT */
.about {
  background-color: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--secondary);
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
}

/* QUEM É A ORBE - LAYOUT EM DESTAQUE */
.about-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-founder {
  grid-row: 1 / 3;
  position: relative;
  overflow: visible;
  background: var(--primary);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-founder-content {
  max-width: 62%;
  position: relative;
  z-index: 2;
}

.about-founder-photo {
  position: absolute;
  right: 1.5rem;
  bottom: -24px;
  width: 44%;
  max-width: 230px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.about-founder-orbit {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.5;
}

.about-founder-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.about-founder-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.about-founder-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c8ccd6;
  max-width: 400px;
}

/* SEÇÃO 2 - PROBLEMA (split) */
.problem-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.problem-split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.problem-split-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.problem-words {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-left: 1.75rem;
  border-left: 2px solid rgba(158, 75, 108, 0.25);
}

.problem-word {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.problem-word:nth-child(1) { opacity: 1; }
.problem-word:nth-child(2) { opacity: 0.8; }
.problem-word:nth-child(3) { opacity: 0.62; }
.problem-word:nth-child(4) { opacity: 0.45; }

/* SEÇÃO 3 - MÉTODO ORBE */
.metodo-orbe {
  background: var(--primary);
  padding: 4.5rem 0;
}

.metodo-orbe .section-title,
.metodo-orbe .section-lead {
  color: var(--white);
}

.metodo-orbe .section-lead {
  color: #c8ccd6;
}

.orbit-track {
  position: relative;
  margin-top: 3.5rem;
}

.orbit-line {
  width: 100%;
  height: 90px;
  display: block;
}

.orbit-steps {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.orbit-step {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
}

.orbit-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.6rem;
}

.orbit-step p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #c8ccd6;
}

/* SEÇÃO 4 - COMO ATUAMOS */
.atuamos-row {
  display: flex;
  gap: 0;
  margin-top: 3rem;
}

.atuamos-col {
  flex: 1;
  padding: 0 2.25rem;
}

.atuamos-col:first-child {
  padding-left: 0;
}

.atuamos-col:last-child {
  padding-right: 0;
}

.atuamos-col + .atuamos-col {
  border-left: 1px solid var(--gray-medium);
}

.atuamos-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--accent-light);
  opacity: 0.65;
  margin-bottom: 1rem;
}

.atuamos-col h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.atuamos-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.atuamos-desc {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* SEÇÃO 5 - QUEM ATENDEMOS */
.atendemos-row {
  display: flex;
  gap: 0;
  margin-top: 3rem;
}

.atendemos-block {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}

.atendemos-block + .atendemos-block {
  border-left: 1px solid var(--gray-medium);
}

.atendemos-block h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.atendemos-block p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

.section-lead {
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-dark);
}

@media (max-width: 900px) {
  .problem-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .orbit-line {
    display: none;
  }

  .orbit-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .orbit-step {
    text-align: left;
    padding: 0 0 0 1rem;
    border-left: 2px solid rgba(198, 168, 116, 0.4);
  }

  .atuamos-row,
  .atendemos-row {
    flex-direction: column;
    gap: 2rem;
  }

  .atuamos-col,
  .atendemos-block {
    padding: 0 !important;
  }

  .atuamos-col + .atuamos-col,
  .atendemos-block + .atendemos-block {
    border-left: none;
    border-top: 1px solid var(--gray-medium);
    padding-top: 2rem !important;
  }
}

.about-founder-rule {
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  margin-top: 1.5rem;
}

.about-support-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.about-support-card.tan {
  background-color: #f0e4d8;
}

.about-support-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

.about-support-card.tan .about-support-label {
  color: #8a5a2e;
}

.about-support-label svg {
  flex-shrink: 0;
}

.about-support-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}

.about-support-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-dark);
}

@media (max-width: 900px) {
  .about-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-founder {
    grid-row: auto;
  }
}

/* SEGMENTAÇÃO */
.segmentation {
  background-color: var(--white);
}

.segment-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.segment-box {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 4px;
  border-top: 4px solid var(--secondary);
}

.segment-box h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.segment-box ul {
  list-style: none;
}

.segment-box li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-dark);
}

.segment-box li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* PROBLEMA */
.problems {
  background-color: var(--background);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.problem-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.problem-number {
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.problem-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--gray-dark);
  line-height: 1.8;
}

/* SOLUÇÃO */
.solution {
  background-color: var(--white);
}

.solution-intro {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d6b 100%);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.solution-intro h2 {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.6;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.solution-item {
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 4px;
  border-left: 4px solid var(--accent-light);
  transition: all 0.3s;
}

.solution-item:hover {
  border-left-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-item h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

/* COMPARATIVO */
.comparison {
  background-color: var(--background);
}

.comparison-table {
  background-color: var(--white);
  border-radius: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.comparison-table table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 3px solid var(--secondary);
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-medium);
}

.comparison-table tr:hover {
  background-color: var(--background);
}

.comparison-table .orbe {
  background-color: #f0f8ff;
  font-weight: 600;
  color: var(--primary);
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card:before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.1;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--secondary);
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d6b 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.footer-links a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .segment-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .cta-final {
    padding: 3rem 1rem;
  }

  .cta-final h2 {
    font-size: 1.5rem;
  }
}
/* ================================
   ESTILOS PÁGINA SOBRE NÓS
   ================================ */

/* SEÇÃO: QUEM SOMOS (HERO) */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3d6b 100%);
  color: var(--white);
  padding: 3rem 2rem;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
}

/* SEÇÃO: NOSSA CRENÇA */
.belief-section {
  background-color: var(--white);
  padding: 3rem 2rem;
}

.belief-content {
  max-width: 1000px;
  margin: 0 auto;
}

.belief-box {
  background: linear-gradient(135deg, #f0f8ff 0%, rgba(158, 75, 108, 0.05) 100%);
  padding: 2.5rem;
  border-left: 5px solid var(--secondary);
  border-radius: 4px;
  margin-top: 2rem;
}

.belief-box p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  font-weight: 500;
}

/* SEÇÃO: PROPÓSITO E PROMESSA */
.purpose-promise-section {
  background-color: var(--background);
  padding: 3rem 2rem;
}

.purpose-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.purpose-box,
.promise-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 4px;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.purpose-box p,
.promise-box p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* SEÇÃO: POSICIONAMENTO */
.positioning-section {
  background-color: var(--white);
  padding: 3rem 2rem;
}

.positioning-content {
  max-width: 900px;
  margin: 2rem auto 0;
  background-color: rgba(158, 75, 108, 0.08);
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 5px solid var(--accent-light);
}

.positioning-content p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.positioning-content p:last-child {
  margin-bottom: 0;
}

.positioning-content strong {
  color: var(--primary);
}

/* SEÇÃO: NOSSOS PILARES */
.pillars-section {
  background-color: var(--background);
  padding: 3rem 2rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.pillar-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--secondary);
  transition: all 0.3s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-top-color: var(--accent-light);
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* SEÇÃO: DIFERENCIAL */
.differential-section {
  background-color: var(--white);
  padding: 3rem 2rem;
}

.differential-content {
  max-width: 900px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, rgba(5, 31, 69, 0.03) 0%, rgba(158, 75, 108, 0.05) 100%);
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 5px solid var(--primary);
}

.differential-content p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.differential-content p:last-child {
  margin-bottom: 0;
}

.differential-content strong {
  color: var(--primary);
}

/* SEÇÃO: LEGADO */
.legacy-section {
  background-color: var(--background);
  padding: 3rem 2rem;
}

.legacy-content {
  max-width: 900px;
  margin: 2rem auto 0;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 5px solid var(--accent-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legacy-content p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legacy-content p:last-child {
  margin-bottom: 0;
}

.legacy-content strong {
  color: var(--primary);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .purpose-promise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .belief-box,
  .purpose-box,
  .promise-box,
  .positioning-content,
  .differential-content,
  .legacy-content {
    padding: 1.5rem;
  }

  .box-title {
    font-size: 1.3rem;
  }

  .pillar-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .belief-box,
  .purpose-box,
  .promise-box,
  .positioning-content,
  .differential-content,
  .legacy-content {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .box-title,
  .pillar-card h3 {
    font-size: 1.1rem;
  }
}

/* ================================
   CORREÇÃO FINAL - PILARES SCROLLÁVEIS
   ================================ */

/* Override para Desktop - 4 colunas */
@media (min-width: 1024px) {
  .pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* Mobile - Scroll Horizontal */
@media (max-width: 1023px) {
  .pillars-grid {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.5rem !important;
    padding: 1rem 2rem !important;
  }

  .pillar-card {
    flex: 0 0 85% !important;
    min-width: 280px !important;
  }
}
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at top right,
            rgba(198, 168, 116, 0.08),
            transparent 30%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(158, 75, 108, 0.15),
            transparent 40%
        );
}
.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(198, 168, 116, 0.15);
}

.orbit-1 {
    width: 700px;
    height: 700px;
    top: -180px;
    right: -180px;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    bottom: -120px;
    left: -120px;
}
.hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #c6a874;

    box-shadow: 0 0 20px #c6a874;
}

.particle-1 {
    top: 20%;
    right: 15%;
}

.particle-2 {
    bottom: 25%;
    left: 12%;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.glow-1 {
    width: 300px;
    height: 300px;

    top: 10%;
    right: 10%;

    background: rgba(158, 75, 108, 0.12);
}

.glow-2 {
    width: 250px;
    height: 250px;

    bottom: 15%;
    left: 10%;

    background: rgba(198, 168, 116, 0.08);
}
/* ==================================================
   ORBE PREMIUM REFINEMENT
   Ajustes visuais sem alterar estrutura
   ================================================== */


/* CORES E FUNDOS MAIS SOFISTICADOS */

.hero,
.hero-video,
.cta-final,
.metodo-orbe,
.solution-intro {
    background:
        linear-gradient(
            135deg,
            #051f45 0%,
            #081a35 100%
        );
}


/* MELHORA DO EFEITO DE PROFUNDIDADE DO HERO */

.hero-video-overlay {
    background:
        linear-gradient(
            135deg,
            rgba(5,31,69,0.82),
            rgba(8,26,53,0.90)
        );
}


/* BOTÕES MAIS ELEGANTES */

.hero-cta,
.btn-primary {
    box-shadow:
        0 12px 30px rgba(158,75,108,0.25);
}


.hero-cta:hover,
.btn-primary:hover {
    transform: translateY(-3px);
}


/* BOTÃO SECUNDÁRIO MAIS REFINADO */

.btn-secondary {
    transition: all .35s ease;
}


.btn-secondary:hover {
    transform: translateY(-3px);
}



/* CARDS COM ASPECTO MAIS PREMIUM */

.about-card,
.segment-box,
.problem-card,
.solution-item,
.testimonial-card,
.pillar-card,
.purpose-box,
.promise-box,
.legacy-content {

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(5,31,69,0.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}



/* MOVIMENTO SUAVE DOS CARDS */

.about-card:hover,
.segment-box:hover,
.problem-card:hover,
.solution-item:hover,
.testimonial-card:hover,
.pillar-card:hover,
.purpose-box:hover,
.promise-box:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(5,31,69,0.15);
}



/* REMOVE VISUAL DE TEMPLATE DOS CARDS */

.about-card,
.segment-box,
.solution-item,
.pillar-card {

    border-left-width: 0;
    border-top-width: 2px;
    border-top-color: var(--accent-light);

}



/* LINHAS MAIS ELEGANTES */

.atuamos-col + .atuamos-col,
.atendemos-block + .atendemos-block {

    border-color:
        rgba(198,168,116,0.35);

}



/* TABELAS E BLOCOS IMPORTANTES */

.comparison-table {

    border-radius:16px;

    box-shadow:
        0 20px 50px rgba(5,31,69,.12);

}



/* TESTIMONIAL MAIS PREMIUM */

.testimonial-card:before {

    color:
        var(--accent-light);

    opacity:.25;

}



/* ÁREA DE DESTAQUE DA ORBE */

.about-founder {

    box-shadow:
        0 25px 70px rgba(5,31,69,.25);

}



/* ORBITAS MAIS VISÍVEIS */

.hero-orbit {

    border-color:
        rgba(198,168,116,.25);

}



.hero-particle {

    animation:
        pulse-orbe 3s infinite ease-in-out;

}


@keyframes pulse-orbe {

    0% {
        transform:scale(1);
        opacity:.8;
    }

    50% {
        transform:scale(1.35);
        opacity:1;
    }

    100% {
        transform:scale(1);
        opacity:.8;
    }

}



/* GLOW MAIS NATURAL */

.hero-glow {

    opacity:.7;

}



/* LINKS MAIS FLUIDOS */

a {

    transition:
        color .3s ease,
        opacity .3s ease;

}



/* IMAGENS COM ACABAMENTO PREMIUM */

img {

    transition:
        transform .5s ease;

}


img:hover {

    transform:
        scale(1.02);

}



/* REMOVE EXCESSO DE SOMBRAS PESADAS */

.problem-card,
.testimonial-card,
.comparison-table {

    box-shadow:
        0 10px 35px rgba(0,0,0,.06);

}


/* DEIXA O SITE MENOS "CAIXA" */

.solution-item,
.about-support-card {

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf8f6
        );

}



/* ACABAMENTO FINAL */

::selection {

    background:
        var(--secondary);

    color:white;

}
/* IMAGEM SEÇÃO 2 - CONTROLE DE TAMANHO */

.problem-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    max-width: 450px;
    max-height: 450px;
    height: auto;
    object-fit: contain;
}
/* ==================================
   SEÇÃO 3 – MÉTODO ORBE
================================== */

.metodo-orbe {

    position: relative;

    margin: 80px auto;

    width: 100%;

    max-width: 1400px;

    padding: 4rem 2rem;

    background: #ffffff;

    box-shadow: none;

    border-radius: 0;

}


.metodo-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    gap: 2rem;
}


.metodo-texto {
    color:#ffffff;
    padding-right:2rem;
}


.metodo-texto h2 {
    font-family:'Playfair Display', serif;
    font-size:2.5rem;
    margin-bottom:1.5rem;
}


.metodo-texto p {
    font-size:1.1rem;
    line-height:1.8;
    color:#d8d8d8;
}


/* ÓRBITA */

.metodo-visual {
    position:relative;
}


.orbe-system {
    position:relative;
    width:650px;
    height:600px;
}


/* IMAGEM CENTRAL */

.orbe-center {

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

}


.orbe-core {

    width:150px;
    height:150px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:visible;

    background:transparent;

    border:none;

}


.orbe-core img {

    width:150px;
    height:auto;

    object-fit:contain;

}


/* CARDS */

.orbe-card {

    position:absolute;

    width:180px;

    text-align:center;

}


.orbe-icon {

    color:#c6a874;

    font-size:2rem;

    display:block;

    margin-bottom:.8rem;

}


.orbe-card h3 {

    color:white;

    margin-bottom:.8rem;

}


.orbe-card p {

    color:#d8d8d8;

    font-size:.9rem;

    line-height:1.6;

}



/* POSIÇÃO DOS PONTOS */

.card-1 {
    bottom: 70px;
    left: 100px;
}

.card-2 {
    bottom: 70px;
    right: 100px;
}

.card-3 {
    top: 170px;
    right: 40px;
}

.card-4 {
    top: 170px;
    left: 40px;
}

.card-5 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}



/* RESPONSIVO */

@media(max-width:900px){

    .metodo-layout{

        grid-template-columns:1fr;

    }


    .metodo-texto{

        text-align:center;
        padding-right:0;

    }


    .orbe-system{

        width:100%;
        transform:scale(.8);
        transform-origin:center;

    }

}
/* AJUSTE MOBILE - MÉTODO ORBE */

@media (max-width: 900px) {

    .metodo-layout {
        display: flex;
        flex-direction: column;
    }

    .metodo-texto {
        order: 1;
        text-align: center;
        padding-right: 0;
    }

    .metodo-visual {
        order: 2;
        width: 100%;
    }

    .orbe-system {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .orbe-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: 1;
    }

    .orbe-core {
        width: 160px;
        height: 160px;
    }

    .orbe-card {
        position: relative;
        width: 90%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        order: 2;
    }

}
@media (max-width: 900px) {

    /* Sobe a órbita/imagem para reduzir espaço vazio */
    .orbe-system {
        margin-top: -40px;
        height: auto;
        transform: scale(0.9);
    }

    /* Aumenta as palavras do método no mobile */
    .orbe-card {
        width: 100%;
    }

    .orbe-card h3 {
        font-size: 1.25rem;
    }

    .orbe-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

}
.section {
    overflow: visible;
}
.metodo-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: start;
    gap: 5rem;
}

.metodo-imagem {

    background: #051f45;

    border-radius: 32px;

    padding: 5%;

    display: flex;

    align-items: center;

    justify-content: center;

    width: fit-content;

    margin: 0 auto;

}

.metodo-imagem img {

    width: 85%;

    max-width: 700px;

    height: auto;

    transform: translateX(0);
}

.metodo-texto {
    color: #051f45;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5rem;
}

.metodo-texto h2,
.metodo-texto p {
    text-align: center;
}

.metodo-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #051f45;
}
/* ==================================
   SEÇÃO 4 - ONDE A SUA MUDANÇA COMEÇA
================================== */


.servicos-row {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

  margin-top: 3rem;

}



.servicos-card {

  background-color: #051f45;

  border-radius: 24px;

  padding: 2.5rem 2rem;

  min-height: 280px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  text-align: left;

  transition: all .35s ease;

}



.servicos-card:hover {

  transform: translateY(-8px);

  box-shadow:
  0 20px 50px rgba(5,31,69,.25);

}



.servicos-card h3 {

  font-family: 'Playfair Display', serif;

  font-size: 1.6rem;

  color: #ffffff;

  margin-bottom: 1.2rem;

}



.servicos-card p {

  font-size: 0.95rem;

  color: #d8d8d8;

  line-height: 1.7;

}



@media (max-width: 900px) {

  .servicos-row {

    grid-template-columns: 1fr;

    gap: 1.5rem;

  }

}
/* =========================
   QUEM CONSTRÓI COM A ORBE
========================= */


.orbe-positioning {

    padding-top:100px;
    padding-bottom:100px;

}



.orbe-positioning-layout {

    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    align-items:center;
    gap:80px;

}



.orbe-positioning-text {

    max-width:420px;

}



.orbe-positioning-text .section-title {

    text-align:left;
    margin-bottom:20px;

}



.orbe-positioning-text .section-lead {

    text-align:left;
    max-width:350px;

}

.orbe-positioning-text .section-subtitle {

    text-align:left !important;
    max-width:350px !important;
    margin-left:0 !important;
    margin-right:0 !important;

}




/* =========================
   ESCADA DE EVOLUÇÃO
========================= */


.orbe-positioning-cards {

    position:relative;
    height:360px;

}




.orbe-step-card {

    position:absolute;

    width:280px;
    min-height:100px;

    padding:25px 30px;

    border-radius:22px;

    background:#9e4b6c;

    border:1px solid rgba(5,31,69,0.10);

    box-shadow:0 15px 35px rgba(5,31,69,0.08);

}




.orbe-step-card h3 {

    margin:0 0 8px;

    font-size:1.25rem;

    color:#f5f5f5;

}



.orbe-step-card p {

    margin:0;

    font-size:0.95rem;

    line-height:1.5;

	color:#f5f5f5; 

}



/* POSIÇÃO DOS DEGRAUS */

.card-one {

    left:0;
    bottom:0;

}



.card-two {

    left:130px;
    bottom:110px;

}



.card-three {

    left:260px;
    bottom:220px;

}




/* MOBILE */

@media(max-width:900px){


.orbe-positioning-layout {

    grid-template-columns:1fr;
    gap:50px;

}



.orbe-positioning-cards {

    height:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:20px;

}



.orbe-step-card {

    position:relative;

    left:auto;
    bottom:auto;

    width:100%;
    max-width:330px;

}

} /* fecha @media(max-width:900px) que estava sem fechamento */

/* =========================
   AJUSTE FINAL - SEÇÃO 4 CARDS
========================= */

.servicos-row {
    align-items: start;
}

.servicos-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.servicos-card h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    margin: 0 0 1rem 0 !important;
}

.servicos-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    text-align: left !important;
    margin: 0 !important;
}
.divider {
    display: none;
}
/* Remove linhas divisórias entre seções */
.divider,
.section-divider,
hr {
    display: none !important;
    border: none !important;
}

/* Remove possíveis bordas usadas como separação */
section {
    border-top: none !important;
    border-bottom: none !important;
}
.metodo-etapas-texto p,
.metodo-etapas-texto p span,
.metodo-etapas-texto p b {
    all: unset;
}

.metodo-etapas-texto p {
    display: block;
    color: #051f45 !important;
    line-height: 2;
    font-size: 0.95rem;
}

.metodo-etapas-texto p span {
    color: #9e4b6c !important;
    font-weight: 700;
}

.metodo-etapas-texto p b {
    color: #c6a874 !important;
    margin: 0 8px;
}
	.metodo-etapas-texto p span,
.metodo-etapas-texto p span * {
    color: #9e4b6c !important;
}

.metodo-etapas-texto p b,
.metodo-etapas-texto p b * {
    color: #c6a874 !important;
}

.metodo-etapas-texto p,
.metodo-etapas-texto p::before,
.metodo-etapas-texto p::after {
    color: #051f45 !important;
}

/* ==================================
   MÉTODO ORBE - AJUSTE MOBILE FINAL
   Título, subtítulo e texto em cima; imagem embaixo
================================== */
@media (max-width: 900px) {

    .metodo-orbe {
        margin: 40px auto;
        padding: 3rem 1.5rem;
    }

    .metodo-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem;
    }

    .metodo-texto {
        order: 1 !important;
        padding-right: 0 !important;
        text-align: center;
    }

    .metodo-texto h2 {
        font-size: 1.9rem;
    }

    .metodo-texto p {
        font-size: 1rem;
    }

    .metodo-imagem {
        order: 2 !important;
        width: 100% !important;
        max-width: 100%;
        padding: 6%;
        border-radius: 20px;
    }

    .metodo-imagem img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .metodo-texto h2 {
        font-size: 1.6rem;
    }

    .metodo-texto p {
        font-size: 0.95rem;
    }

    .metodo-etapas-texto p {
        font-size: 0.9rem;
    }
}
/* =========================
   LISTA - MÉTODO ORBE
========================= */

.metodo-etapas-texto {
    margin-top: 40px;
}

.metodo-lista {
    margin: 0;
    padding: 0;
    list-style: none;
}

.metodo-lista li {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #051f45;
}

.metodo-lista span {
    color: #9e4b6c;
    font-weight: 600;
}