:root {
  --orange: #FF6A00;
  --orange-dark: #CC5200;
  --orange-glow: rgba(255, 106, 0, 0.25);
  --black: #0D0D0D;
  --graphite: #111111;
  --graphite-2: #1A1A1A;
  --graphite-3: #222222;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-orange: 0 0 40px rgba(255, 106, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg {
  height: 72px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: white;
  letter-spacing: 0;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.btn-nav {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255, 106, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(255, 106, 0, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0D0D0D 0%, #111111 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 106, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* Logo title replacing hero text */
.hero-logo-title {
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.hero-logo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  animation:
    logoFloat    5s ease-in-out 0.8s infinite,
    logoAnimate  4s ease-in-out 0.8s infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-7px); }
}

@keyframes logoAnimate {
  0%, 40%, 100% { filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.2)) brightness(1);    }
  50%            { filter: drop-shadow(0 0 35px rgba(255, 106, 0, 0.65)) brightness(1.18); }
  60%            { filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.25)) brightness(1);    }
}

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.25;
  animation: fadeUp 0.6s 0.1s ease both;
}


.hero-subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-subtitle strong {
  color: var(--gray-light);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 106, 0, 0.05);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--graphite);
  margin-right: -10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), #ff9a3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: white;
}

.social-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

.social-text strong {
  color: var(--white);
  display: block;
}

.stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px;
}

/* Hero Right */
.hero-right {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--graphite-2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--shadow-orange);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    url("assets/hero/dramatica1.webp") center top / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 106, 0, 0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='500'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='40%25' r='60%25'%3E%3Cstop offset='0%25' stop-color='%23FF6A00' stop-opacity='0.08'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='400' height='500' fill='url(%23g)'/%3E%3C/svg%3E");
  z-index: 0;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 40%, rgba(13, 13, 13, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.athlete-silhouette {
  display: none;
}

.hero-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-image-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
}

.hero-image-title {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.floating-stat {
  position: absolute;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 106, 0, 0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  z-index: 3;
}

.floating-stat-1 {
  top: 32px;
  right: -20px;
}

.floating-stat-2 {
  bottom: 100px;
  left: -20px;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== SECTION STATS ===== */
.stats-band {
  background: var(--graphite-2);
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover .stat-big {
  color: var(--orange);
}

.stat-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  transition: color var(--transition);
}

.stat-big span {
  color: var(--orange);
}

.stat-desc {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 100px 0;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title .accent {
  color: var(--orange);
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
}

/* ===== SERVIÇOS ===== */
.services {
  background: var(--black);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-tag {
  justify-content: center;
}

.services-header .section-tag::before {
  display: none;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* 3 cards na 1ª linha: cada um ocupa 2 de 6 colunas (33%) */
.service-card:nth-child(-n+3) {
  grid-column: span 2;
}

/* 2 cards na 2ª linha: cada um ocupa 3 de 6 colunas (50%), centralizados */
.service-card:nth-child(n+4) {
  grid-column: span 3;
}

.service-card {
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.3), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 106, 0, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 106, 0, 0.2);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: rgba(255, 106, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.protocol {
  background:
    linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.95)),
    url("assets/professor/professor3.webp") center center / cover fixed no-repeat;
  position: relative;
  overflow: hidden;
}

.protocol::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
}

.protocol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.protocol-visual {
  position: relative;
}

.protocol-card {
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}


.protocol-weeks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.week-block {
  background: var(--graphite-3);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.week-block.active {
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.3);
}

.week-block:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-2px);
}

.week-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}

.week-label {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.progress-bar-container {
  margin-bottom: 28px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.progress-label span:last-child {
  color: var(--orange);
  font-weight: 700;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ff9a3c);
  border-radius: 3px;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
}

.protocol-text {
  position: relative;
  z-index: 1;
}

.protocol-bullets {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.protocol-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bullet-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
}

.bullet-content {}

.bullet-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bullet-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PARA QUEM ===== */
.for-who {
  background: var(--black);
  position: relative;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.for-who-card {
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.for-who-card.yes {
  background: rgba(255, 106, 0, 0.05);
  border-color: rgba(255, 106, 0, 0.15);
}

.for-who-card.no {
  background: rgba(255, 255, 255, 0.02);
}

.for-who-card:hover {
  transform: translateY(-2px);
}

.for-who-card.yes:hover {
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.3);
}

.fw-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fw-text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
}

.fw-text strong {
  display: block;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ===== EXPERT ===== */
.expert {
  background: var(--graphite);
  position: relative;
  overflow: hidden;
}

.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.expert-image-wrap {
  position: relative;
}

.expert-image-box {
  background: var(--graphite-2);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid rgba(255, 106, 0, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 106, 0, 0.08);
  overflow: hidden;
}

.expert-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-carousel-item {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.expert-carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 40%, rgba(13, 13, 13, 0.9) 100%);
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--orange);
  color: white;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.expert-image-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 106, 0, 0.12) 0%, transparent 65%);
}

.expert-letter {
  display: none;
}

.expert-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.95) 0%, transparent 100%);
  z-index: 2;
}

.expert-name-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
}

.expert-role-badge {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

.expert-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-light);
  transition: all var(--transition);
}

.credential:hover {
  border-color: rgba(255, 106, 0, 0.2);
  background: rgba(255, 106, 0, 0.04);
  color: var(--white);
}

.credential-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--graphite-2);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.05), 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 106, 0, 0.08);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.pricing-label {
  display: inline-block;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 36px;
}

.price-display {
  margin-bottom: 36px;
}

.price-prefix {
  font-size: 18px;
  color: var(--gray);
  font-weight: 300;
}

.price-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -2px;
}

.price-installment {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-light);
}

.pricing-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255, 106, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-vagas {
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
}

.pricing-vagas strong {
  color: var(--orange);
}

/* ===== GUARANTEE ===== */
.guarantee-band {
  background: rgba(255, 106, 0, 0.04);
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
  padding: 60px 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 106, 0, 0.2);
}

.guarantee-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}

.guarantee-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background:
    linear-gradient(rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.82)),
    url("assets/professor/apontando1.webp") center top / cover fixed no-repeat;
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-final-title .accent {
  color: var(--orange);
}

.cta-final-subtitle {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: white;
  padding: 20px 48px;
  border-radius: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-lg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.btn-primary-lg:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(255, 106, 0, 0.5);
}

/* ===== FOOTER ===== */
footer {
  background: var(--graphite);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes floatAnim {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 106, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

.float {
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes glitchTremble {

  0%,
  94% {
    transform: translate(0, 0);
    text-shadow: none;
  }

  95% {
    transform: translate(-2px, 2px);
    text-shadow: 2px 0 var(--orange);
  }

  96% {
    transform: translate(2px, -2px);
    text-shadow: -2px 0 var(--orange);
  }

  97% {
    transform: translate(-2px, 0);
    text-shadow: none;
  }

  98% {
    transform: translate(2px, 2px);
  }

  99% {
    transform: translate(-1px, -1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.glitch-text {
  display: inline-block;
  animation: glitchTremble 4s infinite;
}

.pulse-glow {
  animation: pulseGlow 2s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-logo-img {
    max-width: 100%;
  }

  .hero-right {
    display: block;
    margin-top: 8px;
  }

  .hero-image-container {
    aspect-ratio: auto;
    height: 300px;
    border-radius: var(--radius-md);
  }

  .hero-image-placeholder {
    background-position: center 20%;
  }

  .floating-stat {
    display: none;
  }

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

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

  .protocol-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .protocol-grid > * {
    min-width: 0;
    width: 100%;
  }

  .protocol-card {
    padding: 24px;
  }

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

  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .guarantee-inner {
    flex-direction: column;
    text-align: center;
  }

}

/* ========== CALCULADORA ========== */
.calculator-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0f0f0f 50%, var(--black) 100%);
  position: relative;
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.calc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.calc-header {
  text-align: center;
  margin-bottom: 60px;
}

.calc-badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.calc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  color: white;
  margin-bottom: 16px;
}

.calc-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* INPUTS SIDE */
.calc-inputs {
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.calc-field {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-field-full {
  flex: 1 1 100%;
}

.calc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-unit {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  text-transform: lowercase;
  letter-spacing: 0;
}

.calc-input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -moz-appearance: textfield;
  font-family: 'Barlow', sans-serif;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.calc-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.calc-toggle-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.calc-toggle {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
}

.calc-toggle:hover {
  border-color: rgba(255, 106, 0, 0.4);
  color: white;
}

.calc-toggle.active {
  background: rgba(255, 106, 0, 0.15);
  border-color: var(--orange);
  color: var(--orange);
}

/* RESULTS SIDE */
.calc-results {
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.calc-results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 106, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.calc-results-placeholder {
  text-align: center;
  color: var(--gray-text);
  padding: 20px;
}

.calc-placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.calc-results-placeholder p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.calc-results-data {
  width: 100%;
  animation: fadeInUp 0.4s ease;
}

.calc-profile-badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.calc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.calc-metric {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.calc-metric-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.calc-metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.calc-metric-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.calc-metric-fill {
  height: 100%;
  background: var(--bar-color, var(--orange));
  border-radius: 100px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-imc-strip {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.calc-motivation {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(255, 106, 0, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.calc-cta-btn {
  display: block;
  background: var(--gradient-orange);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.3);
}

.calc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.45);
}

.calc-disclaimer {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .calc-body {
    grid-template-columns: 1fr;
  }

  .calc-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .calc-metrics {
    grid-template-columns: 1fr;
  }

  .calc-inputs {
    padding: 24px;
  }

  .calc-results {
    padding: 24px;
  }
}


/* ========== POPUP / MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #111111;
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 106, 0, 0.08);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
  font-family: sans-serif;
}

.modal-close:hover {
  color: white;
}

.modal-badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
  line-height: 1.05;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.modal-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  font-family: 'Barlow', sans-serif;
}

.modal-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.modal-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.modal-select {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.modal-select:focus {
  border-color: var(--orange);
}

.modal-select option {
  background: #1a1a1a;
}

.modal-submit {
  background: var(--gradient-orange);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.3);
  margin-top: 8px;
  width: 100%;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.45);
}

.modal-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.modal-vagas {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 106, 0, 0.06);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.modal-vagas-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@media (max-width: 560px) {
  .modal-box {
    padding: 36px 24px;
  }

  .modal-row {
    grid-template-columns: 1fr;
  }
}


/* ── MODAL CALCULATOR EXTRAS ── */
.modal-box {
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 106, 0, 0.3) transparent;
}

.modal-calc-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-calc-toggles {
  display: flex;
  flex-direction: column;
}

.modal-result {
  background: rgba(255, 106, 0, 0.06);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 20px;
  animation: fadeInUp 0.3s ease;
}

.modal-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-result-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.modal-result-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.modal-result-val.green {
  color: #4ade80;
}

.modal-result-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.modal-result-msg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  border-left: 2px solid var(--orange);
  padding-left: 12px;
}

.modal-result-summary {
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.modal-back {
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 4px;
  font-family: 'Barlow', sans-serif;
  transition: color 0.2s;
}

.modal-back:hover {
  color: white;
}


/* ========== FAQ ========== */
.faq-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.4), transparent);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(255, 106, 0, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-item.open .faq-question {
  color: var(--orange);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-text);
  transition: all 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: rgba(255, 106, 0, 0.12);
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.faq-answer-inner strong {
  color: white;
}

.faq-cta {
  text-align: center;
  margin-top: 56px;
}

.faq-cta-text {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 20px;
}

/* ===== DEPOIMENTO SINGLE ===== */
.testimonial-single {
  padding: 80px 0;
  background: var(--black);
  position: relative;
}

.testimonial-single::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.25), transparent);
}

.testimonial-single-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,106,0,0.06);
}

/* Foto — painel vertical à esquerda */
.testimonial-single-photo {
  flex-shrink: 0;
  width: 280px;
  position: relative;
  overflow: hidden;
}

.testimonial-single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.testimonial-single-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--graphite-3) 100%),
              linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
}

/* Conteúdo */
.testimonial-single-content {
  flex: 1;
  background: var(--graphite-3);
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-single-badge {
  display: inline-block;
  background: rgba(255,106,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,106,0,0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: fit-content;
}

.testimonial-single-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--orange);
  line-height: 0.7;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-single-text {
  font-size: 22px;
  line-height: 1.65;
  color: var(--gray-light);
  margin-bottom: 32px;
  font-weight: 300;
}

.testimonial-single-text strong {
  color: var(--white);
  font-weight: 700;
}

.testimonial-single-author {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.testimonial-single-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}

.testimonial-single-role {
  font-size: 13px;
  color: var(--orange);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ===== DEPO MARKS — animação de risco/círculo ===== */
.depo-mark {
  position: relative;
  display: inline;
  white-space: normal;
}

/* SVG sublinhado — posicionado abaixo do texto */
.depo-mark--wave svg,
.depo-mark--line svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
  pointer-events: none;
}

/* SVG círculo — envolve o texto */
.depo-mark--circle svg {
  position: absolute;
  left: -8px;
  top: -6px;
  width: calc(100% + 16px);
  height: calc(100% + 14px);
  overflow: visible;
  pointer-events: none;
}

/* Estado inicial — invisível */
.depo-mark svg path {
  stroke: var(--orange);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sequência de delays */
.depo-mark--delay-1 svg path { transition-delay: 0.6s; }
.depo-mark--delay-2 svg path { transition-delay: 1.2s; }

/* Dispara quando a seção fica visível */
.testimonial-single.drawn .depo-mark svg path {
  stroke-dashoffset: 0;
}

@media (max-width: 768px) {
  .testimonial-single-inner {
    flex-direction: column;
  }
  .testimonial-single-photo {
    width: 100%;
    height: 320px;
  }
  .testimonial-single-photo-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--graphite-3) 100%);
  }
  .testimonial-single-content {
    padding: 36px 24px;
  }
  .testimonial-single-quote {
    font-size: 72px;
  }
  .testimonial-single-text {
    font-size: 18px;
  }
}

/* ===== METODO RESUMO (LP) ===== */
.metodo-resumo {
  padding: 100px 0;
  background:
    linear-gradient(rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.96)),
    url("assets/professor/professor3.webp") center center / cover fixed no-repeat;
  position: relative;
}

.metodo-resumo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.2), transparent);
}

/* Pilares */
.metodo-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.metodo-pilar {
  background: var(--graphite-3);
  border: 1px solid rgba(255,106,0,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.metodo-pilar:hover {
  border-color: rgba(255,106,0,0.3);
}

.metodo-pilar-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.metodo-pilar-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.metodo-pilar-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Fases */
.metodo-fases {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--graphite-3);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  border: 1px solid rgba(255,255,255,0.06);
}

.metodo-fase {
  flex: 1;
  text-align: center;
}

.metodo-fase-badge {
  display: inline-block;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.metodo-fase-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}

.metodo-fase-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.metodo-fase-arrow {
  font-size: 24px;
  color: rgba(255,106,0,0.4);
  flex-shrink: 0;
}

/* Botão para metodo.html */
.btn-metodo {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 8px;
  transition: all var(--transition);
}

.btn-metodo:hover {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 32px rgba(255,106,0,0.3);
}

@media (max-width: 768px) {
  .metodo-pilares { grid-template-columns: 1fr; }
  .metodo-fases {
    flex-direction: column;
    padding: 24px 20px;
  }
  .metodo-fase-arrow { transform: rotate(90deg); }
}

/* ===== ANTES E DEPOIS — CARROSSEL INFINITO ===== */
.before-after {
  padding: 100px 0;
  position: relative;
  background: var(--graphite-2);
}

.before-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.2), transparent);
}

/* fade nas bordas */
.ba-carousel-track-wrapper {
  overflow: hidden;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ba-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ba-scroll 50s linear infinite;
}

.ba-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes ba-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ba-card {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,106,0,0.06);
  transition: box-shadow 0.3s;
}

/* Borda laranja gradiente discreta */
.ba-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    145deg,
    rgba(255, 106, 0, 0.6) 0%,
    rgba(255, 160, 60, 0.2) 40%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 106, 0, 0.15) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.ba-card:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.65), 0 0 50px rgba(255,106,0,0.15);
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ba-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .ba-card { width: 220px; }
}
/* ==========================================================================
   TIMELINE 12 SEMANAS (SUBSTITUIÇÃO DOS GRÁFICOS)
   ========================================================================== */
.timeline-container {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  position: relative;
  width: 100%;
}

.timeline-phase {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.timeline-phase:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 106, 0, 0.08);
}

.phase-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
  width: fit-content;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.phase-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phase-list li {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.5;
  position: relative;
  padding-left: 14px;
}

.phase-list li::before {
  content: '→';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 10px;
}

/* Conectores visuais entre as fases */
@media (min-width: 901px) {
  .timeline-phase:not(:last-child)::after {
    content: '❯';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 12px;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
  }
}

/* Ajuste Mobile */
@media (max-width: 900px) {
  .timeline-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-phase {
    padding: 30px 24px;
  }

  .timeline-phase:not(:last-child)::after {
    content: '▼';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 14px;
    opacity: 0.3;
  }
  
  .phase-title {
    font-size: 26px;
  }
  
  .phase-list li {
    font-size: 14px;
  }
}

/* =============================================================
   WHATSAPP BOT FLUTUANTE
   ============================================================= */

/* FAB */
.wbot-fab {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wbot-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.wbot-fab.hidden { display: none; }

.wbot-fab svg {
  width: 30px;
  height: 30px;
  color: white;
}

/* Anel pulsante */
.wbot-fab-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wbot-pulse 2s ease-out infinite;
}

@keyframes wbot-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Popup */
.wbot-popup {
  position: fixed;
  bottom: 112px;
  right: 40px;
  z-index: 9001;
  width: 340px;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}

.wbot-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.wbot-header {
  background: #25D366;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.wbot-header-info { flex: 1; }

.wbot-hname {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
  letter-spacing: 0.5px;
}

.wbot-hstatus {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.wbot-dot {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  animation: wbot-blink 1.5s ease-in-out infinite;
}

@keyframes wbot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.wbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.wbot-close:hover { color: white; }

/* Área de mensagens */
.wbot-messages {
  padding: 16px;
  min-height: 180px;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #1a1a1a;
}

.wbot-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: wbot-pop 0.2s ease;
}

@keyframes wbot-pop {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.wbot-msg--bot {
  background: #2a2a2a;
  color: var(--gray-light);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.wbot-msg--bot strong { color: white; }

.wbot-msg--user {
  background: #25D366;
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 600;
}

/* Typing indicator */
.wbot-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  background: #2a2a2a;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: 52px;
}

.wbot-typing span {
  width: 7px;
  height: 7px;
  background: var(--gray);
  border-radius: 50%;
  animation: wbot-bounce 1s ease-in-out infinite;
}
.wbot-typing span:nth-child(2) { animation-delay: 0.15s; }
.wbot-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes wbot-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Input area */
.wbot-input-area {
  padding: 12px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.wbot-form {
  display: flex;
  gap: 8px;
}

.wbot-input {
  flex: 1;
  background: #222;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  color: white;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.wbot-input:focus { border-color: #25D366; }
.wbot-input::placeholder { color: var(--gray); }

.wbot-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.wbot-send:hover { transform: scale(1.1); }

/* Botões de opção */
.wbot-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wbot-btn {
  width: 100%;
  background: #222;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}
.wbot-btn:hover {
  background: rgba(37,211,102,0.12);
  border-color: #25D366;
}

.wbot-cta-btn {
  display: block;
  width: 100%;
  background: #25D366;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s;
}
.wbot-cta-btn:hover {
  background: #1ebe5a;
  transform: scale(1.02);
}

@media (max-width: 400px) {
  .wbot-popup { width: calc(100vw - 32px); right: 16px; }
  .wbot-fab { bottom: 24px; right: 24px; }
}
