
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Header fixo */
header {
  position: relative;
  z-index: 10;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.navbar-area{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img{
    width: 80px;
    border-radius: 100px;
    border: 2px solid #fff;
}

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

.nav-menu li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #25d366;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 101;
}

.nav-toggle .hamburger {
  width: 35px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 121px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    text-align: center;
    font-size: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .overlay{
    display: none;
  }

  #carousel{
    border-radius: 0;
  }
}

/* Carrossel */
.carousel {
  border-radius: 10px;
  position: relative;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 0 25px #000;
  max-width: 800px;
  margin: 180px auto 0 auto;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.carousel img.active {
  opacity: 1;
  z-index: -1;
}

.carousel .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  z-index: 0;
  pointer-events: none;
}

/* Seções */
section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


section h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #2980b9;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
thead {
  background: #3b82f6;
  color: white;
}
thead th {
  padding: 15px 20px;
  font-weight: 600;
  text-align: center;
}
tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
}
tbody tr:hover {
  background: #f0f9ff;
}
tbody td:first-child {
  font-weight: 700;
  text-align: left;
  background: #f3f4f6;
}
.icon {
  margin-right: 8px;
}
/* Estilo para células de aula */
.aula {
  background: #555;
  border-radius: 6px;
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.9em;
  color: #fff;
  cursor: default;
  user-select: none;
  transition: background 0.3s;
}

.adulto{
  color: #222;
}

.aula-n{
  background-color: #999;
}

.nogi{
  color: #999;
}

.aula-f{
  background-color: rgb(255, 0, 255);
}
.feminino{
  color: rgb(255, 0, 255);
}

.babys{
  color: rgb(3, 131, 20);
}
.aula-b{
  background-color: rgb(3, 131, 20);
}

.kids1{
  color: orange;
}
.aula-k1{
  background-color: orange;
}

.kids2{
  color: #3b82f6;
}

.aula-k2{
  background-color: #3b82f6;
}



.aula:hover {
  background: #bae6fd;
}

/* Depoimentos carrossel */
.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  overflow-x: hidden;
}


.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 0 0.5rem;
}

.testimonial-slide p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-slide strong {
  color: #2980b9;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots button.active,
.testimonial-dots button:hover {
  background: #2980b9;
}

/* Galeria de imagens */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: 150px;
  border-radius: 6px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#section-galeria{
  padding-top: 150px;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Botão WhatsApp flutuante */
.whatsapp-button {
  max-width: 80vw;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1100;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-button:hover {
  background: #128c43;
}

/* Rodapé */
footer {
  background: #222;
  color: #ddd;
  text-align: center;
  padding: 2rem;
}

footer .social-icons {
  margin: 1rem 0;
}

footer .social-icons a {
  color: #ddd;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #25d366;
}




/* Responsividade */
@media(max-width: 720px){
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead tr {
    display: none;
  }
  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
  }
  tbody td:first-child {
    background: transparent;
    font-weight: 600;      
    padding-left: 20px;
  }
  tbody td::before {
    content: attr(data-day);
    font-weight: 700;
    color: #3b82f6;      
    text-align: left;
    padding-left: 10px;
  }
  tbody tr {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    background: white;
  }
  tbody{
      padding: 12px;
  }

  tbody .center{
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 20px;
  }

  .testimonial-carousel{
    max-width: 320px;
  }



  .adulto .center{
    background-color: #555;
  }

  .nogi .center{
    background-color: #999;
  }

  .feminino .center{
      background-color: rgb(255, 0, 255);
  }

  .babys .center{
      background-color: rgb(3, 131, 20);
  }

  .kids1 .center{
    background-color: orange;
  }

  .kids2 .center{
    background-color: #3b82f6;
  }

  #section-horarios{
    padding-top: 150px;
  }


}




