/* FONTE ALTASIS - CRIADA POR SAMYRA EM 26072026  */

@font-face {
  font-family: 'AltasisFont'; /* Nome que você escolhe para chamar no CSS */
  src: url('../fonts/Altasis2026-Regular.woff2') format('woff2'),
       url('../fonts/Altasis2026-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Garante que o texto fique visível enquanto a fonte carrega */
}


.logo-texto{
    font-family: 'AltasisFont', sans-serif;
    letter-spacing: 0.15em; /* Aumentar o espaçamento deixa o estilo futurista ainda mais bonito */
}

/* HERO SECTION */
.hero-section {
    position: relative !important;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-index {
    background-image: url('../images/hero_index.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;

}

.hero-turbo {
    background-image: url('../images/hero_turbo.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;

}

.hero-dev {
    background-image: url('../images/hero_dev.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;

}

.hero-cftv {
    background-image: url('../images/hero_cftv.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;

}


.hero-suporte {
    background-image: url('../images/hero_suporte.png') !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;

}





/* CONTAINER CENTRALIZADO */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}