/* Font Imports */
@font-face {
  font-family: "Guton";
  src: url("../fonts/Guton-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Guton-Bold";
  src: url("../fonts/Guton-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Guton-SemiBold";
  src: url("../fonts/Guton-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: "Guton-Medium";
  src: url("../fonts/Guton-Medium.otf") format("opentype");
}

/* CSS Variables */
:root {
  --green-color: #12d27d;
  --white-color: #ffffff;
  --black-color: #000000;
  --gray-color: #808080;
  --dark-blue: #0a1122;
  --font-family: "Guton", sans-serif;
  --font-family-bold: "Guton-Bold", sans-serif;
  --font-family-semi-bold: "Guton-SemiBold", sans-serif;
  --font-family-medium: "Guton-Medium", sans-serif;
  --font-family-regular: "Guton", sans-serif;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

span {
  color: var(--green-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Removed excessive pulse and glow animations for better performance */

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

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

/* Header */
header {
  background: linear-gradient(135deg, rgba(15, 22, 49, 0.95) 0%, rgba(30, 30, 60, 0.95) 100%), url('../images/bg.png') center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(18, 210, 125, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

header .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  animation: fadeInUp 1s ease-out;
}

.logo img {
  width: 450px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  /* Simplified hover effect */
  opacity: 0.9;
}

header .container h1 {
  font-size: 45px;
  width: 70%;
  text-align: center;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 20px;
  font-family: var(--font-family-bold);
  animation: fadeInUp 1s ease-out 0.3s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header .container p {
  font-size: 18px;
  text-align: center;
  color: var(--white-color);
  line-height: 1.4;
  margin-top: 20px;
  font-family: var(--font-family-regular);
  animation: fadeInUp 1s ease-out 0.6s both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

header .devs-impactados {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--white-color);
  font-family: var(--font-family-regular);
  animation: fadeInUp 1s ease-out 0.9s both;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

header .devs-impactados:hover {
  background: rgba(255, 255, 255, 0.15);
  /* Removed transform for better performance */
}

header .devs-impactados i {
  color: var(--green-color);
  font-size: 16px;
  /* Removed infinite pulse animation */
}

header .devs-impactados span {
  color: var(--white-color);
  font-size: 13px;
  font-family: var(--font-family-bold);
  margin-right: 3px;
}

/* Buttons */
.btn-primary {
  background-color: #0f4c5c;
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-family-bold);
  margin-top: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: none;
}

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

.btn-preco {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899 0%, #f59e42 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
  border: none;
  background-clip: padding-box;
  /* Removed infinite glow animation for better performance */
}

.btn-preco-premium {
  background: linear-gradient(135deg, #12d27d 0%, #0ea5e9 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  /* Removed infinite gradient animation for better performance */
  box-shadow: 0 12px 35px rgba(18, 210, 125, 0.4), 0 0 30px rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

.btn-preco-premium:hover {
  /* Simplified hover effect */
  opacity: 0.9;
}

.btn-preco::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-preco:hover::before {
  left: 100%;
}

.btn-preco:hover {
  background: linear-gradient(135deg, #f59e42 0%, #ec4899 100%);
  color: #fff;
  /* Simplified hover effect */
  opacity: 0.9;
}

.btn-preco:active {
  transform: translateY(-1px) scale(1.02);
}

.mentoria-btn {
  background: #0f4c5c;
  color: #fff;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px 0 rgba(15, 76, 92, 0.1);
  border: none;
}

.mentoria-btn:hover {
  background: #1a6b80;
  color: #fff;
}

/* Benefícios Section */
.beneficios {
  background-color: var(--dark-blue);
  padding: 100px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.beneficios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(18, 210, 125, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.beneficios .container {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.beneficios .container > .col {
  width: 100%;
}

.beneficios .container > .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.beneficios .container > .col:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficios .container > .col:last-child img {
  width: 100%;
  max-width: 400px;
  height: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.beneficios .container > .col:last-child img:hover {
  /* Simplified hover effect */
  opacity: 0.9;
}

.beneficios .container h1 {
  font-size: 30px;
  width: 100%;
  color: var(--white-color);
  line-height: 1.2;
  margin-top: 20px;
  font-family: var(--font-family-bold);
  text-align: left;
}

.beneficios-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  color: var(--white-color);
  font-size: 16px;
  font-family: var(--font-family-regular);
  padding: 20px 20px 0 0;
}

.beneficios-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 8px;
}

.beneficios-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  /* Removed transform for better performance */
}

.beneficios-list i {
  color: var(--green-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.beneficios-list li:hover i {
  /* Simplified hover effect */
  color: #20e68a;
}

.beneficios .col .btn-primary {
  margin-top: 24px;
  display: inline-block;
}

/* Preço Section */
.preco {
  background: #0f1631;
  padding: 80px 0 40px 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.preco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(18, 210, 125, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.container-preco {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-tables {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.preco-card {
  background: linear-gradient(145deg, #0f1631 0%, #1a2040 100%);
  border: 1px solid rgba(18, 210, 125, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.preco-card-premium {
  background: linear-gradient(145deg, #1a2040 0%, #2d3561 100%);
  border: 2px solid rgba(18, 210, 125, 0.3);
  transform: scale(1.05);
  z-index: 2;
}

.preco-card-premium:hover {
  /* Simplified hover effect */
  opacity: 0.95;
}

.preco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 210, 125, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.preco-card > * {
  position: relative;
  z-index: 2;
}

.preco-card:hover {
  /* Simplified hover effect */
  border-color: rgba(18, 210, 125, 0.4);
}

.preco-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(18, 210, 125, 0.3) 0%, rgba(18, 210, 125, 0.1) 100%);
  color: var(--green-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: 20px;
  padding: 8px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(18, 210, 125, 0.3);
  transition: all 0.3s ease;
}

.preco-label:hover {
  background: linear-gradient(135deg, rgba(18, 210, 125, 0.4) 0%, rgba(18, 210, 125, 0.2) 100%);
  /* Removed transform for better performance */
}

.preco-titulo {
  color: var(--white-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.preco-card:hover .preco-titulo {
  color: #f0f0f0;
}

.preco-valor {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
  gap: 8px;
  padding: 15px 12px;
  background: linear-gradient(135deg, rgba(18, 210, 125, 0.08) 0%, rgba(18, 210, 125, 0.03) 100%);
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 16px rgba(18, 210, 125, 0.1), 0 1px 4px rgba(0, 0, 0, 0.05);
}

.preco-valor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 210, 125, 0.15) 0%, rgba(18, 210, 125, 0.05) 50%, rgba(18, 210, 125, 0.15) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.preco-valor:hover::before {
  opacity: 1;
}

.preco-valor:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(18, 210, 125, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(18, 210, 125, 0.3);
}

.preco-original {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
  font-family: var(--font-family-regular);
  opacity: 0.8;
  position: relative;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.preco-atual {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #12d27d 0%, #0ea5e9 50%, #12d27d 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-family-bold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: baseline;
  gap: 3px;
  text-shadow: none;
  /* Removed infinite gradient animation for better performance */
  filter: drop-shadow(0 2px 8px rgba(18, 210, 125, 0.3));
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.preco-atual .mes {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888 !important;
  font-family: var(--font-family-medium);
  margin-left: 3px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #888 !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
}

.preco-valor:hover .preco-atual {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 20px rgba(18, 210, 125, 0.4));
}

.preco-valor:hover .preco-atual .mes {
  background: rgba(18, 210, 125, 0.15);
  color: #555;
}

.preco-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-family-bold);
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  position: relative;
  /* Removed infinite pulse animation for better performance */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.preco-badge-premium {
  background: linear-gradient(135deg, #12d27d 0%, #0ea5e9 100%);
  box-shadow: 0 2px 8px rgba(18, 210, 125, 0.4);
  /* Removed infinite glow animation for better performance */
}

@keyframes glow {
  from {
    box-shadow: 0 2px 8px rgba(18, 210, 125, 0.4);
  }
  to {
    box-shadow: 0 4px 16px rgba(18, 210, 125, 0.6), 0 0 20px rgba(18, 210, 125, 0.3);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  }
}

.preco-desc {
  color: var(--white-color);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.preco-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.preco-lista li {
  color: var(--white-color);
  opacity: 0.8;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.preco-lista i {
  color: var(--green-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.preco-lista i.fa-star {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  /* Removed infinite sparkle animation for better performance */
}

@keyframes sparkle {
  from {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  to {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.3);
  }
}

.preco-footer {
  color: var(--white-color);
  opacity: 0.6;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Mentoria Section */
.mentoria-info {
  background: #0f1631;
  padding: 80px 0 40px 0;
  display: flex;
  justify-content: center;
}

.container-mentoria {
  width: 100%;
  margin: 0 auto;
}

.mentoria-header {
  text-align: center;
  margin-bottom: 32px;
}

.mentoria-header h2 {
  color: var(--white-color);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.mentoria-destaque {
  color: var(--green-color);
}

.mentoria-header p {
  color: var(--white-color);
  opacity: 0.8;
  font-size: 1.2rem;
}

.mentoria-card {
  background: #0f1631;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 24px 32px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
}

.mentoria-emoji {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.mentoria-card-content h3 {
  color: var(--white-color);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.mentoria-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mentoria-lista li {
  color: var(--white-color);
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mentoria-lista i {
  color: var(--green-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.mentoria-preco {
  margin: 24px 0 10px 0;
}

.mentoria-preco-valor {
  color: var(--green-color);
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(18, 210, 125, 0.08);
  border-radius: 8px;
  padding: 8px 18px;
  display: inline-block;
}

.mentoria-vagas {
  color: var(--white-color);
  opacity: 0.85;
  font-size: 1.05rem;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-block;
}

.mentoria-grid {
  background: #0f1631;
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.mentoria-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(18, 210, 125, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.mentoria-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.mentoria-card-grid {
  background: linear-gradient(145deg, #0f1631 0%, #1a2040 100%);
  border: 1px solid rgba(18, 210, 125, 0.1);
  border-radius: 16px;
  padding: 40px 24px 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 420px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.mentoria-card-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 210, 125, 0.03) 0%, transparent 50%);
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mentoria-card-grid:hover::before {
  opacity: 1;
}

.mentoria-card-grid:hover {
  /* Simplified hover effect */
  border-color: rgba(18, 210, 125, 0.3);
}

.mentoria-card-grid > * {
  position: relative;
  z-index: 2;
}

.mentoria-card-num {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--green-color);
  color: #050a14;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.mentoria-card-title {
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 32px;
}

.mentoria-card-desc {
  color: var(--white-color);
  opacity: 0.8;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.mentoria-card-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mentoria-card-grid li {
  color: var(--white-color);
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mentoria-card-grid i {
  color: var(--green-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.mentoria-btn-area {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.mentoria-section {
  background: #0f1631;
  padding: 80px 0 40px 0;
}

.mentoria-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.mentoria-card {
  background: #0f1631;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px 32px 32px;
  position: relative;
  text-align: left;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px 0 rgba(18, 210, 125, 0.08);
}

.mentoria-card-num {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--green-color);
  color: #050a14;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(18, 210, 125, 0.15);
}

.mentoria-card h3 {
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 32px;
}

.mentoria-card p {
  color: var(--white-color);
  opacity: 0.7;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.mentoria-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mentoria-card li {
  color: var(--white-color);
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mentoria-card i {
  color: var(--green-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.botao-centro {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.botao-centro .btn-preco {
  animation: pulse 2s ease-in-out infinite;
}

/* Mentor Section */
.mentor {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 40px;
  margin: 0 auto;
  background-color: var(--dark-blue);
  position: relative;
  overflow: hidden;
}

.mentor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(18, 210, 125, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.mentor .container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.mentor .container .col:first-child {
  transition: transform 0.3s ease;
}

.mentor .container .col:first-child:hover {
  /* Simplified hover effect */
  opacity: 0.95;
}

.mentor .container .col:first-child img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.mentor .container .col:first-child img:hover {
  filter: grayscale(0%);
  /* Removed box-shadow for better performance */
}

.mentor .container h1 {
  font-size: 30px;
  width: 100%;
  color: var(--white-color);
  line-height: 1.2;
  font-family: var(--font-family-bold);
  padding: 0 20px;
  transition: color 0.3s ease;
}

.mentor .container h1:hover {
  color: #f0f0f0;
}

.mentor .container h3 {
  font-size: 24px;
  width: 100%;
  color: var(--green-color);
  line-height: 1.2;
  font-family: var(--font-family-bold);
  padding: 0 20px 10px 20px;
  transition: all 0.3s ease;
}

.mentor .container h3:hover {
  color: #20e68a;
  /* Removed transform for better performance */
}

.mentor .container p {
  font-size: 16px;
  width: 100%;
  color: var(--white-color);
  line-height: 1.6;
  font-family: var(--font-family-regular);
  padding: 8px 20px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.mentor .container p:hover {
  opacity: 1;
  /* Removed transform for better performance */
}

/* Footer */
.rodape {
  background-color: #050a14; /* Slightly darker for more modern contrast */
  color: var(--white-color);
  padding: 60px 20px; /* More generous padding */
  font-size: 1rem; /* Adjusted font size */
  font-family: var(--font-family-regular);
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Subtle top border */
}

.rodape .container-footer {
  max-width: 1200px; /* Max width for content */
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Distribute items */
  align-items: center; /* Vertically align items */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 30px; /* Increased gap between sections */
}

.rodape .footer-left p {
  margin: 0;
  opacity: 0.7; /* Slightly reduced opacity for softer look */
}

.rodape .social-links {
  display: flex;
  gap: 25px; /* Increased spacing between icons */
}

.rodape .social-links a {
  color: var(--white-color);
  opacity: 0.6; /* Softer initial opacity */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Added transform transition */
}

.rodape .social-links a:hover {
  opacity: 1;
  color: var(--green-color); /* Highlight on hover */
  transform: translateY(-3px); /* Subtle lift effect on hover */
}

/* Performance optimizations applied - Git update forced */
