:root {
  /* DARK THEME (Hero & Nav) */
  --bg-dark: #111111;
  --bg-card-dark: #1A1A1A;
  --text-main-dark: #F5F5F5;
  --text-muted-dark: #A0A0A0;
  
  /* LIGHT THEME (Global) */
  --bg-color: #FFFFFF;
  --bg-card: #F9F9F9;
  --text-main: #111111;
  --text-muted: #555555;
  
  --primary-accent: #111111;
  --primary-accent-hover: #333333;
  --secondary-accent: #EEEEEE;
  --white: #FFFFFF;
  --black: #000000;
  --border-color: #E0E0E0;
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
  
  /* GREEN THEME (SoluÃƒÂ§ÃƒÂ£o) */
  --bg-green: #1a2414;
  --accent-green: #c4d6a8;
  --bg-banner-green: rgba(196, 214, 168, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
  display: block;
}

.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* NAVBAR */
.main-nav {
  width: 100%;
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-nav:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* SECTION PADDING */
section {
  padding: 80px 0;
}

/* 1. HERO SECTION */
.hero {
  background-color: var(--bg-dark);
  color: var(--text-main-dark);
  min-height: 85vh;
  padding: 100px 0 80px 0;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-logo {
  max-width: 650px;
  width: 130%;
  height: auto;
  margin-top: -100px;
  margin-bottom: -250px;
  margin-left: -145px;
  display: block;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-transform: none;
  font-weight: 700;
  color: var(--text-main-dark);
}

.hero-content h1 span {
  opacity: 0.7;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-muted-dark);
  margin-bottom: 25px;
  max-width: 500px;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-content .btn-primary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-content .btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  width: 120%;
  max-width: 2000px;
  height: auto;
  aspect-ratio: 5/5;
  object-fit: cover;
  object-position: 45% center;
  border-radius: 30px;
  transform: translateX(60px) translateY(200px);
}

@media (max-width: 1200px) {
  .hero-image img {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 0px;
    text-align: center;
  }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hero-logo {
    max-width: 100%;
    width: 100%;
    margin-top: -30px;
    margin-bottom: -100px;
    margin-left: auto;
    margin-right: auto;
  }



  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons a {
    width: auto;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
  }

  .hero-image img {
    transform: translateY(0);
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4/5;
  }
}

/* 2. PROBLEMAS */
.problemas {
  background-color: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.problema-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
}

.problema-card:hover {
  transform: translateY(-5px);
  border-color: var(--text-main);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.problema-card i {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.problema-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* 3. SOLUÃƒâ€¡ÃƒÆ’O - REDESIGN PREMIUM */
.solucao {
  background: var(--bg-green);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.solucao::before,
.solucao::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.solucao::before {
  top: -100px;
  left: -100px;
}

.solucao::after {
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
}

.solucao-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.solucao-text {
  flex: 1;
}

.solucao-header h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}

.solucao-header p {
  text-align: left;
  margin-left: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.highlight-monochrome {
  color: var(--accent-green);
}

.header-line {
  width: 60px;
  height: 2px;
  background: var(--accent-green);
  margin: 20px 0;
}

.solucao-left-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.mini-circle-graphic {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mini-circle-graphic::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.mini-circle-inner {
  text-align: center;
}

.mini-circle-inner i {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 10px;
}

.mini-circle-inner p {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--white);
}

.mini-circle-inner span {
  color: var(--accent-green);
}

.solucao-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solucao-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.solucao-checklist li i {
  font-size: 1.4rem;
  color: var(--accent-green);
}

/* INTERACTIVE CIRCLE */
.solucao-interactive {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-container {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-line {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.line-1 {
  width: min(380px, 76vw);
  height: min(380px, 76vw);
}

.line-2 {
  width: min(440px, 88vw);
  height: min(440px, 88vw);
  border-style: dashed;
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.line-3 {
  width: min(500px, 100vw);
  height: min(500px, 100vw);
  opacity: 0.2;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.center-photo {
  width: 320px;
  height: 320px;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-green);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.center-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.center-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.fg-img-inner,
.fg-img-pop {
  width: 150%;
  height: 150%;
  object-fit: contain;
  position: absolute;
  bottom: -140px;
  left: 50%;
  transform: translateX(-48%) scale(1.35);
  pointer-events: none;
}

.fg-img-inner {
  z-index: 2;
}

.fg-img-pop {
  z-index: 10;
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 65% 100%);
}

.node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s ease;
}

.node:hover {
  transform: scale(1.1);
}

.node-icon {
  width: 80px;
  height: 80px;
  background: rgba(196, 214, 168, 0.15);
  border: 1px solid rgba(196, 214, 168, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  font-size: 1.8rem;
  color: var(--accent-green);
  margin-bottom: 12px;
  transition: 0.3s;
}

.node:hover .node-icon {
  background: var(--accent-green);
  color: var(--bg-green);
  box-shadow: 0 0 30px rgba(196, 214, 168, 0.3);
}

.node-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: none;
}



/* Position Nodes */
.node-1 {
  top: 30px;
  left: 30px;
}

/* Medicina */
.node-2 {
  top: 60px;
  right: 0px;
}

/* NutriÃƒÂ§ÃƒÂ£o */
.node-3 {
  bottom: 60px;
  left: 0px;
}

/* Performance */
.node-4 {
  bottom: 30px;
  right: 30px;
}

/* Mental */

/* BANNER */
.solucao-banner {
  background: var(--bg-banner-green);
  padding: 30px 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(196, 214, 168, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.banner-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-green);
  border: none;
}

.banner-text h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 5px;
}

.banner-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn-banner {
  background: var(--white);
  color: var(--bg-green);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

.btn-banner:hover {
  transform: translateX(5px);
  background: var(--white);
  color: var(--bg-green);
}

/* 8. TRANSFORMAÃ‡ÃƒO */
.transformacao {
  background-color: #fcfcfc;
  padding: 100px 0;
}

.case-card {
  background: var(--white);
  border-radius: 40px;
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0,0,0,0.05);
}

.case-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.case-image-wrapper {
  flex: 1;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #fdfdfd;
  aspect-ratio: 0.55; /* ProporÃ§Ã£o mais alta para corpo inteiro */
}

.case-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.case-image-wrapper .badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
  color: #fff;
  padding: 10px 25px;
  border-bottom-right-radius: 15px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
}

.case-image-wrapper .badge-depois {
  left: auto;
  right: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 15px;
}

.case-stats {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.2rem;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.stat-info {
  text-align: left;
  min-width: 100px;
}

.stat-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: none;
}

.stat-info p {
  font-size: 0.65rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: -2px;
}

.case-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.case-btn {
  background: white;
  border: 1px solid #eee;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.case-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.case-dots {
  display: flex;
  gap: 12px;
}

.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-dot.active {
  background: #111;
  width: 24px;
  border-radius: 10px;
}

.case-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  max-width: 600px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid #f5f5f5;
}

/* Responsividade Transformation */
@media (max-width: 992px) {
  .case-card {
    padding: 40px 20px;
    border-radius: 30px;
  }
  
  .case-display {
    flex-direction: column;
    gap: 30px;
  }
  
  .case-image-wrapper {
    width: 100%;
    max-width: 400px;
  }
  
  .case-stats {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .stat-item {
    border-bottom: none;
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }
  
  .stat-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-info h4 {
    font-size: 1.4rem;
  }
  
  .case-nav {
    gap: 20px;
  }
}

/* PILLAR MODAL */
.pillar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.pillar-overlay.active {
  display: flex;
}

.pillar-modal {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  max-width: 500px;
  text-align: center;
  position: relative;
  color: var(--text-main);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.pillar-modal h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.pillar-modal p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.pillar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .solucao-flex {
    flex-direction: column;
    text-align: center;
  }

  .solucao-text .section-header {
    text-align: center !important;
  }

  .solucao-text .section-header p {
    margin: 0 auto !important;
  }

  .solucao-left-content {
    align-items: center;
  }

  .solucao-checklist {
    text-align: left;
  }

  .solucao-banner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .banner-info {
    flex-direction: column;
  }

  .orbit-container {
    width: 400px;
    height: 400px;
  }

  .line-1 {
    width: 280px;
    height: 280px;
  }

  .line-2 {
    width: 340px;
    height: 340px;
  }

  .line-3 {
    width: 400px;
    height: 400px;
  }

  .center-photo {
    width: 240px;
    height: 240px;
  }

  .node-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
}

/* 4. QUEM SOMOS - CARDS ESCUROS */
.quem-somos {
  background-color: var(--bg-color);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--text-main);
}

.team-image {
  height: 420px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  display: block;
  transform: scale(1.2) translateY(-8%);
}

.team-card:hover .team-image img {
  transform: scale(1.25) translateY(-8%);
}

.team-info {
  padding: 22px 26px;
  background: var(--white);
  text-align: center;
}

.team-info h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.team-info p.role {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* PROFILE MODAL */
.profile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 20px;
}

.profile-overlay.active {
  display: flex;
}

.profile-modal {
  background: var(--white);
  border-radius: 16px;
  display: flex;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  animation: profileIn 0.3s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

@keyframes profileIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.profile-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
}

.profile-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.profile-photo {
  flex: 0 0 380px;
  max-height: 90vh;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-details {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.profile-details h3 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.profile-role {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 28px;
}

.profile-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 32px;
  flex: 1;
}

.profile-list li {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--text-main);
  color: var(--text-main);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}

.btn-insta:hover {
  background: var(--text-main);
  color: var(--white);
}

@media (max-width: 768px) {
  .profile-modal {
    flex-direction: column;
  }

  .profile-photo {
    flex: 0 0 260px;
  }
}

.diferencial {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 30px;
  background-color: var(--bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.diferencial h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.diferencial p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
}

/* 5. SERVIÃƒâ€¡OS */
.servicos {
  background-color: var(--bg-color);
}

.servicos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.servico-col {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  border-top: 6px solid var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.servico-col:nth-child(2) {
  border-color: var(--text-muted);
}

.servico-col h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.servico-list {
  list-style: none;
}

.servico-list li {
  margin-bottom: 16px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.servico-list li i {
  color: var(--text-main);
}

.servico-col:nth-child(2) .servico-list li i {
  color: var(--text-muted);
}

/* 6. AUTORIDADE */
.autoridade {
  background-color: var(--bg-color);
}

.autoridade-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.autoridade-text {
  flex: 1;
}

.autoridade-text h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.autoridade-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* CARROSSEL ATLETA */
.autoridade-carousel {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 560px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  cursor: pointer;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

.carousel-slide img:hover {
  opacity: 0.88;
}

/* LIGHTBOX */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: lightboxIn 0.25s ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #111111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}

/* 7. DEPOIMENTOS */
.depoimentos {
  background-color: var(--bg-color);
}

.depoimentos-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.depoimento-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-slide {
  flex: 0 0 100%;
  padding: 10px;
}

.depoimento-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  color: #FFD700;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.depoimento-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.depoimento-author {
  font-weight: 700;
  color: var(--text-main);
}

.depoimentos-carousel .carousel-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  top: 50%;
  transform: translateY(-50%);
}

.depoimentos-carousel .carousel-prev { left: 0px; }
.depoimentos-carousel .carousel-next { right: 0px; }

@media (max-width: 992px) {
  .depoimentos-carousel .carousel-btn {
    display: flex;
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  .depoimentos-carousel .carousel-prev { left: 5px; }
  .depoimentos-carousel .carousel-next { right: 5px; }
}

/* 8. CTA FINAL */
.cta-final {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  color: var(--text-main);
  text-align: center;
  padding: 100px 0;
}

.cta-final h2 {
  color: var(--text-main);
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

/* FOOTER */
footer {
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-content p {
  color: var(--text-muted);
}

.footer-frases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.footer-frases span {
  background: var(--bg-card);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding-top: 0px;
  }
  
  .hero-inner {
    flex-direction: column;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .servicos-container {
    grid-template-columns: 1fr;
  }

  .autoridade-content {
    flex-direction: column;
    text-align: center;
  }

  .autoridade-images img:nth-child(2) {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .section-header h2 {
    font-size: 1.15rem;
  }

  .autoridade-text h2 {
    font-size: 1.2rem;
  }

  /* Sobrescreve o inline style do h2 "Aqui o cuidado ÃƒÂ© completo" */
  .solucao-text h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  .autoridade-text .footer-frases {
    justify-content: center !important;
  }

  .cta-final h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .orbit-container {
    width: 350px;
    height: 350px;
  }

  .line-1 {
    width: 260px;
    height: 260px;
  }

  .line-2 {
    width: 305px;
    height: 305px;
  }

  .line-3 {
    width: 350px;
    height: 350px;
  }

  .center-photo {
    width: 190px;
    height: 190px;
  }

  .node-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .node-label {
    font-size: 0.7rem;
    max-width: 80px;
  }

  /* Orbit nodes mobile - mantendo a proporÃƒÂ§ÃƒÂ£o do desktop */
  .node-1 { top: 10px; left: 10px; }
  .node-2 { top: 40px; right: -10px; }
  .node-3 { bottom: 40px; left: -10px; }
  .node-4 { bottom: 10px; right: 10px; }

  .center-photo {
    width: 220px;
    height: 220px;
  }

  .fg-img-inner,
  .fg-img-pop {
    bottom: -100px;
    transform: translateX(-48%) scale(1.35);
  }
}
