/* Estilos principais */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #F1C40F;       /* Amarelo */
  --primary-dark: #D4AC0D;  /* Amarelo forte (hover) */
  --dark: #000000;          /* Preto */
  --light: #FFFFFF;         /* Branco */
  --text-dark: #1A1A1A;     /* Cinza escuro para texto */
  --neutral: #CCCCCC;       /* Cinza claro para divisores */
  --whatsapp: #25D366;      /* Verde WhatsApp */
  --whatsapp-dark: #128C7E; /* Verde WhatsApp hover */
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

/* Containers e seções */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background-color: var(--dark);
  color: var(--light);
}

.section-light {
  background-color: var(--light);
}

.section-primary {
  background-color: var(--primary);
  color: var(--dark);
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.text-light {
  color: var(--light);
}

.text-dark {
  color: var(--dark);
}

.text-primary {
  color: var(--primary);
}

/* Botões */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--light);
}

.btn-dark:hover {
  background-color: var(--text-dark);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Grids e Flexbox */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

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

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

.flex-column {
  flex-direction: column;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0.95);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--dark);
  padding: 2rem;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav.active {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-list {
  margin-top: 3rem;
}

.nav-item {
  margin-bottom: 1.5rem;
}

.nav-link {
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  color: var(--light);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-cta {
  margin-top: 2rem;
}

/* Serviços */
.services-title {
  text-align: center;
  margin-bottom: 3rem;
}

.service-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Como funciona */
.process-title {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  position: relative;
}

.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--primary);
}

.process-step:last-child::before {
  height: 0;
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
}

.process-content {
  padding-bottom: 1rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 4rem 0;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Sobre */
.about-title {
  text-align: center;
  margin-bottom: 3rem;
}

.about-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* Agendamento */
.schedule {
  text-align: center;
  padding: 4rem 0;
}

.schedule-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.schedule-subtitle {
  margin-bottom: 2rem;
}

/* Equipe */
.team-title {
  text-align: center;
  margin-bottom: 3rem;
}

.team-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  object-position: center top;

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  object-position: center top;

  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
}

/* Parcerias */
.partners-title {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-slider {
  display: flex;
  overflow: hidden;
}

.partners-track {
  display: flex;
  animation: slide 20s linear infinite;
}


.partner-item {
  flex: 0 0 140px;
  height: 80px;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}



.partner-item img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  
}






.partner-item {
  flex: 0 0 140px;
  height: 80px;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.partner-logo {
  max-width: 100px;
  max-height: 60px;
  
}

.partner-logo:hover {
  filter: grayscale(0%);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social-link {
  color: var(--light);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: var(--primary);
}

.footer-nav {
  margin-bottom: 2rem;
}

.footer-nav-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.footer-nav-link {
  color: var(--light);
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--primary);
}

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

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsividade */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-image {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
  
  .nav-close {
    display: none;
  }
  
  .nav-list {
    display: flex;
    margin-top: 0;
    gap: 2rem;
  }
  
  .nav-item {
    margin-bottom: 0;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .social-links {
    margin-top: 0;
    margin-left: 2rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  
  .process-step {
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
  }
  
  .process-step::before {
    display: none;
  }
  
  .process-number {
    position: static;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


.partners-slider {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: max-content;
  animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.mb-5 {
  margin-bottom: 3rem;
}
