*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{  
  width: 100%;
  display: block;
}


/* CORES */

.destaques{
  color: rgb(226, 78, 38);
}

.grey{
  color: grey;
}

.background{
  background-color: #D9D9D9;
}


/* TEXTO */

h1{
  font-family: 'Bebas Neue', cursive;
  font-optical-sizing: auto;
  font-size: 64px;
  line-height: 69px;
}

h2{
  font-family:"Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: 58px;
  line-height: 68px;
  font-weight: 400;
}

h3{
  font-family: montserrat, sans-serif;
  font-optical-sizing: auto;
  font-size: 28px;
  line-height: 50px;
  letter-spacing: -2%;
  font-weight: 568;
}

.h3{
  font-family: montserrat, sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -2%;
  font-weight: 568;
}

.h3_btn{
  font-family: montserrat, sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -2%;
  font-weight: 568;
}

p{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  line-height: 26px;
}

.p1{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  line-height: 26px;
}

.p2{
  font-family: 'Poppins', sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
}

.p3{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 15px;
  line-height: 25px;
  font-style: italic;
}

.lina {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.lina::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px; 

  background-color: rgb(226, 78, 38);
  border-radius: 2px;
}


/* GRELHA */

.grelha{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 40px;
  width: 85%;
  margin: auto;
}

.titulo_grid{
  grid-column-start: 1;
  grid-column-end: 13;
  margin-bottom: 30px;
  
}

.box3{
grid-column: span 4;
}

@media screen and (max-width: 500px) {
  
  .grelha{
    display: block;
    width: 95%;
  }

}


/* HEADER BASE */

header {
  background-color: #1f1f1f;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* CONTENT WRAPPER */

#menu_nav {
  width: 85%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 0;
}

#logo {
  width: 50px;       
  height: auto;
  transition: 0.3s ease;
}

#logo:hover {
  transform: scale(1.04);
}

/* DESKTOP MENU */

nav#desktop ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav#desktop a {
  text-decoration: none;
  color: rgb(85, 85, 85);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.2px;
  transition: 0.25s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav#desktop a:hover {
  color: white;
  border-bottom: 2px solid white;
}

/* BURGER MENU ICON */
#bigmac {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

#bigmac .linha {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  left: 0;
  transition: 0.4s ease;
}

#bigmac .linha:nth-child(1) { top: 0; }
#bigmac .linha:nth-child(2) { top: 9px; }
#bigmac .linha:nth-child(3) { top: 18px; }

/* ANIMAÇÃO */

#bigmac.open .linha:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

#bigmac.open .linha:nth-child(2) {
  opacity: 0;
}

#bigmac.open .linha:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* MOBILE MENU */

nav#mobile {
  display: none;
}

@media screen and (max-width: 500px) {

    nav#desktop {
      display: none;
    }

    #bigmac {
      display: block;
    }

    nav#mobile {
      display: block;
      position: fixed;
      top: 70px;
      left: -100vw;
      width: 100%;
      background: rgb(44, 44, 44);
      transition: 0.35s ease;
      backdrop-filter: blur(6px);
      z-index: 99;
    }

    nav#mobile.menu_abre {
      left: 0;
    }

    nav#mobile ul {
      list-style: none;
      padding: 40px 0;
    }

    nav#mobile li {
      text-align: center;
      padding: 20px 0;
    }

    nav#mobile a {
      text-decoration: none;
      color: black;
      font-size: 22px;
      font-weight: 500;
      transition: 0.25s;
    }

    nav#mobile a:hover {
      color: white;
      text-shadow: 0 0 6px rgba(255,255,255,0.7);
    }
}



/***** HOME PAGE ******/


/* SECTION ENTRADA */

#img_tr{
  grid-column-start: 2;
  grid-column-end: 5;
}

#text_inst{
  grid-column-start: 6;
  grid-column-end: 12;
}

.hero {
  background-image: url(imagens/pag_inicial.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 250px;
  padding-bottom: 200px;
  color: white;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center; 
  gap: 20px; 
  margin-top: 40px;
}


.btn {
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid rgb(226, 78, 38);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-outline {
  background-color: white;      
  color: rgb(226, 78, 38);              
}


.btn-fill {
  background-color: rgb(226, 78, 38);
  color: white;
}

.btn-outline:hover {
  background-color: rgb(226, 78, 38);
  color: white;
}

.btn-fill:hover {
  background-color: rgb(226, 78, 38);
}


/* SECTION INTRO */

#texto_intro_grid {
  grid-column: 1 / 7;
}

#texto_intro_grid p{
  margin-bottom: 20px;
  text-align: center;
}

#img_intro_grid{
  grid-column: 7 / 13;
  border-radius: 10px; 
  object-fit: cover;
  width: 100%; 
}

#intro-section {
  padding: 100px 0;
}


/* SECTION VANTAGENS */

#vantagens {
  padding-top: 80px;
  padding-bottom: 100px;
}

#vantagens .titulo_grid {
  margin-bottom: 50px;
}

.box_van {
  grid-column: span 3;   
  background-color: #F6EAEA;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
}

.box_van:hover {
  transform: translateY(-5px);
}

.box_van img {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.frase_final {
  grid-column: 1 / 13;
  text-align: center;
  margin-top: 40px;
}

/* SECTION INSTRUTOR */

#instrutor {
  padding: 80px 0;
}

#img_tr {
  grid-column: 2 / 5;
  width: 100%;
  border-radius: 12px;
}

#text_inst {
  grid-column: 6 / 12;
}

.card_instrutor {
  background-color: white;
  padding: 30px 40px;
  border-radius: 30px;
  border: 6px solid rgb(226, 78, 38);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card_instrutor .nome {
  margin-bottom: 5px;
}

.card_instrutor .cargo {
  margin-bottom: 20px;
}

.card_instrutor ul {
  margin-left: 20px;
}

.card_instrutor li {
  margin-bottom: 12px;
  line-height: 1.4;
}

/* SECTION TURMAS */

#turmas {
  padding: 100px 0;
  background-image: url("imagens/dojo\ 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  }

.turma_card {
  grid-column: span 3;
  background-color: rgba(63, 63, 63, 0.32);  
  padding: 45px 28px;
  border-radius: 35px;
  text-align: center;
  backdrop-filter: blur(4px); 
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid rgba(255,255,255,0.08); 
  height: 100%;
  text-align: left;
}

.turma_card img {
  width: 95px;
  margin: 0 auto 20px auto;
  object-fit: contain; 
}

.turma_card p {
  margin-bottom: 30px;
  line-height: 1.4;
  color: #f2f2f2; 
  text-align: left;
}

.turma_card.destaque {
  border: 4px solid rgb(226, 78, 38);
  background-color: white;  
  color: black;             
  box-shadow: 0 0 15px rgba(255, 85, 30, 0.25);
}

.turma_card.destaque p {
  color: black;
}

.turma_card.destaque .more_info_btn {
  color: rgb(226, 78, 38);
}

.turma_card.destaque .more_info_btn:hover {
  color: rgb(226, 78, 38);
}

.turma_card.destaque .turma_btn {
  color: rgb(226, 78, 38);
  border-color:rgb(226, 78, 38);
}

.turma_card.destaque .turma_btn:hover {
  background-color: rgb(226, 78, 38);
  color: white;

}


.turma_btn {
  text-decoration: none;
  color: white;
  border: 3px solid rgb(226, 78, 38);
  border-radius: 30px;
  padding: 12px 25px;
  display: inline-block;
  transition: 0.3s ease;
  font-weight: bold;
  margin-top: 20px;
}

.turma_btn:hover {
  background-color: rgb(226, 78, 38);
  color: white;
  box-shadow: 0 0 8px rgba(255, 79, 25, 0.6);
}

.turma_card:hover {
  transform: translateY(-8px);
  background-color: rgba(0, 0, 0, 0.28);
}

.more_info_btn {
  text-decoration: none;
  color: rgb(226, 78, 38);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.2s ease;
}

.more_info_btn:hover {
  color: rgb(226, 78, 38);
  text-shadow: 0 0 4px rgba(255, 79, 25, 0.4);
}

/* SECTION FAQ */

#criticas {
  padding: 60px 0;
}

.criticas-container {
  width: 80%;
  margin: auto;
}

.padd{
  margin-bottom: 70px;
}

.criticas-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.criticas-slider {
  display: flex;
  gap: 40px;
}

.box3 {
  width: 260px;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

.box3 p {
  font-size: 14px;
  line-height: 1.4em;
}

.seta {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
}

.bolinhas {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bolinhas span {
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.form-comentario {
    margin-top: 40px;
    text-align: center;      
}

.form-comentario textarea {
  width: 350px;
  height: 100px;
  padding: 10px;
  resize: none;
  border-radius: 8px;
  border: 1px solid #ccc;
  display: block;
  margin: 0 auto;         
}

.form-comentario button {
  margin-top: 15px;
  background: rgb(226, 78, 38);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;

  display: block;         
  margin-left: auto;
  margin-right: auto;     
}


/* SECTION CONTACTOS */

#contactos {
  background-image: url("imagens/praia.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;

  padding-top: 180px;
  padding-bottom: 180px;

  display: flex;
  align-items: center;
}

#wire_box {
  grid-column: 5 / 9;
  text-align: center;
}

.contact_title {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.contact_title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}

.contact_info {
  margin-bottom: 10px;
}

#redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

#redes img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1); 
  transition: 0.3s ease;
  cursor: pointer;
}

#redes img:hover {
  transform: scale(1.1);
  filter: brightness(1) invert(0); 
}


/* SECTION LAND */

#hero2 {
  height: 100vh;
  background-image: url("imagens/principal.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;        
  color: white;
  position: relative;
}

#hero2 h1 {
  max-width: 600px;
  text-align: left;        
  margin-bottom: 25px;
}

#hero2 p {
  max-width: 420px;
  text-align: left;         
  margin-bottom: 40px;
}

.hero-btn {
  width: fit-content;
  padding: 12px 26px;
  border-radius: 40px;
  border: 2px solid rgb(226, 78, 38);
  background: transparent;
  color: rgb(226, 78, 38);
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: rgb(226, 78, 38);
  color: white;
}


/* SECTION BENEFÍCIOS */

#beneficios {
  padding: 80px 0;
  background-color: #D9D9D9;  
}

#beneficios_box h2 {
  text-align: center;
  grid-column: 1 / 13;
  margin-bottom: 50px;
}

.benef_box {
  grid-column: span 3;
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  width: 230px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.benef_box img {
  width: 90px;
  margin-bottom: 15px;
}


/* SECTION PORQUE */

.why_list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why_list li {
  position: relative;
  padding-left: 40px;
  font-size: 18px; 
  line-height: 26px;
}

.why_list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: rgb(226, 78, 38);
  line-height: 26px;
}

#why_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION FRONTDOOR */

.front_bg {
  background-image: url("imagens/frontdoor\ 2.png");
  background-size: cover;
  background-position: center;
  padding: 120px 60px;
  position: relative;
}

.front_steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.front_steps li {
  font-size: 18px;
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: white;
}

.front_steps li span {
  font-family: 'Lina', sans-serif; 
  font-size: 30px;
  color: #ff3c00;
}

.front_sub {
  margin-top: 30px;
  font-weight: 600;
  color: white;
}

.badge_box {
  margin-top: 60px;
  background: white;
  padding: 18px 30px;
  width: fit-content;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form_card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form_card h3 {
  margin-bottom: 10px;
}

.form_card input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 8px 0;
  color: white;
  font-size: 16px;
}

.btn_enviar {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 20px;
  border-radius: 40px;
  border: 2px solid white;
  background: #ff3c00;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.btn_enviar:hover {
  transform: scale(1.04);
}







