* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #f1f1f1;
  line-height: 1.6;
}

/* NAVBAR */
nav {
  background: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

nav h1 {
  color: #ff6402;
  font-size: 1.5rem;
}

.menu-toggle {
  display: none;
  color: #ff6402;
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: #f1f1f1;
  text-decoration: none;
}

nav a:hover {
  color: #ff6402;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.bannerContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}

.bannerVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.25rem);
  transform: scale(1.05);
}

.hero-content {
  padding: 2rem;
  z-index: 1;
}

.hero-content h2 {
  font-size: 3rem;
}

.hero-content p {
  margin-top: 1rem;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.btn {
  background-color: #ff6402;
  color: #000;
  padding: 0.75rem 2rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: #ed0b5f;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

/* SOBRE */
.sobre-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.sobre-texto {
  flex: 1 1 400px;
  text-align: justify;
  font-size: 2rem;
  color: #fff;
}

.sobre-texto p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ff6402;
}

.sobre-video {
  flex: 1 1 300px;
}

.sobre-video img {
  width: 100%;
  height: 550px;
  border-radius: 12px;
}

/* Serviços */

.servicos-titulo {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6402;
  text-align: center;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 999px;
  margin: 0 auto;
  overflow: visible;
}

.carousel-container {
  width: 2500px;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
}

.card {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 300px;
  height: 250px;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  border: 2px solid #ff6402;
  background-color: #1a1a1a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  background-color: #333;
}

.carousel-btn {
  background-color: #ff6402;
  border: none;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.3s;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-btn:hover {
  background-color: #ed0b5f;
}


/* EVENTOS */
.titulo-eventos {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6402;
}

.container-eventos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-evento {
  background-color: #ff6402;
  color: #ffffffb4;
  border-radius: 12px;
  padding: 20px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.card-evento:hover {
  transform: scale(1.05);
  background-color: #ed0b5f;
  color: #000;
}

.card-evento img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-evento h3, .card-evento h4 {
  color: #fff;
}

.card-evento:hover h3,
.card-evento:hover h4 {
  color: #000;
}

/* DEPOIMENTOS */
.titulo-depoimentos{
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6402;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials blockquote {
  background-color: #1c1c1c;
  border-left: 4px solid #ff6402;
  padding: 1.5rem;
  border-radius: 8px;
  font-style: italic;
}

.testimonials cite {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #ed0b5f;
}

/* REGIÃO */
.titulo-regioes {
  font-size: 2rem;
  margin-bottom: .625rem;
  color: #ff6402;
}


.section-contato {
  padding: 40px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.container-contato {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.info-contato {
  background-color: #1f1f1f;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  color: white;
  font-family: Arial, sans-serif;
}

.info-contato h2 {
  color: #ff6402;
  margin-bottom: 20px;
}

.contato-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  font-size: 1rem;
  word-break: break-word;
}

.contato-item a {
  color: inherit;
  text-decoration: none;
}
.contato-item a:hover {
  color: #ed0b5f;
}

.contato-item i {
  color: #ed0b5f;
  font-size: 1.2rem;
  min-width: 20px;
}

.info-contato img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  object-fit: cover;
  max-height: 180px;
}

.mapa {
  border: 0;
  border-radius: 10px;
  width: 600px;
  height: 400px;
  max-width: 100%;
}

/* SOCIAL */
.social-media {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-media a {
  background-color: #ff6402;
  color: #000;
  font-size: 25px;
  width: 50px;
  height: 50px;
  padding: 6px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-media a:hover {
  background-color: #ed0b5f;
  color: #fff;
  transform: scale(1.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  background: #000;
  color: #999;
  margin-top: 3rem;
}

/* ANIMAÇÕES */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* RESPONSIVO */

@media (max-width: 1200px) {
  .carousel-wrapper {
    width: 100%;
    padding: 0 1rem;
  }

  .carousel-container {
    width: 100%;
    overflow: hidden;
  }

  .carousel {
    justify-content: center;
  }

  .card {
    width: 280px;
    height: 220px;
    font-size: 1.2rem;
  }
}


@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

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

  .sobre-flex {
    flex-direction: column;
    align-items: center;
  }

  .sobre-texto {
    font-size: 16px;
    text-align: justify;
  }

  .sobre-video img {
    height: auto;
  }

  .carousel-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .carousel-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .carousel {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    width: max-content;
  }

  .card {
    width: 85vw;
    height: 220px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    font-size: 1.2rem;
  }

  .carousel-btn {
    display: none;
  }

  .container-eventos {
    flex-direction: column;
    align-items: center;
  }

  .card-evento img {
    width: 100%;
    height: auto;
  }

  .mapa {
    height: 300px;
  }

  .info-contato {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .card {
    width: 90vw;
    height: 200px;
    font-size: 18px;
  }

  .social-media a {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .sobre-texto{
    text-align: justify;
  }

  footer {
    font-size: 0.9rem;
  }
}
