:root {
  --primary: #d4a95b; /* Dourado - cor principal (d4a95b) */
  --secondary: #0c3a60; /* Azul escuro - cor secundária (0c3a60) */
  --light: #f5f5f5; /* Branco acinzentado claro */
  --dark: #1a1a1a; /* Preto quase puro */
  --accent: #c5c5c4; /* Cinza claro (c5c5c4) */
  --text: #333333; /* Cor de texto principal */
  --text-light: #777777; /* Cor de texto secundário */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--secondary);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 10px;
}

.btn:hover {
  background: #ba944f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  background: url("../assets/img/bg_banner.jpeg") no-repeat center right/cover;
  color: var(--light);
  padding: 30px 30px 0 30px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-text img {
  width: 200px;
  height: 90px;
  object-fit: cover;
}
.hero-text {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  filter: drop-shadow(-4px 2px 10px #363636);
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); */
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  margin: 0;
  width: fit-content;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Video Section */
/* .video-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--light);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
} */

.transformation-section {
  background: linear-gradient(to right, var(--secondary), #1a3c5f);
  color: white;
  padding: 80px 0;
  margin-top: 50px;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.transformation-card {
  text-align: center;
  padding: 30px;
}

.transformation-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
}

.transformation-text {
  font-size: 1.2rem;
}

.cta-container {
  text-align: center;
  margin-top: 60px;
}

/* Benefits Section */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: var(--primary);
  bottom: -10px;
  left: 25%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--light);
  border: 1px solid var(--accent);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Testimonial Section */
.testimonial-section {
  background: var(--secondary);
  color: var(--light);
  padding: 80px 0;
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial {
  text-align: center;
  padding: 0 20px;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text:before {
  top: -20px;
  left: -30px;
}

.testimonial-text:after {
  bottom: -40px;
  right: -30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}

.slider-prev,
.slider-next {
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 10px;
}

.slider-prev:hover,
.slider-next:hover {
  color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* About Mentor */
.mentor-section {
  padding: 80px 0;
  background: var(--accent);
}

.mentor-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.mentor-photo {
  flex: 1;
}

.mentor-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mentor-info {
  flex: 1;
  text-align: left;
}

.mentor-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.mentor-info ul {
  margin-top: 20px;
  list-style: none;
}

.mentor-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.mentor-info li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 80px 20px;
  text-align: center;
  color: var(--light);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-section .btn {
  background: var(--light);
  color: var(--primary);
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: var(--light);
}
.form-container {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  color: var(--secondary);
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 169, 91, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.security-note {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #666;
  padding: 15px;
  background-color: rgba(197, 197, 196, 0.2);
  border-radius: 8px;
}

.required {
  color: #e74c3c;
}

/* Responsividade */

/* Footer */
footer {
  background: var(--secondary);
  color: var(--light);
  padding: 40px 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-icons {
  margin: 30px 0;
}

.social-icons a {
  color: var(--light);
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #aaa;
  padding-top: 20px;
  border-top: 1px solid var(--accent);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero {
    padding: 0;
  }
  .hero .container {
    padding: 0;
  }
  .hero-content {
    height: calc(100dvh + 100px);
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 5rem;
    overflow: hidden;
  }

  .hero-text {
    padding: 0 15px;
    text-align: center;
    position: absolute;
    bottom: 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero h2 {
    font-size: 1.2rem;
  }
  .hero-text {
    background: linear-gradient(0deg, #000000 55%, transparent 100%);
  }
  .hero-text h1,
  .hero-text h2 {
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .hero-buttons {
    margin-top: 0;
    justify-content: center;
    flex: 1;
  }

  .hero-image {
    position: absolute;
    z-index: -2;
  }
  .hero-image img {
    margin-bottom: 0rem;
  }
  .hero .hero-buttons {
    margin: 0;
    margin-bottom: 3rem;
  }
  .mentor-container {
    flex-direction: column;
    text-align: center;
  }

  .mentor-info {
    text-align: center;
  }

  .mentor-info ul {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero h2 {
    font-size: 0.9rem;
  }
  .hero-image img {
    width: 360px;
    height: auto;
    object-fit: cover;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 30px 20px;
  }
  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
    min-height: 180px;
  }

  .slider-controls {
    gap: 15px;
  }
  .cta-section h2 {
    font-size: 1.3rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 25px;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }
}
