:root {
  --purple: #4420da;
  --yellow: #c09d4e;
  --cinza-texto: #121212;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  overflow-x: hidden;
}

/* Container centralizado para manter estrutura no zoom */
section {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Garantir que imagens sejam responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevenir overflow horizontal */
* {
  box-sizing: border-box;
}

.section {
  mix-blend-mode: normal;
  display: flex;
  overflow: visible;
}

.hero-section {
  background-image: url('../images/hero-background.png');
  background-position: 50%;
  background-size: cover;
  min-height: 100vh;
  padding: 40px 100px;
}

.nav-wrapper {
  justify-content: space-between;
  display: flex;
}

.hero-content {
  box-sizing: border-box;
  object-fit: fill;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
  top: 130px;
  right: 130px;
}

.nav-buttons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-sub-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.link-block {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.logo {
  max-width: 180px;
  height: auto;
}

.nav-right-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.98);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.mobile-nav-link {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--yellow);
}

.hero-text {
  color: #fff;
  text-align: left;
  font-size: 42px;
  font-weight: 300;
  line-height: 50px;
  position: relative;
}

.image {
  width: 30px;
  padding-top: 2px;
}

/* Methodology Section */
.methodology-section {
  background-image: url('../images/componentes-home.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.methodology-content {
  box-sizing: border-box;
  object-fit: fill;
  justify-content: space-between;
  min-height: 350px;
  display: flex;
  position: static;
}

.methodology-header {
  background-image: url('../images/Vector-Left.png');
  background-position: 0 0;
  background-size: auto;
  display: block;
}

.methodology-header-text {
  padding-top: 40px;
  padding-left: 140px;
}

.grid {
  grid-template-rows: auto;
}

.methodology-div {
  margin: auto;
}

.methodology-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 2.5fr;
  padding: 10vh;
}

.methodology-left {
  position: relative;
  overflow: hidden;
}

.section-heading {
  color: var(--purple);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.section-line {
  background-color: var(--yellow);
  width: 120px;
  height: 2px;
  margin-top: 40px;
  margin-left: 20px;
}

.section-line-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5vh;
  display: flex;
}

.section-line-text {
  color: var(--purple);
}

.methodology-right {
  padding-left: 10vh;
  position: relative;
  overflow: hidden;
}

.vector-left {
  z-index: -1;
  width: 80%;
  position: absolute;
}

.vector-right {
  z-index: -1;
  float: right;
  width: 50%;
  padding-top: 100px;
  display: inline-block;
  position: static;
}

.vector-left-wrapper {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.vector-right-wrapper {
  z-index: -1;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.methodology-right-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  padding: 0;
  display: flex;
}

.methodology-item-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  max-width: 580px;
  display: flex;
}

.methodology-item-header-wrapper {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: static;
}

.chevron {
  border-right-style: solid;
  border-right-width: 3px;
  border-right-color: var(--purple);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: var(--purple);
  mix-blend-mode: normal;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  transform: rotate(45deg);
}

.heading {
  color: var(--cinza-texto);
  font-weight: 300;
}

.text-block {
  color: var(--cinza-texto);
  padding-left: 30px;
  padding-right: 10px;
  font-size: 16px;
}

.hero-text-wrapper {
  justify-content: flex-end;
  align-items: center;
  min-height: 80vh;
  padding-right: 20vh;
  display: flex;
}

.hero-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-2 {
  color: #fff;
  text-align: right;
  font-weight: 300;
}

.pde-section {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.pde-wrapper {
  background-color: var(--cinza-texto);
  padding: 5vh 10vh 10vh;
  width: 100%;
  box-sizing: border-box;
}

.pde-course-wrapper {
  position: relative;
  max-width: 100%;
}

.pde-classes-wrapper {
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  justify-content: flex-start;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.pde-image-wrapper {
  background-image: linear-gradient(0deg, var(--cinza-texto) 40%, transparent), url('../images/auditorio.png');
  mix-blend-mode: normal;
  object-fit: cover;
  background-position: 0 0, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 20px;
  width: 75%;
  max-width: 1440px;
  min-height: 80vh;
  display: block;
  margin-left: auto;
}

.pde-text-wrapper {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 0vh;
  padding-bottom: 5vh;
  max-width: 82vh;
}

.pde-heading-date {
  border: 1px solid var(--yellow);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  max-width: 35vh;
  min-height: 4vh;
  margin-top: 0;
  margin-bottom: 0;
  padding: .7vh;
  font-weight: 300;
}

.pde-heading-1 {
  color: var(--yellow);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.pde-heading-2 {
  color: #fff;
  font-size: 60px;
  font-weight: 300;
}

.pde-course-text {
  color: #fff;
  max-width: 82vh;
  padding-top: 3vh;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.pde-image-class-wrapper {
  background-image: url('../images/class.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 50%;
  max-width: 800px;
  min-width: 400px;
  min-height: 40vh;
  padding-bottom: 0;
  display: block;
  flex-shrink: 0;
}

.pde-classes-text-wrapper {
  padding: 3vh 3vh 0;
  flex: 1;
  min-width: 0;
}

.pde-classes-heading {
  color: var(--yellow);
  text-align: left;
  -webkit-text-stroke-color: #6646ea;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.pde-classes-title {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
}

.pde-classes-heading-wrapper {
  justify-content: space-between;
  display: flex;
}

.pde-classes-text {
  color: #fff;
  max-width: 60vh;
  font-size: 18px;
  line-height: 30px;
}

.pde-classes-cta {
  cursor: pointer;
  background-color: #4421da;
  border-radius: 50px;
  max-width: 30vh;
  margin-top: 3vh;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pde-classes-cta:hover {
  background-color: #5533e5;
  transform: translateY(-2px);
}

.conheca-o-programa {
  color: #fff;
  text-align: center;
  padding: 2vh;
  font-size: 16px;
  font-weight: 500;
}

.pde-classes-arrows {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.pde-classes-link-inactive {
  cursor: pointer;
  background-color: #acaeb2;
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  box-shadow: 0 0 #0003;
  transition: all 0.3s ease;
}

.pde-classes-link-inactive[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pde-classes-link-active {
  cursor: pointer;
  background-color: #4420da;
  border: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  box-shadow: 0 0 #0003;
  transition: all 0.3s ease;
}

.pde-classes-link-active[disabled] {
  background-color: #acaeb2;
  width: 36px;
  height: 36px;
  cursor: not-allowed;
}

/* PDE Slides */
.pde-classes-text-wrapper .pde-slide {
  display: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pde-classes-text-wrapper .pde-slide.active {
  display: block !important;
  opacity: 1;
}

.left-arrow {
  width: 14px;
  height: 14px;
  padding-right: 2px;
}

.right-arrow {
  width: 18px;
  height: 18px;
  padding-left: 2px;
}

.pde-references-wrapper {
  margin-top: 40px;
}

.heading-3 {
  color: #fff;
  text-align: center;
  font-weight: 300;
}

.reference-wrapper {
  flex-flow: column;
  display: flex;
}

.references-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 20px;
  display: grid;
}

.reference-name {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.reference-text {
  color: #fff;
  line-height: 22px;
}

.reference-image {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 20px;
  display: block;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.reference-image-wrapper {
  aspect-ratio: 3 / 2;
  box-shadow: -12px 12px 0 0 var(--purple);
  border-radius: 24px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.products-section {
  background-color: #f5f5f5;
}

.product-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 2fr 3fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  gap: 2rem 6rem;
  padding: 100px 100px 100px 100px;
  display: grid;
}

.product-empty-cell {
  grid-row: 1;
  grid-column: 1;
}

.product-image-1 {
  grid-row: 1;
  grid-column: 2;
}

.product-image-2 {
  grid-row: 2;
  grid-column: 2;
}

.product-text-wrapper {
  max-width: 52vh;
  padding-top: 50px;
  grid-row: 2;
  grid-column: 1;
}

.heading-4 {
  color: #4420da;
  font-size: 32px;
  font-weight: 500;
}

.product-text {
  margin-top: 50px;
  font-size: 18px;
  line-height: 28px;
}

.product-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.product-image-link:hover {
  transform: scale(1.02);
}

.product-image-link img {
  width: 100%;
  height: auto;
  display: block;
}

.product-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.product-image-title {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.founders-section-wrapper {
  background-color: #241535;
}

.founders-header {
  color: #fff;
  text-align: center;
  padding-top: 100px;
  font-size: 32px;
  font-weight: 300;
}

.founders-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding: 40px 100px 100px;
  display: flex;
}

.founder-image {
  border-radius: 25px;
}

.heading-5 {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 18px;
}

.text-block-2 {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}

.contact-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 100px;
  display: grid;
}

.contact-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: static;
}

.contact-detail-wrapper {
  max-width: 450px;
}

.contact-header {
  color: #241535;
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

.contact-info-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-info-header {
  color: #0a0c10;
  font-size: 16px;
  font-weight: 400;
}

.div-block {
  border: 30px solid #acaeb2;
  border-radius: 20px;
  min-height: 10px;
}

.input-name, .field-label-2 {
  font-size: 16px;
  font-weight: 500;
}

.input-field-name, .text-field, .input-field-phone, .input-field-email {
  border: 1px solid #acaeb2;
  border-radius: 10px;
}

.submit-button {
  background-color: #4420da;
  border-radius: 20px;
  width: 200px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}

.contact-image-wrapper {
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  background-image: url('../images/banner-contato.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  border: 1px #000;
  border-radius: 20px;
  max-width: 600px;
  overflow: hidden;
}

.section-line-methodology {
  background-color: var(--purple);
  width: 120px;
  height: 2px;
  margin-left: 20px;
}

.footer-section {
  background-color: #241535;
}

.footer-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  display: flex;
}

.footer-text {
  color: #fff;
  font-weight: 400;
}

.footer-yc-logo img {
  max-width: 180px;
  height: auto;
}

#w-node-aeb5c1ff-6f05-018b-13e1-eb61720ef525-2ad49515 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

/* ================== PARA EMPRESAS PAGE ================== */

/* Hero Empresas */
.hero-empresas {
  background-image: url('../images/hero-palestras.png');
}

/* Soluções Sob Medida Section */
.solucoes-section {
  background-color: var(--cinza-texto);
  padding: 80px 10vh;
}

.solucoes-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}

.solucoes-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.solucoes-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.solucoes-content {
  max-width: 600px;
}

.solucoes-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 30px;
}

.solucoes-text {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

.solucoes-btn {
  display: inline-block;
  background-color: var(--purple);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.solucoes-btn:hover {
  background-color: #5533e5;
}

/* Estratégia Section - Layout 2 colunas */
.estrategia-section {
  padding: 80px 10vh;
  background-color: #fff;
}

.estrategia-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 60px;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  overflow: visible;
  background-color: #fff;
  position: relative;
  z-index: 5;
}

.estrategia-text-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 10;
}

.estrategia-text-content::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -110px;
  right: 0px;
  bottom: -100px;
  background-color: #fff;
  z-index: -1;
}

.estrategia-heading {
  color: #121212;
  font-size: 42px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 20px;
  max-width: 450px;
  line-height: 42px;
}

.estrategia-btn {
  display: inline-block;
  background-color: var(--purple);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 250px;
}

.estrategia-btn:hover {
  background-color: #5533e5;
  color: #fff;
}

/* Áreas Section - Cards estáticos */
.areas-section {
  padding: 80px 10vh;
  background-color: var(--cinza-texto);
}

.areas-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.area-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 40px;
}

.area-title {
  color: var(--purple);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.area-description {
  color: var(--cinza-texto);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* Carousel Styles */
.carousel-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  width: 400px;
  flex-shrink: 0;
  padding: 0 10px;
}

.carousel-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.carousel-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.card-title {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
}

.card-description {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-arrow {
  background-color: transparent;
  border: none;
  border-radius: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover:not(.disabled) {
  opacity: 0.7;
}

.carousel-arrow.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.carousel-arrow img {
  width: 50px;
  height: 20px;
  filter: brightness(0);
}

.carousel-arrow.disabled img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(0%) hue-rotate(212deg) brightness(97%) contrast(92%);
  opacity: 0.5;
}

.carousel-indicators {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #acaeb2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--purple);
  width: 16px;
  height: 16px;
}

/* ================== PALESTRAS PAGE ================== */

/* Hero Palestras */
.hero-palestras {
  background-image: url('../images/hero-palestras2.png');
  background-size: cover;
  background-position: center;
}

/* Palestras Corporativas Section */
.palestras-corporativas-section {
  background-color: var(--cinza-texto);
  padding: 80px 10vh;
}

.palestras-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.palestras-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
}

.palestras-text {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.palestras-btn {
  display: inline-block;
  background-color: var(--purple);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.palestras-btn:hover {
  background-color: #6b46c1;
  transform: translateY(-2px);
}

/* Especialidades Section */
.especialidades-section {
  background-color: var(--cinza-texto);
  padding: 80px 10vh;
}

.especialidades-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.especialidade-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.especialidade-title {
  color: var(--purple);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.3;
}

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

.especialidade-list li {
  color: var(--cinza-texto);
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}

.especialidade-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--purple);
  border-radius: 50%;
}

/* ================== PROGRAMA EXECUTIVO PAGE ================== */

/* Hero Programa Executivo */
.hero-programaexecutivo {
  background-image: url('../images/hero-programaexecutivo.png');
  background-size: cover;
  background-position: center;
  background-color: #121212;
  min-height: 100vh;
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
}

.hero-pe-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 80px auto 0;
  text-align: center;
}

.pe-subtitle {
  color: #C09D4E;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pe-title {
  color: #fff;
  font-size: 60px;
  font-weight: 300;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.pe-description {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 40px 0;
  max-width: 700px;
}

.pe-date-badge {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 24px;
  border: 2px solid #C09D4E;
  border-radius: 8px;
  display: inline-block;
}

/* Encontros Carousel Section */
.encontros-section {
  background-color: #F5F5F5;
  padding: 80px 10vh;
}

.encontros-wrapper {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}

.encontro-arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.encontro-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.encontro-arrow img {
  width: 24px;
  height: 24px;
  filter: brightness(0);
}

.encontro-arrow-left {
  grid-column: 1;
}

.encontro-arrow-right {
  grid-column: 4;
}

.encontro-image-container {
  grid-column: 2;
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.encontro-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  display: none;
}

.encontro-image.active {
  display: block;
}

.encontro-content-container {
  grid-column: 3;
  padding: 40px;
}

.encontro-slide {
  display: none !important;
}

.encontro-slide.active {
  display: block !important;
}

.encontro-number {
  color: #5E5E5E;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.encontro-title {
  color: #4420DA;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.encontro-text {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

/* Carousel Indicators */
.encontro-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.encontro-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D9D9D9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.encontro-dot:hover {
  background-color: #ACACAC;
}

.encontro-dot.active {
  background-color: #4420DA;
  width: 14px;
  height: 14px;
}

/* ================== MEDIA QUERIES ================== */

/* Large screens / Low zoom - prevenir overflow */
@media screen and (min-width: 1921px) {
  .pde-image-wrapper {
    width: 75%;
    max-width: 1440px;
  }

  .pde-image-class-wrapper {
    width: 50%;
    max-width: 800px;
    min-width: 500px;
  }
}

/* Tablet - 768px to 991px */
@media screen and (max-width: 991px) {
  .hero-section {
    padding: 30px 60px;
  }

  .nav-buttons-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero-text {
    font-size: 32px;
    line-height: 38px;
  }

  .hero-text-wrapper {
    padding-right: 10vh;
  }

  .methodology-grid {
    padding: 6vh;
  }

  .methodology-left-wrapper {
    padding: 0 0 0 5vh;
  }

  .methodology-right {
    padding-left: 5vh;
  }

  .pde-wrapper {
    padding: 3vh 6vh 6vh;
  }

  .pde-image-wrapper {
    width: 80%;
    max-width: 100%;
  }

  .pde-heading-2 {
    font-size: 48px;
  }

  .pde-image-class-wrapper {
    width: 55%;
    max-width: 100%;
    min-width: 350px;
    min-height: 35vh;
  }

  .pde-classes-wrapper {
    flex-wrap: nowrap;
  }

  .product-wrapper {
    padding: 60px 60px 60px 120px;
    gap: 2rem 4rem;
  }

  .product-text-wrapper {
    max-width: 100%;
  }

  .contact-wrapper {
    padding: 60px;
  }

  .footer-wrapper {
    padding: 20px 60px;
  }
}

/* Mobile - 768px and below */
@media screen and (max-width: 767px) {
  .hero-section {
    padding: 20px 30px;
    min-height: auto;
  }

  .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-sub-wrapper {
    flex-direction: row;
    align-items: center;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .nav-buttons-wrapper {
    display: none;
  }

  .logo {
    max-width: 140px;
  }

  .footer-yc-logo img {
    max-width: 120px;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-right-wrapper {
    gap: 15px;
  }

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

  .hero-text-wrapper {
    padding-right: 0;
    min-height: 60vh;
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
    padding: 4vh 3vh;
  }

  .methodology-left-wrapper {
    padding: 0;
    text-align: center;
  }

  .section-heading {
    text-align: center;
  }

  .section-line-wrapper {
    justify-content: center;
  }

  .methodology-right {
    padding-left: 0;
    padding-top: 4vh;
  }

  .methodology-item-wrapper {
    max-width: 100%;
  }

  .text-block {
    padding-left: 30px;
    padding-right: 0;
  }

  .pde-wrapper {
    padding: 3vh 3vh 5vh;
  }

  .pde-image-wrapper {
    min-width: auto;
    width: 100%;
    min-height: 70vh;
    background-position: center;
    display: flex;
    align-items: flex-end;
  }

  .pde-text-wrapper {
    position: static;
    padding: 20px;
    width: 100%;
  }

  .pde-heading-date {
    max-width: 100%;
    font-size: 12px;
    margin-top: 25vh;
    margin-bottom: 10px;
  }

  .pde-heading-1 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .pde-heading-2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .pde-course-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .pde-classes-wrapper {
    flex-direction: column;
    grid-column-gap: 4vh;
    grid-row-gap: 4vh;
  }

  .pde-image-class-wrapper {
    min-width: 100%;
    min-height: 30vh;
  }

  .pde-classes-text-wrapper {
    padding: 2vh 2vh 0;
  }

  .pde-classes-title {
    font-size: 24px;
  }

  .pde-classes-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .pde-classes-cta {
    max-width: 100%;
  }

  .heading-3 {
    font-size: 24px;
  }

  .references-wrapper {
    grid-template-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 30px;
  }

  .reference-wrapper {
    max-width: 100%;
  }

  .product-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 40px 30px;
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }

  .product-empty-cell {
    display: none;
  }

  .product-text-wrapper {
    max-width: 100%;
    padding-top: 0;
    order: 1;
  }

  .product-image-1 {
    order: 2;
  }

  .product-image-2 {
    order: 3;
  }

  .heading-4 {
    font-size: 28px;
  }

  .product-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .contact-image-wrapper {
    max-width: 100%;
    min-height: 200px;
  }

  .contact-detail-wrapper {
    max-width: 100%;
  }

  .contact-header {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 40px;
  }

  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
  }

  .footer-text {
    text-align: left;
  }

  /* Para Empresas - Mobile */
  .solucoes-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .solucoes-content {
    order: 2;
  }

  .solucoes-images-grid {
    order: 1;
    gap: 15px;
  }

  .solucoes-section {
    padding: 60px 20px;
  }

  /* Para Empresas Page - Mobile */
  .estrategia-section,
  .areas-section {
    padding: 60px 20px;
  }

  /* Estratégia Section - Empilhar em coluna no mobile */
  .estrategia-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .estrategia-text-content {
    text-align: center;
  }

  .estrategia-heading {
    font-size: 32px;
    text-align: center;
  }

  .estrategia-btn {
    max-width: 100%;
  }

  /* Carousel Mobile */
  .carousel-slide {
    width: 100%;
    padding: 0 15px;
  }

  .carousel-card {
    height: 350px;
  }

  .carousel-card-overlay {
    padding: 30px;
  }

  .card-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 15px;
    line-height: 22px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-arrow img {
    width: 14px;
    height: 14px;
  }

  .carousel-controls {
    margin-top: 30px;
    justify-content: center;
  }

  /* Áreas Section - Cards em coluna no mobile */
  .areas-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .area-card {
    padding: 30px;
  }

  .area-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .area-description {
    font-size: 15px;
    line-height: 22px;
  }

  /* Palestras - Mobile */
  .palestras-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .palestras-text {
    font-size: 16px;
    line-height: 26px;
  }

  .especialidades-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .especialidades-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .especialidade-card {
    padding: 30px;
  }

  .especialidade-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .especialidade-list li {
    font-size: 15px;
    line-height: 22px;
  }

  /* Programa Executivo - Mobile */
  .hero-programaexecutivo {
    padding: 20px 30px;
    min-height: auto;
  }

  .hero-pe-content {
    margin-top: 40px;
    max-width: 100%;
  }

  .pe-title {
    font-size: 36px;
  }

  .pe-description {
    font-size: 16px;
    line-height: 24px;
  }

  .pe-date-badge {
    font-size: 14px;
    padding: 10px 20px;
  }

  .encontros-section {
    padding: 60px 20px;
  }

  .encontros-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }

  .encontro-arrow-left {
    grid-column: 1;
    grid-row: 3;
    order: 1;
  }

  .encontro-image-container {
    grid-column: 1;
    grid-row: 1;
    order: 2;
  }

  .encontro-image {
    height: 300px;
  }

  .encontro-content-container {
    grid-column: 1;
    grid-row: 2;
    padding: 20px;
    order: 3;
  }

  .encontro-arrow-right {
    grid-column: 1;
    grid-row: 3;
    order: 4;
    justify-self: end;
  }

  .encontro-title {
    font-size: 24px;
  }

  .encontro-text {
    font-size: 15px;
    line-height: 24px;
  }

  .encontros-wrapper {
    display: flex;
    flex-direction: column;
  }

  .encontro-arrow-left,
  .encontro-arrow-right {
    align-self: center;
  }

  .encontros-wrapper > *:nth-child(1) {
    order: 2;
  }

  .encontros-wrapper > *:nth-child(2) {
    order: 1;
  }

  .encontros-wrapper > *:nth-child(3) {
    order: 3;
  }

  .encontros-wrapper > *:nth-child(4) {
    order: 4;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
  }

  .encontro-arrow {
    position: static;
  }
}

/* Mobile Small - 480px and below */
@media screen and (max-width: 479px) {
  .hero-section {
    padding: 15px 20px;
  }

  .nav-buttons-wrapper {
    width: 100%;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }

  .hero-text {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-text-wrapper {
    min-height: 50vh;
  }

  .methodology-grid {
    padding: 3vh 2vh;
  }

  .section-heading {
    font-size: 28px;
  }

  .heading {
    font-size: 18px;
  }

  .text-block {
    font-size: 14px;
    padding-left: 25px;
  }

  .pde-wrapper {
    padding: 2vh 2vh 4vh;
  }

  .pde-image-wrapper {
    min-height: 60vh;
  }

  .pde-text-wrapper {
    position: static;
    padding: 15px;
  }

  .pde-heading-2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .pde-course-text {
    font-size: 14px;
    line-height: 20px;
  }

  .pde-classes-title {
    font-size: 20px;
  }

  .pde-classes-text {
    font-size: 14px;
    line-height: 20px;
  }

  .conheca-o-programa {
    font-size: 14px;
    padding: 1.5vh;
  }

  .heading-3 {
    font-size: 20px;
  }

  .reference-name {
    font-size: 16px;
  }

  .reference-text {
    font-size: 14px;
    line-height: 20px;
  }

  .product-wrapper {
    padding: 30px 20px;
  }

  .heading-4 {
    font-size: 24px;
  }

  .product-text {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-wrapper {
    padding: 30px 20px;
  }

  .contact-header {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .input-name {
    font-size: 14px;
  }

  .submit-button {
    width: 100%;
  }

  .logo {
    max-width: 120px;
  }

  .footer-wrapper {
    padding: 15px 20px;
  }

  .footer-text {
    font-size: 11px;
  }

  .footer-yc-logo img {
    max-width: 80px;
  }
}


