/* Import Roboto from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/* Import local fonts */
/* @font-face {
    font-family: 'YourCustomFont';
    src: url('../public/fonts/your-font.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} */

/* Import custom fonts */
@font-face {
  font-family: "Hattinant";
  src: url("../fonts/HATTINAND.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-container {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  height: 100%;
}

.logo {
  max-height: 3.5rem;
  width: auto;
}

.logo.mobile {
  display: none;
}

.nav-section {
  justify-self: start;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}

nav li {
  display: flex;
  align-items: center;
  height: 3rem;
}

nav li:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  padding-right: 3rem;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding: 0.2rem 0;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}

nav a:hover::after {
  width: 100%;
}

nav .light {
  font-weight: 400;
  opacity: 0.8;
}

nav .bold {
  font-weight: 700;
}

nav a:hover {
  color: #ffffff;
}

/* Grid Layouts */
.course-grid,
.solutions-grid,
.blog-grid,
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Cards */
.course-card,
.solution-card,
.blog-card,
.ebook-card {
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.course-card:hover,
.blog-card:hover,
.ebook-card:hover {
  transform: translateY(-5px);
}

/* Blog Post */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-content {
  margin: 2rem 0;
}

.blog-tags,
.blog-share {
  margin: 1rem 0;
}

.blog-tags a,
.blog-share a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #2980b9;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  width: 12rem;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links,
.social-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.social-links li,
.contact-info li {
  margin-bottom: 0.5rem;
}

.footer-sublinks {
  list-style: none;
  padding-left: 1rem;
  margin: 0.5rem 0;
}

.footer-links a,
.social-links a,
.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.social-links a:hover,
.contact-info a:hover {
  color: #ccc;
}

.footer-links a {
  font-weight: 700;
}

.footer-sublinks li {
  margin-bottom: 0;
}

.footer-sublinks a {
  font-size: 0.9rem;
  color: #999;
}

.footer-sublinks a:hover {
  color: #ccc;
}

.contact-section,
.location-section {
  margin-bottom: 2rem;
}

.location-section p {
  color: #999;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links li,
  .social-links li,
  .contact-info li {
    margin-bottom: 1.5rem !important;
  }

  .footer-sublinks {
    margin: 1.5rem 0;
    padding-left: 0;
  }

  .footer-sublinks li {
    margin-bottom: 1rem;
  }

  .location-section {
    margin-top: 0 !important;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 100;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Menu Item Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Submenu Styles */
.has-submenu {
  position: relative;
}

/* Indicador de dropdown (seta) - apenas desktop */
/* .has-submenu > a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #41AD49;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.has-submenu:hover > a::after {
    opacity: 1;
    visibility: visible;
} */

/* Estilo para o item de menu pai quando hover */
.has-submenu:hover > a {
  color: #ffffff;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: #41ad49;
  min-width: 220px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.submenu li {
  padding: 0;
  border: none !important;
  width: 100%;
  margin: 0 !important;
  transition: background-color 0.2s ease;
}

.submenu li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.submenu a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.submenu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: none;
}

.submenu li:last-child a {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    grid-template-columns: auto auto;
    padding: 0;
  }

  .logo-section {
    justify-content: start;
    padding: 1rem;
    background: none;
  }

  .logo.mobile {
    display: block;
  }

  .logo.desktop {
    display: none;
  }

  .nav-section {
    padding: 1rem 2rem;
    background: none;
    display: flex;
    justify-content: flex-end;
  }

  .hamburger {
    display: block;
  }

  .hamburger-line {
    background-color: #fff;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease-in-out;
    gap: 2rem;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu.active li {
    animation: slideInRight 0.5s forwards;
    opacity: 0;
  }

  .nav-menu.active li:nth-child(1) {
    animation-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(2) {
    animation-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(3) {
    animation-delay: 0.4s;
  }
  .nav-menu.active li:nth-child(4) {
    animation-delay: 0.5s;
  }
  .nav-menu.active li:nth-child(5) {
    animation-delay: 0.6s;
  }

  nav li {
    height: auto;
  }

  nav li:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0 0 2rem 0;
    margin: 0;
  }

  /* Hamburger Animation */
  .hamburger.active .hamburger-line {
    background-color: #fff;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  .course-grid,
  .solutions-grid,
  .blog-grid,
  .ebook-grid {
    grid-template-columns: 1fr;
  }

  /* Remover indicador de seta em mobile */
  .has-submenu > a::after {
    display: none;
  }

  .has-submenu.active {
    flex-direction: column;
    gap: 1rem;
  }

  .has-submenu.active .submenu {
    display: flex;
    flex-direction: column;
  }

  .submenu li {
    padding: 0;
    animation: none;
    width: 100%;
  }

  .submenu a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    text-align: center;
    border-bottom: none;
  }

  .submenu a:hover {
    color: #ffffff;
    background-color: transparent;
  }
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #ffd700;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-links a:hover {
  color: #fff;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

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

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-info i {
  width: 20px;
  text-align: center;
  opacity: 0.75;
}

.location-section {
  margin-top: 2rem;
}

.location-info {
  margin-top: 1rem;
}

.location-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #ffd700;
  border-radius: 50%;
  transition: transform 0.3s;
}

.location-icon i {
  color: #000;
  font-size: 1.2rem;
}

.location-info p {
  margin-left: 3rem;
}

.location-main p {
  margin-left: 0;
}

/* Ajuste para garantir o alinhamento correto */
.location-info > p:not(:first-of-type) {
  margin-left: 3rem;
  padding-left: 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -300px;
  width: 50%;
  height: 100%;
  background-image: url(../images/Animacoes/anima_bolinhas_verde.gif);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: rgba(0, 109, 103, 0.85);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15%;
  color: #fff;
}

.hero-text {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(121, 195, 102, 0.35) 0%,
    rgba(121, 195, 102, 0.3) 25%,
    rgba(121, 195, 102, 0.25) 35%,
    rgba(121, 195, 102, 0.2) 45%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}

.hero h1 {
  font-family: "Gilroy", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: "Hattinant", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
}

.hero-subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: rgba(065, 173, 073, 1);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.hero-subtitle.visible::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

/* Header Position */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero::before {
    width: 100%;
    opacity: 0.5;
    display: none;
  }

  .hero-overlay {
    width: 100%;
  }

  .hero-content {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .hero-subtitle {
    font-size: 2rem;
  }
}

/* Solutions Section */
.solutions {
  position: relative;
  padding: 5rem 0 10rem 0;
  background-color: #fcaf26;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/decoration/solutions-decoration.png");
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.solutions-content {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin: 0 auto;
  padding: 2rem;
}

.solutions-title {
  font-family: "Hattinant", sans-serif;
  font-size: 4rem;
  text-align: center;
  font-weight: 100;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
}

.solutions-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55%;
  background-color: rgba(255, 242, 000, 1);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.solutions-title.visible::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.solutions-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 4rem;
}

.carousel-container {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  visibility: hidden;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  width: 100%;
  z-index: 2;
}

.slide-content p {
  font-family: "Gilroy", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.slide-content h3 {
  font-family: "Gilroy", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 242, 000, 1);
  color: #000;
  border: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.carousel-prev {
  left: 2%;
}

.carousel-next {
  right: 2%;
}

.carousel-prev i,
.carousel-next i {
  font-size: 2rem;
  font-weight: 600;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-bullets {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.carousel-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-bullet:hover {
  border-color: rgba(0, 0, 0, 0.6);
}

.carousel-bullet.active {
  background-color: #000;
  border-color: #000;
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .solutions-carousel {
    height: 450px;
    padding: 0 3rem;
  }

  .slide-content h3 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 3rem 0 5rem 0;
    overflow: visible;
  }

  .solutions-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }

  .solutions-carousel {
    height: 450px;
    padding: 0 2rem;
    position: relative;
  }

  .carousel-container {
    overflow: hidden;
    height: 100%;
    position: relative;
  }

  .carousel-slide {
    position: static;
    opacity: 1;
    height: auto;
    visibility: visible;
    display: block;
  }

  .slide-item {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    display: none; /* Todos iniciam ocultos */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* Apenas um item é visível por vez */
  .slide-item:first-child {
    display: block;
  }

  .carousel-prev,
  .carousel-next {
    width: 3rem;
    height: 3rem;
    z-index: 100; /* Garantir que os botões fiquem sobre os cards */
    margin-top: -1.5rem;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .slide-content {
    padding: 0 1.5rem;
    bottom: 1.5rem;
  }

  .slide-content h3 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .carousel-bullets {
    top: auto;
    bottom: -3rem;
    position: absolute;
    z-index: 50;
  }
}

/* Estilos específicos para telas muito pequenas */
@media (max-width: 480px) {
  .solutions-carousel {
    height: 400px;
    padding: 0 1rem;
  }

  .slide-item {
    height: 350px;
  }

  .carousel-prev,
  .carousel-next {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-prev i,
  .carousel-next i {
    font-size: 1.5rem;
  }

  .slide-content h3 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .carousel-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* Numbers Section */
.numbers {
  height: 90vh;
  position: relative;
  padding: 5rem 0;
  background-image: url("../images/home/numbers-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.numbers::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 65%;
  width: 35%;
  height: 100%;
  background-image: url("../images/Animacoes/anima_bolinhas_roxo.gif");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
}

.numbers-content {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.numbers-title {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  line-height: 1.2;
  left: 30%;
  color: #fff;
  transform: translateX(-50%);
  margin-bottom: 80px;
}

.numbers-title span:first-child {
  padding-right: 1rem;
}

.numbers-title .gilroy {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
}

.numbers-title .hattinant {
  font-family: "Hattinant", sans-serif;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  font-weight: 500;
}

.numbers-title .hattinant::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55%;
  background-color: rgba(113, 057, 164, 1);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  z-index: -1;
  opacity: 0;
}

.numbers-title.visible .hattinant::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

@media (max-width: 1200px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    max-width: 800px;
  }

  .numbers::before {
    width: 30%;
  }

  .numbers-title {
    font-size: 3.5rem;
    left: 50%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .numbers {
    padding: 4rem 0;
  }

  .numbers::before {
    display: none;
  }

  .numbers-content {
    padding: 0 1rem;
  }

  .numbers-title {
    font-size: 2.8rem;
    left: 50%;
    width: 100%;
    text-align: center;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }

  .number-circle {
    width: 220px;
    height: 220px;
  }

  .progress-ring {
    width: 220px;
    height: 220px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 110;
    cy: 110;
    r: 100;
  }

  .number-circle .number {
    font-size: 2.5rem;
  }

  .number-circle .label {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .numbers {
    padding: 3rem 0;
  }

  .numbers-title {
    font-size: 2.2rem;
  }

  .numbers-grid {
    gap: 2.5rem;
  }

  .number-circle {
    width: 180px;
    height: 180px;
  }

  .progress-ring {
    width: 180px;
    height: 180px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 90;
    cy: 90;
    r: 80;
  }

  .number-circle .number {
    font-size: 2rem;
  }

  .number-circle .label {
    font-size: 1rem;
  }
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

@media (max-width: 1200px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    max-width: 800px;
  }

  .numbers::before {
    width: 30%;
  }

  .numbers-title {
    font-size: 3.5rem;
    left: 50%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .numbers {
    padding: 4rem 0;
  }

  .numbers::before {
    display: none;
  }

  .numbers-content {
    padding: 0 1rem;
  }

  .numbers-title {
    font-size: 2.8rem;
    left: 50%;
    width: 100%;
    text-align: center;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }

  .number-circle {
    width: 220px;
    height: 220px;
  }

  .progress-ring {
    width: 220px;
    height: 220px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 110;
    cy: 110;
    r: 100;
  }

  .number-circle .number {
    font-size: 2.5rem;
  }

  .number-circle .label {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .numbers {
    padding: 3rem 0;
  }

  .numbers-title {
    font-size: 2.2rem;
  }

  .numbers-grid {
    gap: 2.5rem;
  }

  .number-circle {
    width: 180px;
    height: 180px;
  }

  .progress-ring {
    width: 180px;
    height: 180px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 90;
    cy: 90;
    r: 80;
  }

  .number-circle .number {
    font-size: 2rem;
  }

  .number-circle .label {
    font-size: 1rem;
  }
}

.number-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.number-circle {
  width: 250px;
  height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2;
  cx: 125;
  cy: 125;
  r: 115;
}

.progress-ring-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 4;
  stroke-linecap: round;
  transform-origin: center;
  cx: 125;
  cy: 125;
  r: 115;
  stroke-dasharray: 722.57;
  stroke-dashoffset: 722.57;
  transition: stroke-dashoffset 2s ease-out;
}

.progress-ring-circle.clockwise {
  transform: rotate(0deg);
}

.progress-ring-circle.counter-clockwise {
  transform: rotate(180deg);
  stroke-dashoffset: -722.57;
}

.number-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.number-circle .number {
  font-family: "Gilroy", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.number-circle .label {
  font-family: "Gilroy", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .number-circle {
    width: 220px;
    height: 220px;
  }

  .progress-ring {
    width: 220px;
    height: 220px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 110;
    cy: 110;
    r: 100;
  }

  .progress-ring-circle {
    stroke-dasharray: 628.32;
    stroke-dashoffset: 628.32;
  }

  .progress-ring-circle.counter-clockwise {
    stroke-dashoffset: -628.32;
  }

  .number-circle .number {
    font-size: 2.5rem;
  }

  .number-circle .label {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .number-circle {
    width: 180px;
    height: 180px;
  }

  .progress-ring {
    width: 180px;
    height: 180px;
  }

  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 90;
    cy: 90;
    r: 80;
  }

  .progress-ring-circle {
    stroke-dasharray: 502.65;
    stroke-dashoffset: 502.65;
  }

  .progress-ring-circle.counter-clockwise {
    stroke-dashoffset: -502.65;
  }

  .number-circle .number {
    font-size: 2rem;
  }

  .number-circle .label {
    font-size: 1rem;
  }
}

/* Clients Section */
.clients {
  height: 100vh;
  position: relative;
  padding: 5rem 0;
  background-color: #fff;
  overflow: hidden;
  background-image: url("../images/home/clients-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.clients::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 25%;
  width: 50%;
  height: 40%;
  background-image: url("../images/decoration/clients-decoration.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.clients-content {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.clients-title {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  line-height: 1.2;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}

.clients-title .gilroy {
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  padding-right: 1rem;
}

.clients-title .hattinant {
  font-family: "Hattinant", sans-serif;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  font-weight: 500;
}

.clients-title .hattinant::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55%;
  background-color: #41ad49;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  z-index: -1;
  opacity: 0;
}

.clients-title.visible .hattinant::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.clients-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 4rem;
  z-index: 9;
}

.client-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.client-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.client-slide.active {
  opacity: 1;
}

.client-item {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.client-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.client-prev,
.client-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #41ad49;
  color: #000;
  border: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.client-prev {
  left: 4%;
}

.client-next {
  right: 4%;
}

.client-prev i,
.client-next i {
  font-size: 2rem;
}

.client-prev:hover,
.client-next:hover {
  background-color: #338b3b;
  transform: translateY(-50%) scale(1.1);
}

.client-bullets {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.client-bullet {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.3);
}

.client-bullet:hover {
  background-color: #000;
}

.client-bullet.active {
  background-color: #000;
  transform: scale(1.2);
  border: 2px solid rgba(0, 0, 0, 0.3);
}

@media (min-width: 2000px) {
  .clients::before {
    top: 25%;
    left: 35%;
    width: 30%;
    height: 25%;
  }
}

@media (max-width: 1440px) {
  .clients::before {
    top: 50%;
  }
}

@media (max-width: 1200px) {
  .client-item {
    width: 150px;
    height: 150px;
  }

  .clients::before {
    top: 40%;
    left: 25%;
    width: 50%;
    height: 50%;
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 3rem 0;
  }
  .clients::before {
    display: none;
  }
  .clients-title {
    font-size: 3rem;
  }
  .clients-description {
    margin-bottom: 2rem !important;
  }

  .clients-carousel {
    padding: 0 3rem;
  }

  .client-item {
    width: 120px;
    height: 120px;
    padding: 1.5rem;
  }

  .client-slide {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .clients-title {
    font-size: 2.5rem;
  }

  .client-item {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .client-prev,
  .client-next {
    width: 2.5rem;
    height: 2.5rem;
  }

  .client-prev i,
  .client-next i {
    font-size: 1.5rem;
  }
}

/* E-books Section */
.ebooks {
  padding: 5rem 0;
  position: relative;
  background-image: url("../images/home/ebook-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  animation: floatingBackground 8s ease-in-out infinite;
}

@keyframes floatingBackground {
  0% {
    background-position: center;
  }
  50% {
    background-position: center 51%;
  }
  100% {
    background-position: center;
  }
}

.ebooks-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-left: 15%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ebooks-left {
  position: relative;
  z-index: 2;
}

.ebooks-title {
  font-family: "Hattinant", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.ebooks-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15%;
  width: 100%;
  height: 30%;
  background-color: #ffd700;
  z-index: -1;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out;
}

.ebooks-title.visible::before {
  transform: translateY(-50%) scaleX(1);
}

.ebooks-subtitle {
  font-family: "Gilroy", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

.ebooks-description {
  font-family: "Gilroy", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 3rem;
  max-width: 500px;
}

.ebooks-actions {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-direction: column;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: #ffd700;
  color: #333;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-download span {
  display: flex;
  background: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.btn-download span img {
  width: 22px;
  height: auto;
}

.btn-download:hover {
  background-color: #ffc700;
  transform: translateY(-2px);
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: #333;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-more span {
  transition: transform 0.3s ease;
  display: flex;
  background: #ffd700;
  padding: 0.75rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  transition: transform 0.3s ease;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-more span i {
  font-weight: 700;
  transition: transform 0.3s ease;
}

.btn-more:hover span {
  background-color: #ffc700;
  transform: translateX(5px);
}

.ebooks-right {
  position: relative;
}

.decoration-dots {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 200px;
  height: 200px;
  background-image: url("../images/decoration/ebook-decoration.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.ebooks-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.floating-text {
  position: absolute;
  bottom: 2rem;
  right: -10%;
  width: 75%;
  background-color: #ffd700;
  padding: 2rem 4rem 2rem 2rem;
  border-radius: 10px;
  font-family: "Gilroy", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.floating-text.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .ebooks-content {
    gap: 3rem;
  }

  .ebooks-title {
    font-size: 3.5rem;
  }

  .ebooks-subtitle {
    font-size: 2.5rem;
  }

  .floating-text {
    width: 70%;
  }
}

@media (max-width: 992px) {
  .ebooks-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ebooks-description {
    margin-left: auto;
    margin-right: auto;
  }

  .ebooks-actions {
    justify-content: center;
  }

  .ebooks-right {
    max-width: 600px;
    margin: 0 auto;
  }

  .decoration-dots {
    right: 0;
  }
}

@media (max-width: 768px) {
  .ebooks {
    padding: 3rem 0;
  }

  .ebooks-title {
    font-size: 3rem;
  }

  .ebooks-subtitle {
    font-size: 2rem;
  }

  .ebooks-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .floating-text {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .ebooks-title {
    font-size: 2.5rem;
  }

  .ebooks-subtitle {
    font-size: 1.8rem;
  }

  .btn-download {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Section */
.contact {
  position: relative;
  padding: 5rem 0;
  background-image: url("../images/home/contact-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .contact::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 30%;
    height: 80%;
    background-image: url('../images/decoration/contact-decoration.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.1;
} */

.contact-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
}

.contact-title {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title .gilroy {
  font-family: "Gilroy", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-right: 1rem;
}

.contact-title .hattinant {
  font-family: "Hattinant", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
}

.contact-title .hattinant::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55%;
  background-color: #79c366;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.contact-title.visible .hattinant::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.contact-form {
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select{
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  height: 51px
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-interest {
  margin-bottom: 3rem;
}

.form-interest p {
  color: #000;
  font-family: "Gilroy", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  color: #000;
  font-family: "Gilroy", sans-serif;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border-radius: 4px;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
  background-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #ffd700;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 3rem;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.btn-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  color: #000;
  border: none;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: "Gilroy", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.btn-submit span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffd700;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  background-color: #ffe44d;
  transform: translateY(-2px);
}

.btn-submit:hover span {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }

  .contact-title .gilroy,
  .contact-title .hattinant {
    font-size: 3rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-title .gilroy,
  .contact-title .hattinant {
    font-size: 2.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }

  .checkbox-container {
    font-size: 0.9rem;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* About Page */
.about__hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: top;
  overflow: hidden;
}

.about__hero::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -240px;
  width: 40%;
  height: 100%;
  background-image: url("../images/Animacoes/anima_bolinhas_verde.gif");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: rgba(0, 109, 103, 0.85);
  z-index: 2;
}

.about__hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15%;
  color: #fff;
  overflow: hidden;
}

.about__hero-text {
  max-width: 600px;
  position: relative;
}

.about__hero-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(121, 195, 102, 0.35) 0%,
    rgba(121, 195, 102, 0.3) 25%,
    rgba(121, 195, 102, 0.25) 35%,
    rgba(121, 195, 102, 0.2) 45%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}

.about__hero h1 {
  font-family: "Gilroy", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about__hero-subtitle {
  font-family: "Hattinant", sans-serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.about__hero-subtitle.visible {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__hero-subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: rgba(065, 173, 073, 1);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
}

.about__hero-subtitle.visible::before {
  animation: highlightIn 0.8s ease forwards 0.4s;
}

@keyframes highlightIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}

/* Active state for navigation */
.nav-menu > li.active > a {
  color: #ffd700;
}

.nav-menu li.active a span {
  color: #ffd700;
}

.nav-menu li.active a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffd700;
}

@media (max-width: 768px) {
  .nav-section .nav-menu {
    height: 100%;
  }

  .nav-menu li.active a::after {
    display: none;
  }

  .nav-menu li a[href="about.html"]::after {
    display: none;
  }

  .about__hero-subtitle {
    font-size: 3rem;
  }
}

/* Navigation active state */
.page-about .nav-menu li a[href="about.html"] {
  position: relative;
}

.page-about .nav-menu li a[href="about.html"] .light,
.page-about .nav-menu li a[href="about.html"] .bold {
  color: #ffd700;
}

.page-about .nav-menu li a[href="about.html"]::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffd700;
}

/* About Video Section */
.about__video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 0;
  background-image: url("../images/about/video-backgroud.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__video-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumb {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #ffd700;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  color: #000;
  font-size: 2rem;
  margin-left: 5px;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #fff;
}

.video-wrapper:hover .video-thumb {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about__video {
    padding: 4rem 0;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 1.5rem;
  }
  .hero-text::before {
    background: none;
  }
}

.footer-links li,
.social-links li,
.contact-info li {
  margin-bottom: 0.75rem;
}

/* Título Services na página About */
.services-title {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  color: #000;
}

.services-title .gilroy {
  font-family: "Gilroy", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.services-title .hattinant {
  font-family: "Hattinant", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
}

.services-title .hattinant::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 55%;
  background-color: rgba(255, 242, 000, 1);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.services-title.visible .hattinant::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

@media (max-width: 768px) {
  .services-title .gilroy {
    font-size: 1.8rem;
  }

  .services-title .hattinant {
    font-size: 3rem;
  }
}

/* Destaca o item realmente ativo */
.nav-menu li.current-menu-item > a,
.nav-menu li.current-menu-ancestor > a,
.nav-menu li.current-menu-parent > a {
  color: #ffd700;
  font-weight: 700;
}

/* Submenu ativo */
.sub-menu li.current-menu-item > a {
  color: #ffd700;
  font-weight: 700;
}

main,
.about__hero,
.about__partner,
.about__solutions,
.about__team,
.about__services,
.projects-section {
  overflow-x: hidden;
}
.wpcf7 form.sent .wpcf7-response-output {
    /* border-color: #ffffff; */
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border: none;
    border-bottom: 3px solid #fff;
}