/* Global Styles */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
}

.container {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

/* Wrapper to limit page width */
.page-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  color: #be1b8e;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Header Section */
.header {
  background-color: #FFF;
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px; /* Add white gap below header */
}

.header .container {
  padding: 0;
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-left {
  flex: 1;
  background-color: #be1b8e;
  padding: 30px 5% 40px;
  max-width: 55%;
  position: relative;
  border-radius: 0 100px 100px 0;
  margin-left: -15px; /* Remove the white border on the left */
}

.header-right {
  flex: 1;
  padding: 20px;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-title {
  text-align: right;
  margin-bottom: 30px;
}

.header-title h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.header-title .trilha {
  color: #FFCC00;
  font-size: 2rem;
  display: block;
  margin-bottom: -10px;
}

.header-title .de {
  font-weight: 300;
  font-size: 2.5rem;
}

.edition-badge {
  position: absolute;
  left: 5%;
  top: 110px;
  width: 100px;
  height: 100px;
}

.edition-badge img {
  width: 100%;
  height: auto;
}

.header-text {
  margin-top: 60px;
  width: 100%;
  text-align: left;
  color: white;
}

.header-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  line-height: 1.2;
}

.header-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: white;
  line-height: 1.5;
}

.header-text .highlight {
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.faces-img {
  max-width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.btn-orange {
  background-color: #F9A826;
  color: #1A365D;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #FFB52E;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Box */
.hero-box {
  background-color: #F25CA2;
  color: white;
  padding: 25px 30px;
  border-radius: 0 20px 20px 0;
  margin: 30px 0;
  position: relative;
  max-width: 90%;
}

.hero-box h2 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.hero-box p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.hero-box .highlight {
  font-weight: 700;
  text-transform: uppercase;
}

/* Button Styles */
.btn-cta {
  background-color: #b21e86;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover {
  background-color: #d42a9e;
  color: white;
}

.btn-submit {
  background-color: #b21e86;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  width: 100%;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #d42a9e;
  color: white;
}

/* Highlight Section */
.highlight-section {
  background-color: #FFCC00;
  padding: 15px 0;
  margin-bottom: 0;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Challenges Section */
.challenges-section {
  padding: 30px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
}

.challenges-section-new {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.challenges-container {
  width: 80%;
  margin: 0 auto;
}

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

.challenge-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.challenge-icon {
  flex: 0 0 40px;
  margin-right: 15px;
}

.challenge-icon img {
  width: 100%;
  height: auto;
}

.challenge-text {
  flex: 1;
  font-size: 1rem;
}

.challenge-list-new {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.challenge-item-new {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.challenge-icon-new {
  color: #F9A826;
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.challenge-content-new {
  flex: 1;
}

.challenge-heading {
  color: #b21e86;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.challenge-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.challenges-title {
  color: #b21e86;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* What You'll Find Section */
.what-youll-find-section {
  padding: 30px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
}

.content-box {
  background-color: #b21e86;
  color: white;
  padding: 30px;
  border-radius: 15px;
}

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

.find-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Transform Challenges Section */
.transform-challenges-section {
  background-color: #F9A826;
  padding: 60px 0;
  text-align: center;
}

.transform-challenges-title {
  color: #be1b8e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

.transform-challenges-text {
  color: #1A365D;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto 40px;
  text-align: center;
}

.transform-challenges-text strong {
  color: #1A365D;
  font-weight: 700;
}

.transform-challenges-button {
  background-color: #be1b8e;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.transform-challenges-button:hover {
  background-color: #a01875;
  transform: translateY(-2px);
}

.transform-section {
  padding: 40px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
  position: relative;
}

.transform-section::before,
.transform-section::after {
  content: "";
  display: block;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 8" width="24" height="8"><path d="M0,0 L8,8 L16,0 L24,8" fill="none" stroke="%23F25CA2" stroke-width="2"/></svg>') repeat-x;
  position: absolute;
  left: 0;
  right: 0;
}

.transform-section::before {
  top: 0;
}

.transform-section::after {
  bottom: 0;
}

.transform-title {
  color: #b21e86;
  font-weight: 700;
  margin-bottom: 15px;
}

.transform-subtitle {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Program Start Section */
.program-start-section {
  padding: 30px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
}

.start-box {
  background-color: #F25CA2;
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.start-title {
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.start-info {
  margin-bottom: 0;
}

.start-description {
  font-size: 1.1rem;
  margin-top: 15px;
}

/* Program Schedule Section */
.program-schedule-section {
  padding: 40px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
}

.schedule-table-container {
  margin-top: 30px;
}

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.module-row:nth-child(odd) {
  background-color: #F2E6EF;
}

.module-row:nth-child(even) {
  background-color: white;
}

.module-cell {
  padding: 15px;
  display: flex;
  align-items: center;
}

.module-icon {
  flex: 0 0 40px;
  margin-right: 15px;
}

.module-icon img {
  width: 100%;
  height: auto;
}

.module-info {
  flex: 1;
}

.module-title {
  color: #b21e86;
  font-weight: 700;
  margin-bottom: 5px;
}

.module-name {
  margin-bottom: 0;
}

/* Registration Form Section */
.registration-section {
  padding: 40px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
}

.registration-form-container {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-title {
  color: #b21e86;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Registration Section New */
.registration-section-new {
  background-color: #f8e6f3;
  padding: 60px 0;
  text-align: center;
}

.registration-title {
  color: #be1b8e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.registration-subtitle {
  color: #be1b8e;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.registration-description {
  color: #1A365D;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.registration-free {
  color: #be1b8e;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.registration-form-new {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group-new {
  margin-bottom: 25px;
  text-align: left;
}

.form-group-new label {
  display: block;
  color: #1A365D;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.form-group-new input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.registration-button {
  background-color: #be1b8e;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.1rem;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.registration-button:hover {
  background-color: #a01875;
}

.registration-note {
  color: #1A365D;
  font-size: 0.9rem;
  margin-top: 30px;
  text-align: center;
  font-style: italic;
}

/* Partners Section */
.partners-section {
  padding: 30px 0;
  background-color: #FFF8E1; /* Light orange/yellow background */
  border-top: 2px dashed #F25CA2;
  border-bottom: 2px dashed #F25CA2;
}

.partners-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.partner-logo {
  height: 50px;
  margin: 10px 20px;
}

/* Partners Section New */
.partners-section-new {
  background-color: white;
  padding: 40px 0;
  text-align: center;
}

.partners-title {
  color: #1A365D;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-logo-new {
  max-height: 80px;
  width: auto;
}

.partner-logo-new.medium {
  max-height: 100px;
}

.partner-logo-new.large {
  max-height: 120px;
}

/* Banner Section */
.banner-section {
  background-color: #F9A826;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

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

.banner-image {
  flex: 1;
  max-width: 50%;
}

.banner-image img {
  max-width: 100%;
  height: auto;
}

.banner-text {
  flex: 1;
  padding-left: 30px;
  text-align: center;
}

.banner-text h2 {
  color: #1A365D;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.banner-button {
  background-color: #b21e86;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-button:hover {
  background-color: #d42a9e;
  color: white;
  transform: translateY(-2px);
}

/* Footer Section */
.footer {
  padding: 20px 0;
  background-color: #b21e86;
  color: white;
}

.copyright {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Decorative elements */
.section-divider {
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 8" width="24" height="8"><path d="M0,0 L8,8 L16,0 L24,8" fill="none" stroke="%23F25CA2" stroke-width="2"/></svg>') repeat-x;
  margin: 20px 0;
}

/* Program Benefits Section */
.program-benefits-section {
  background-color: #f8e6f3;
  padding: 0;
  position: relative;
  margin-top: 0;
}

.program-benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
}

.program-info {
  flex: 1;
  padding: 40px 60px 40px 5%;
  max-width: 45%;
}

.program-benefits {
  flex: 1;
  background-color: #b21e86;
  border-radius: 20px 0 0 20px;
  padding: 40px;
  color: white;
  max-width: 50%;
  margin-right: 0;
  align-self: stretch;
}

.program-info h3 {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.program-info p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-info .highlight {
  font-weight: 700;
  color: #b21e86;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.benefit-icon {
  margin-right: 15px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #f9a826;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.benefit-content h4 {
  color: #f9a826;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.benefit-content p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.4;
}

.program-logo {
  max-width: 380px;
  margin: 0 auto 30px;
  display: block;
}

.header-logo {
  text-align: right;
  margin-bottom: 30px;
}

.header-logo img {
  max-width: 385px;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-left {
    max-width: 100%;
    border-radius: 0;
    margin-left: 0;
    flex: 100%;
    margin-bottom: 0;
    padding: 30px 5%;
  }
  
  .header-right {
    max-width: 100%;
    margin-top: 20px;
    flex: 100%;
    padding: 20px;
  }
  
  .header-content {
    flex-direction: column;
  }
  
  .header-text {
    text-align: center;
    margin-top: 30px;
  }
  
  .header-logo {
    text-align: center;
  }
  
  .header-logo img {
    max-width: 280px;
  }
  
  .banner-content {
    flex-direction: column;
  }
  
  .banner-image, .banner-text {
    max-width: 100%;
    text-align: center;
    padding: 20px;
  }
  
  .challenges-container {
    width: 95%;
    margin: 0 auto;
  }
  
  .program-benefits-container {
    flex-direction: column;
  }
  
  .program-info, .program-benefits {
    max-width: 100%;
    width: 100%;
  }
  
  .program-benefits {
    border-radius: 20px 20px 0 0;
    margin-top: 30px;
    order: -1;
  }
  
  .program-info {
    padding: 30px 20px;
  }
  
  .registration-form-new {
    padding: 30px 20px;
    max-width: 90%;
  }
  
  .partners-logos {
    gap: 30px;
  }
  
  .partner-logo-new {
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .header-title h1 {
    font-size: 2.2rem;
  }
  
  .header-title .trilha {
    font-size: 1.4rem;
  }
  
  .header-text h2 {
    font-size: 1.6rem;
  }
  
  .challenge-item-new {
    margin-bottom: 30px;
  }
  
  .challenges-title {
    font-size: 1.8rem;
  }
  
  .challenge-heading {
    font-size: 1rem;
  }
  
  .challenge-description {
    font-size: 0.9rem;
  }
  
  .benefit-item {
    margin-bottom: 20px;
  }
  
  .benefit-content h4 {
    font-size: 1rem;
  }
  
  .benefit-content p {
    font-size: 0.85rem;
  }
  
  .program-logo {
    max-width: 280px;
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  .module-cell {
    flex-direction: column;
    text-align: center;
  }
  
  .module-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .partners-logos {
    flex-direction: column;
    gap: 40px;
  }
  
  .partner-logo-new {
    max-height: 70px;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .registration-subtitle {
    font-size: 1.5rem;
  }
  
  .registration-description {
    font-size: 1rem;
  }
  
  .registration-free {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .header-title h1 {
    font-size: 2rem;
  }
  
  .header-text h2 {
    font-size: 1.5rem;
  }
  
  .banner-text h2 {
    font-size: 1.6rem;
  }
  
  .banner-button {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  
  .challenges-title {
    font-size: 1.5rem;
  }
  
  .program-info h3 {
    font-size: 1rem;
  }
  
  .btn-orange {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  .transform-challenges-title {
    font-size: 1.8rem;
  }
  
  .transform-challenges-text {
    font-size: 0.95rem;
    max-width: 95%;
  }
  
  .transform-challenges-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  
  .registration-form-new {
    padding: 25px 15px;
  }
  
  .form-group-new label {
    font-size: 1rem;
  }
  
  .form-group-new input {
    padding: 10px;
  }
  
  .registration-button {
    font-size: 0.9rem;
  }
}
