@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root{
    --primary: #ff0051;
    --second: #3a3a3a;
    --third: #f2f2f2;
    --gap: 1.25rem;
    --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --closed: 5rem;
    --open: 30rem;
    --accent: #ff6b35;
}

body{
    background: #111 ;
    font-family: "Roboto", sans-serif;
    margin: 0;
    height: 200vh;
    overflow-y: scroll; /* força a barra visível */
    overflow-x: hidden;
}

/*Header Section*/ 

header{
    position: fixed;
    top: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 30px 100px;
    background: transparent;
    transition: 0.5s;
    z-index: 1100;
}

.logo{
    position: relative;
    font-size: 30px;
    color: #ffffff;
    letter-spacing: 2px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav li{
    position: reltive;
    list-style: none;
    margin: 0 20px ;
}

.nav li a{
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 300;
    font-size: 1.5em;
    letter-spacing: 1px;
    padding: 10px;
}

.nav li a:hover{
    color: var(--primary);
}

.util{
     display: flex;
     justify-content: flex-end;
     align-items: center;
     gap: 2px;
}

.util li{
    position: relative;
    list-style: none;
    margin: 0 20px ;
}

.util li a{
    text-decoration: none;
    color: #ffffff;
    transition: 0.5s;
}

.util li a ion-icon{
    font-size: 1.5em;
}

.util li a:hover{
    color: var(--primary);
}

/* Mobile menu e navegação */

.menu{
  display: none;
  transition: 0.5s;
}

.menu ion-icon{
  color: #fff;
  font-size: 1.6rem;
}

.menu.active{
  transform: rotateZ('45deg');
}

.nav-mobile{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 990;
  gap: 20px;
}

.nav-mobile.active{
  opacity: 1;
  visibility: visible;
}

.nav-mobile li{
  position: relative;
  list-style: none;
}

.nav-mobile li a{
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  padding: 10px;
}

/* Banner*/ 

#banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    
}

/*Imagens*/
.consultoria::before,
.styling::before,
.palestra::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: 0.5s;
}

.consultoria:hover::before,
.styling:hover::before,
.palestra:hover::before{
      background: transparent;
}

.consultoria{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    background: var(--primary);
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.styling{
    position: absolute;
    top: 0;
    left: 30%;
    height: 100%;
    width: 40%;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 25% 50%, 0 0);
    background: var(--second);
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.palestra{
    position: absolute;
    top: 0;
    left: 60%;
    height: 100%;
    width: 40%;
    clip-path: polygon(25% 0%,100% 0%,100% 100%,25% 100%,0% 50%);
    background: var(--primary);
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner.left .consultoria,
#banner.middle .styling,
#banner.right .palestra {
    width: 100%;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
    transition: 1s;
}

#banner.right .palestra{
    left: 0;
}

#banner.middle .styling{
    left: 0;
}

#banner.left .styling,
#banner.left .palestra{
    left: 120%;
}

#banner.right .styling,
#banner.right .consultoria{
    left: -120%;
}

#banner.middle .consultoria{
    left: -120%;
}

#banner.middle .palestra{
    left: 120%;
}

/*Banner Imagens*/

.consultoria img,
.styling img,
.palestra img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

#banner.left .consultoria img{
    width: 50%;
    position: center;
}

#banner.middle .styling img,
#banner.right .palestra img{
    left: 50%;
    width: 50%;
}

/*Buttons Banner*/

.switch-btn{
    position: relative;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 5em;
    font-weight: 300;
    margin-top: 40%;
    z-index: 1000;
    transition:0.5s;
    transform: scale(1);
   
}

.switch-bnt:hover{
    transform: scale(1.2);
}

/*Reset Button*/

.reset{
    position: absolute;
    left: 100px;
    bottom: 100px;
    z-index: 1000;
    transition: 0.5s;
}

.reset.active{
    transform: rotateZ(180deg);
}

.reset ion-icon{
    color: #ffffff;
    font-size: 3em;
    transition: 0.3s;
}

.reset ion-icon:hover{
    color:var(--primary);
}

/*Content Banner*/
#banner .content{
    position: absolute;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 900;
}

#banner .content h1{
    color: #ffffff;
    font-size: 4.5em;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#banner .content p{
    color: #ffffff;
    font-weight: 200;
    font-size: 1em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#banner .content a {
   position: relative;
   width: 200px;
   text-decoration: none;
   text-transform: uppercase;
   font-weight: 400;
   color: #ffffff;
   padding: 12px 20px;
   border: 1px solid #ffffff;
   transition: 0.3s;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

#banner .content a:hover{
    background: #ffffff;
    color: var(--primary);
}

#banner.left .consultoria .content,
#banner.middle .styling .content,
#banner.right .palestra .content{
    opacity: 1;
    visibility: visible
}

.consultoria .content{
    left: 55%;
}

.styling .content,
.palestra .content{
    left: 100px;
}

.container-botoes {
            display: flex;
            /* Adiciona espaço entre os botões */
            gap: 10px; 
            /* Opcional: centraliza o grupo na página */
            justify-content: center; 
            margin-top: 20px;
        }

        .bt-link {
            /* Transforma o link em um bloco para aplicar padding e margem */
            display: inline-block; 
            padding: 10px 20px;
            color: white;
            text-decoration: none; /* Remove o sublinhado padrão dos links */
            text-align: center;
            /* Garante que os botões não quebrem linha se houver muitos */
            white-space: nowrap; 
        }

        .bt-link:hover {
            background-color: #ffffff;
        }

/* Caixas Animadas*/

/* === Seção das Caixas Animadas === */
.scroll-section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;               
  margin-top: 45px;       
  padding: 40px 0;
}

/* Cada caixa */
.box {
  width: 40%;
  min-height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 25px;
  backdrop-filter: blur(8px);
  color: #fff;
  opacity: 0;
  transition: 0.8s ease;
}

/* Posições iniciais fora da tela */
.box-left {
  transform: translateX(-150%);
}
.box-right {
  transform: translateX(150%);
}

/* Quando ativadas */
.box.active {
  transform: translateX(0);
  opacity: 1;
}

/* Imagens internas responsivas */
.box img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

/* ===== SLIDER ===== */

.media-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 7; /* retângulo bonito e responsivo */
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
}

.media-carousel img,
.media-carousel video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity .6s ease;
}

.media-carousel .is-visible {
  opacity: 1;
  z-index: 2;
}



@media (max-width: 900px) {
  .scroll-section {
    flex-direction: column;
    margin-top: 10px;    
  }
  .box {
    width: 90%;
    transform: translateX(0) !important;
  }
}

/* Slider Section Elementor */

.slider video{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
  z-index: 999;
  position: absolute;
  bottom: 200px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
 transform: translateX(-50%);
}

.slider-navigation .nav-btn{
  width: 14px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px;
  transition: 0.3s ease;
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.slider-navigation .nav-btn.active{
  background: #ff0051;
}

.video-slider{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slider.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

section.slider{
  padding: 100px 200px;
}

.slider {
 position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;

}

.slider .content1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 888;
  width: 70%;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.slider .content1.active {
  opacity: 1;
  visibility: visible;
}



.slider .content1 h1{
  font-size: 5.5em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.1EM;
  margin-bottom: 25px;
  color: #fff;

}

.slider .content1 p{
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #fff;
}

.slider .content1 a{
  background: #fff;
  padding: 15px 35px;
  color: #ff0051;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
}


/*Resposividade Slider Section*/

@media (max-width: 1024px) {
  section.slider {
    padding: 80px 150px;
  }

  .slider .content {
    width: 90%;
    margin-top: 20%;
  }

  .slider .content h1 {
    font-size: 3.2em;
    line-height: 60px;
  }

  .slider .content p {
    font-size: 1em;
  }
}

/* Celulares grandes e Tablet – até 768px */
@media (max-width: 768px) {
  section.slider {
    padding: 60px 60px;
  }

  .slider .content {
    width: 100%;
    margin-top: 10%;
  }

  .slider .content h1 {
    font-size: 2.5em;
    line-height: 45px;
  }

  .slider .content h1 span {
    font-size: 1em;
  }

  .slider .content p {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .slider .content a {
    padding: 12px 28px;
    font-size: 1em;
  }
}

/* Celulares pequenos – até 480px */
@media (max-width: 480px) {
  section.slider {
    padding: 40px 20px;
  }

  .slider .content {
    margin-top: 0;
  }

  .slider .content h1 {
    font-size: 2em;
    line-height: 38px;
    letter-spacing: 3px;
  }

  .slider .content p {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .slider .content a {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}

/* Footer */

.footer {
  background: #111;
  color: #fff;
  padding: 80px 120px; /* AUMENTEI A ALTURA */
  border-top: 3px solid #ff0051; /* BORDA SUPERIOR CHIQUE */
  border-bottom: 3px solid #ff0051; /* BORDA INFERIOR */
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  flex-wrap: wrap;
}

.footer-left h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 340px;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ff0051;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ff0051;
  padding-left: 4px;
}

/* ÍCONES */
.social-icons {
  display: flex;
  gap: 22px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;        /* TAMANHO AUMENTADO */
  color: #fff;
  transition: 0.3s ease;
}

/* Ícones Ionicons */
.social-icons a ion-icon {
  font-size: 25px;        /* GARANTE TAMANHO DO ÍCONE */
  transition: 0.3s ease;
}


/* ✨ Efeito hover elegante */
.social-icons a:hover {
  color: #ff0051;
  transform: scale(1.3) rotate(5deg);
  text-shadow: 0 0 10px #ff0051;
}

/* ==========================
     COPYRIGHT ADICIONADO
   ========================== */
.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #333;
  font-size: 0.95rem;
  color: #bbb;
}




/* Resposividade */
@media (max-width:600px){
    header{
      padding: 30px 20px;
    }

    header.header-scrolled{
      padding: 15px 20px;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(20px);
    }

    .nav{
      display: none;
    }

    .util{
      display: none;
    }

    .menu{
      display: block;
    }

    /* Banner Section */
    #banner{
      padding: 0 20px;
    }

    .consultoria{
      height: 40px;
      width: 100%;
      clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0 75%)
    }

    .styling{
      top: 30%;
      left: 0;
      height: 40%;
      width: 100%;
      clip-path: polygon(100% 0, 100% 100%, 50% 75%, 0 100%, 0 0, 50% 25%)
    }

    .palestra{
      top: 60%;
      
    }
  

}

/* Responsividade Mobile*/
@media (max-width: 600px) {
  header {
    padding: 30px 20px;
  }

  header.header-scrolled{
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
  }

  .nav{
    display: none;
  }
  
  .util{
    display: none;
  }

  .menu{
    display: none;
  }

  /* resposividade banner*/

  #banner{
    padding: 0 20px;
  }

  .consultoria{
    height: 40%;
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
  }

  .styling{
    top: 30%;
    left: 0;
    height: 40%;
    width: 100%;
    clip-path: polygon(100% 0, 100% 100%, 50% 75%, 0 100%, 0 0, 50% 25%);
  }

  .palestra{
    top: 60%;
    left: 0;
    height: 40%;
    width: 100%;
    clip-path: polygon(50% 0, 100% 25%, 100% 100%, 0 100%, 0 25%);
  }

  #banner.left .consultoria,
  #banner.middle .styling,
  #banner.right .palestra{
    height: 100%;
  }

  #banner.right .palestra{
    top: 0;
  }

   #banner.middle .styling{
    top: 0;
   }

   #banner.left .styling,
   #banner.left .palestra{
    top: 120%;
   }

   #banner.right .consultoria,
   #banner.right .styling{
    top: -120%;
  }

  #banner.middle .consultoria{
    top: -120%;
  }

  #banner.middle .palestra{
    top: 120%;
  }

  .switch-btn{
    font-size: 4em;
    margin-top: 0;
  }

  #banner.left .consultoria img{
    height: 50%;
    width: 100% !important;
  }

  #banner.middle .styling img,
  #banner.right .palestra img{
    left: 0;
    top: 50%;
    height: 50%;
    width: 100% !important;
  }

  #banner .content h1{
    font-size: 2.5em;
    font-weight: 400;
  }

  .consultoria .content{
    left: 20px;
    top: 60%;
  }

  .styling .content,
  .palestra .content{
    left: 20px;
    top: 15%;
  }

  .reset{
    left: 20px;
    bottom: 20px;
  }

  .reset ion-icon{
    font-size: 2em;
  }
}
