@import url('https://fonts.cdnfonts.com/css/bebas-neue');
@import url('https://fonts.cdnfonts.com/css/poppins');
/* 1200 x 780 */
body{
    margin: 0;
    font-size: 15px;
    background-color: darkslategray;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}
svg{
    color: #fff;
}
:root{
    --width-default: min(1200px, 90vw);
    --diameter: 1432px;
}
.logo img{
    width: 50px;
}
header{
    width: var( --width-default);
    height: 70px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.slider{
    /* background-color: red; */
    color: #eee;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -70px;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}
.slider .list .item.active .content p:first-of-type {
    color:  #f5f5f5;
}
.slider .list .item .content{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    text-align: left;
    gap: 80px;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: Poppins;
    text-shadow: 0 0 80px #000;
}
.slider .list .item .content h2{
    font-size: 10em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
    transform: translateY(-100%);
    transition: transform 1s;
    grid-row-start: 1;
    grid-row-end: 3;
}
.slider .list .item .content p{
}
.slider .list .item .content p:last-child{
    display: flex;
    justify-content: start;
    align-items: end;
    padding-bottom: 25px;
}
/* item default */
.slider .list .item .image{
    flex-shrink: 0;
    width: var(--diameter);
    height: var(--diameter);
    background-image: var(--url);
    background-size: var(--diameter) var(--diameter);
    background-position: center;
    border-radius: 50%;
    transform: rotate(-60deg);
    position: relative;
    transition: 1s;
}
.slider .list .item .image::before, 
.slider .list .item .image::after{
    position: absolute;
    width: 70%;
    height: 70%;
    content: '';
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  rotate(-120deg);
    background-image: 
    linear-gradient(to right, #0004, #0004),
    var(--url);
    background-size: var(--diameter) var(--diameter);
    background-position: center;
    transition: 1s;
}
.slider .list .item .image::after{
    width: 30%;
    height: 30%;
    background-image: var(--url);
    border: 3px solid #fff2;
    transform: translate(-50%, -50%) rotate(-170deg);
}

/* default  */
.slider .list .item .image{
    filter: blur(30px);
}

.slider .list .item{
    pointer-events: none;
    opacity: 0;
}
/* item active */
.slider .list .item.active{
    pointer-events: auto;
    opacity: 1;
}
.slider .item.active .image{
    filter: blur(0px);
    transform: rotate(0deg);
}
.slider .item.active .image::before,
.slider .item.active .image::after
{
    transform: translate(-50%, -50%) rotate(0deg) ;
}
.slider .list .item.active .content h2{
    transform: translateY(0);
}

/* item phía sau */
.slider .list .item.active ~ .item{
    opacity: 0;
}
.slider .item.active ~ .item .image{
    transform: rotate(60deg);
}
.slider .item.active ~ .item .image::before
{
    transform: translate(-50%, -50%) rotate(120deg) ;
}
.slider .item.active ~ .item .image::after
{
    transform: translate(-50%, -50%) rotate(170deg) ;
}
.slider .list .item.active ~ .item .content h2{
    transform: translateY(100%);
}
/* arrows */
.arrows{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    width: var(--width-default);
    display: flex;
    justify-content: space-between;
}
.arrows button{
    all: unset;
    cursor: pointer;
}
.slider .list::after{
    position: absolute;
    content: '';
    bottom: 0;
    width: min(1000px, 100vw);
    height: 70%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(img/3.png);
    background-size: cover;
    background-position: top;
    pointer-events: none;
    animation: showModel 1s ease-in-out 1 forwards;
}
@keyframes showModel{
    from{
        transform: translateX(-50%) scale(1.3) translateY(88px);
    }
}

.arrows button.d-none{
    opacity: 0;
    pointer-events: none;
}
@media all and (max-width: 1024px) {
    .slider .list .item .content{
        grid-template-columns: repeat(2, 300px);
    }
    .slider .list .item .content h2{
        font-size: 8em;
    }
}
@media all and (max-width: 767px) {
    .slider .list .item .content{
        grid-template-columns: 80%;
        justify-content: center;
        gap: 20px;
        top: 70px;
    }
    .slider .list .item .content h2{
        font-size: 4em;
    }
    .slider .list .item .content p{
        font-size: small;
    }
}


  #rotate-screen {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    color: #fff;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #rotate-screen svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    fill: #0af; /* azul claro */
    animation: rotate 2s linear infinite;
  }
  @keyframes rotate {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
  }
  #rotate-screen p {
    font-size: 1.4rem;
    font-weight: 600;
  }

  .mobile {
    position: relative;
    display: none; 
    left:0; 
    width:100vw; 
    height:100vh; 
    background:#000; 
    color:#fff; 
    z-index:9999; 
    display:flex; 
    flex-direction:column; 
    justify-content:center; 
    align-items:center; 
    text-align:center; 
    padding: 2rem;
    overflow-y: auto;
    min-height: 100vh;
    
    
  }
  .mobile h2 {
    position: absolute;
    font-size: 4em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
    transform: translateY(-100%);
    transition: transform 1s;
    top: 30%;
    overflow-x: hidden;
}
.mobile h2 .highlight {
    color: #ff6f61; 
}

.hacking_image {
  width: 40%;
  height: auto;
  position: absolute;
  top: 33%
}

.custom-list {
  position: absolute;
  list-style: none; 
  padding-left: 20px; 
  left: 10%;
  top: 57%;
}

.custom-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px; 
  font-size: 1.2em;
  font-family: Poppins;
  text-align: left;
  font-weight: 300;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #d5d5d5;
  border-radius: 50%; 
}


.free_event {
    margin-top: 90%;
    font-size: 4em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 20%;
}
.free_event .highlight {
    color: #ff6f61; 
}

.mobile p {
    position: relative;
    font-size: 2em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
    transform: translateY(-100%);
    transition: transform 1s;
    top:30vh;
}



@keyframes growFooter {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.mobile_footer {
    position: fixed; 
    width: 100vw;
    height: 12%;
    background-color: #ff6f61;
    bottom: 0;      
    left: 0;       
    transform-origin: bottom;
    animation: growFooter 0.5s ease-out forwards;
    z-index: 1;
    transition: background-color 0.5s ease; 
}

.circle_footer {
    position: absolute;
    width: 7vh;
    height: 7vh;
    background-color: #e5e5e5;
    top: -30%;              
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 6px black;
    z-index: 2;
    transition: 0.05s;
}

.circle_footer svg {
    width: 80%;  
    height: 80%;
    margin-top: 10%; /* Ajuste esse valor para mover para baixo */
}

.mobile_subscribe {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
}
.info {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px; 
    top: -5%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    height: 30%;
    
}


.info-content {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.info-content h3 {
    font-size: 2em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    top: 30%;
}

.info-content p {
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.info-item {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em; 
    font-weight: 400;
    margin-bottom: 12px; 
    letter-spacing: 0.5px; 
    line-height: 1.4; 
    margin-top: -5px;
}

.info-item-job {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em; 
    font-weight: 400;
    margin-bottom: 12px; 
    letter-spacing: 0.5px; 
    line-height: 1.4; 
    margin-top: 10px;
}

