:root {
  /* --brand-navy: #414bc3; */
  --brand-navy: #1f1f1f;
  --brand-gold: #D4AF37;
  /* --brand-gold: #623f08; */
  --brand-lightgray: #F5F5F5;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --text-muted: #777777;
  --border-color: #EEEEEE;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

.title-underline {
  height: 4px;
  width: 80px;
  background-color: var(--brand-gold);
  margin: 0.5rem auto 1.5rem;
}

.text-gold {
  color: var(--brand-gold);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  background-color: #fff;
  box-shadow: var(--shadow-sm);
}

.header a.nav-link{
  color: var(--brand-navy);
}

.header.scrolled {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.header.scrolled a.nav-link {
  color: var(--brand-navy);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  /* height: 60px; */
}

.logo-link {
  display: flex;
  justify-content: center;
}

.desktop-nav {
  display: none;
}

.nav-link {
  margin: 0 1rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.nav-link:hover {
  color: var(--brand-gold);
}

.contact-btn {
  background-color: var(--brand-gold);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  opacity: 0.9;
}

.desktop-only {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--brand-navy);
}

.menu-icon:before,
.menu-icon:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--brand-navy);
  transition: all 0.3s ease;
}

.menu-icon:before {
  top: -8px;
}

.menu-icon:after {
  top: 8px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav .nav-link {
  margin: 0.75rem 0;
}

.mobile-contact-btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: left;
  z-index: -1;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px){
  .hero-section{
    height: 450px;
  }

  .hero-bg{
    background-position: center;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--brand-navy); */
  background-color: #0a0a0af6;
  opacity: 0.3;
}

.hero-content {
  color: white;
  max-width: 700px;
  animation: fadeIn 0.8s ease forwards;
  margin-left: auto;
}


.hero-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  padding-left: 8.5rem;
}

@media screen and (max-width: 550px){
    .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title{
    font-size: 2rem;
    text-align: left;
    padding: 0;
  }
} 

.hero-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  /* opacity: 0.9; */
  color: var(--brand-gold);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.primary-btn {
  background-color: var(--brand-gold);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: inline-block;
  text-align: center;
}

.primary-btn:hover {
  opacity: 0.9;
}

.outline-btn {
  background-color: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  border-radius: var(--radius);
  font-weight: 500;
  display: inline-block;
  text-align: center;
}

.outline-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.rounded-image {
  border-radius: var(--radius);
  /* box-shadow: var(--shadow-md); */
  width: 450px;
  height: 450px;
}

.about-subtitle {
  font-size: 2rem;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.about-text p{
  font-size: 1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item h4 {
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.values-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.values-list li {
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  border-top: 4px solid var(--brand-gold);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: var(--brand-lightgray);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--brand-navy);
}

.service-title {
  text-align: center;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-description {
  text-align: center;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-btn:hover {
  background-color: var(--brand-gold);
  color: white;
}

/* Statistics Section */
.statistics-section {
  padding: 4rem 0;
  background-color: #fff;
}

.statistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.statistic-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.statistic-label {
  color: var(--text-muted);
}

/* Differentials Section */
.differentials-section {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--brand-navy), #141414);
  color: white;
}

.differentials-section .section-title {
  color: white;
}

.differentials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.differential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.differential-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: var(--brand-gold);
}

.differential-content {
  flex: 1;
}

.differential-title {
  margin-bottom: 0.5rem;
}

.differential-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Associe-se Section */
.associe-se-section {
  padding: 5rem 0;
  background-color: var(--brand-lightgray); /* Mantém o fundo da seção anterior */
}

.associe-se-content {
  text-align: center; /* Centraliza o botão */
  margin-top: 2rem; /* Espaçamento após o cabeçalho da seção */
}

.associe-se-content .download-btn {
  /* A classe 'primary-btn' já aplica o estilo principal */
  display: inline-flex; /* Alinha ícone e texto */
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 500;
}


/* Partners Section */
.partners-section {
  padding: 4rem 0;
  background-color: #fff;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.partner-logo {
  display: flex;
  flex-direction: column; /* Adicionado */
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  width: 180px; /* Ajuste o tamanho conforme necessário */
  height: 180px;
  opacity: 1; /* Logos em fundo escuro costumam ficar melhores com um pouco de transparência */
}


/* Novo estilo para o nome do parceiro */
.partner-name {
  margin-top: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #fff;
}

.contact-info-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--brand-lightgray);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  color: var(--brand-navy);
  margin-bottom: 2rem;
  text-align: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  color: var(--brand-gold);
  margin-right: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.info-item a p {
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--brand-gold);
}


/* Footer */
.footer {
  /* background-color: var(--brand-navy); */
  background-color: #f2f2f2;
  color: var(--brand-navy);
  padding: 4rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 350px;
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-about p {
  color: var(--brand-navy);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link.instagram{
  background-color: #E4405F;
}

.social-link.linkedin{
  background-color: #0A66C2;
}

.social-link.facebook{
  background-color: #1877F2;
}

.social-link.youtube{
  background-color: #FF0000;
}

.social-link:hover {
  background-color: var(--brand-gold);
  color: white;
}

.footer-links h4 {
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--brand-navy);
}

.footer-links ul li a:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 100;
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  display: block;
}

.whatsapp-float-btn:hover {
  background: #20ba56;
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-text {
    font-size: 1.25rem;
    color: var(--brand-gold);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .statistics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
  
  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}