/* Estrutura do corpo do site */
html {
    scroll-behavior: smooth; /* Adiciona a rolagem suave para todo o site */
}

 body {
     font-family: 'Spotify Mix', Arial, sans-serif;
     margin: 0;
     padding: 0;
     color: #1f1f1f;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     align-items: center;
     text-align: left;
     overflow-x: hidden; /* Remove a barra de rolagem horizontal */
}

@font-face {
    font-family: 'Spotify Mix';
    src: url('fonts/SpotifyMix-Regular.woff2') format('woff2'),
         url('fonts/SpotifyMix-Regular.woff') format('woff'),
         url('fonts/SpotifyMix-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spotify Mix';
    src: url('fonts/SpotifyMix-Bold.woff2') format('woff2'),
         url('fonts/SpotifyMix-Bold.woff') format('woff'),
         url('fonts/SpotifyMix-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Adiciona um Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Esconde o conteúdo antes do carregamento */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* Barra de rolagem */
 main {
     width: 100%;
}

/* Barra de rolagem */
 ::-webkit-scrollbar {
     width: 8px;
     height: 8px;
    /* Altura para scroll horizontal */
     background: #1f1f1f;
    /* Cor do fundo */
}
/* Cor da barra de rolagem */
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #FFCC00, #FFC525);
    /* Gradiente dourado e laranja */
     border-radius: 5px;
     border: 1px solid #1f1f1f;
    /* Espaço entre a barra e a borda */
}
/* Estilo ao passar o mouse sobre a barra */
 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(45deg, #FFC525, #FFCC00);
    /* Gradiente laranja mais intenso */
}
/* Estilo da área de track */
 ::-webkit-scrollbar-track {
     background: #1f1f1f;
    /* Fundo da trilha */
     border-radius: none;
}

/* Barra do menu */
 header {
     background: #1f1f1f;
     opacity: 1.0;
    /* 90% opaco */
     padding: none;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: 0 0 30px rgba(0, 0, 0, .1);
     border-bottom: 1px solid transparent;
    /* Define uma borda inicial */
     border-image-source: linear-gradient(to right, #1f1f1f, #ffcc00, #1f1f1f);
    /* Aplica o gradiente horizontalmente */
     border-image-slice: 1;
    /* Garante que o gradiente preencha a borda */
     padding-top: 0;
    /* Corrige o padding */
}
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 20px;
     position: relative;
     height: 52px;
    /* Altura da barra de menu */
}
.logo {
    position: relative;
    font-size: 24px;
    color: #fff;
    width: 25px;
    height: 25px;
    margin-left: 4px;
    display: flex;
}
 .menu-icon {
     display: none;
     font-size: 24px;
     cursor: pointer;
     color: #FFCC00;
     position: relative;
     width: 24px;
    /* Ajusta a largura do contêiner do ícone */
     height: 24px;
    /* Ajusta a altura do contêiner do ícone */
}
 .menu-icon i {
     position: absolute;
     top: 0;
     left: 0;
     transition: opacity 0.3s ease;
     vertical-align: middle;
    /* Alinha verticalmente os ícones */
}
 .menu-icon .fa-bars {
     color: #FFCC00;
    /* Cor padrão */
}
 .menu-icon.active .fa-bars {
     color: #FFFFFF;
    /* Cor quando clicado */
}
/* .menu-icon i::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 40px;
    /* Ajuste o tamanho do círculo height: 40px;
    /* Ajuste o tamanho do círculo background-color: #5f6368;
    /* Cor do círculo border-radius: 50%;
     transform: translate(-50%, -50%);
     opacity: 0;
    /* Inicialmente invisível transition: opacity 0.3s ease;
     z-index: -1;
    /* Coloca o círculo atrás do ícone 
}
 */
 .menu-icon i.active::after {
     opacity: 1;
    /* Torna o círculo visível quando ativo */
}
 .menu {
     display: flex;
     list-style-type: none;
     margin: 0;
     padding: 0;
     gap: 20px;
     justify-content: center;
     flex: 1;
}
 .menu li {
     margin: 0;
     text-transform: capitalize;
     position: relative;
}
 .menu a {
     text-decoration: none;
     color: #ffcc00;
     font-size: 14px;
     padding: 10px;
     position: relative;
     transition: color 0.3s;
}
 .menu a:hover, .menu a.active {
     color: #ffffff;
}
/* Animação ao passar o mouse */
 .nav-links {
     opacity: 1.0;
    /* 90% opaco */
     list-style: none;
     position: fixed;
     left: -100%;
     top: 52px;
    /* Alinha o menu abaixo da barra de menu */
     width: 100%;
     height: calc(100% - 52px);
    /* Ajusta a altura para preencher o restante da tela */
     background: #1f1f1f;
    /* background: #e91e63;
     */
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: left 1.0s ease;
     padding: 0;
     margin: 0;
     border-bottom: 2px solid #FFCC00;
    /* Borda inferior */
}
 .nav-links li {
     margin: 10px 0;
     position: relative;
}
 .nav-links a {
     text-decoration: none;
     color: #ffcc00;
     font-size: 14px;
     text-align: center;
     padding: 10px;
     transition: color 0.1s;
}
 .nav-links a::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -10px;
    /* Coloca a borda 10px abaixo do link */
     width: 100%;
    /* A largura da borda será 100% do contêiner .nav-links */
     height: 1px;
    /* Altura da borda */
     background: linear-gradient(to right, #1f1f1f, #FFCC00, #1f1f1f);
    /* Gradiente da borda */
}
 .nav-links a:hover, .nav-links a.active {
     color: #ffffff;
}
/* Animação ao passar o mouse */
 .nav-links.active {
     left: 0;
}
 @media only screen and (max-width: 767px) {
     .menu {
         display: none;
    }
     .menu-icon {
         display: block;
    }
}

/* Parte inicial do site */
.hero {
    background: url("img/BG06.jpg") no-repeat center center/cover;
    background-color: #1f1f1f;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
}

.hero .content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

/* Estilo para a imagem do logotipo
.hero img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
} */

div.overlay {
    margin-left: none; /* Ajusta a posição do título */
    max-width: 600px;
}

/* Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); Fundo escuro com transparência */
    z-index: 1;
}
 .hero > div {
     position: relative;
     z-index: 2;
}

 .hero h1:hover {
     color: #ffffff;
}

 .hero p:hover {
     color: #ffffff;
}
/* Efeito de pulsar no botão */
 @keyframes pulse {
     0% {
         transform: scale(1);
    }
     50% {
         transform: scale(1.04);
        /* Aumenta o botão em 5% */
    }
     100% {
         transform: scale(1);
    }
}
 .hero button {
     width: 100%;
     justify-content: center
     display: flex;
     align-items: center;
     padding: 15px 20px;
     border: none;
     background-image: linear-gradient(90deg, #ffb500 0%, #ffcc00 100%);
     font-size: 1em;
     font-weight: none;
     border-radius: 50px;
     cursor: pointer;
     transition: background-color 0.3s, color 0.3s, transform 0.3s;
     margin-top: none;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     position: relative;
     overflow: hidden;
     z-index: 0;
     animation: pulse 2.5s infinite;
    /* Aplica a animação de pulsar */
}
 .hero button:before {
     content: "";
     position: absolute;
     border-radius: 50px;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-image: linear-gradient(90deg, #ffcc00 0%, #ffb500 100%);
    /* Cor para a animação de transição */
     transition: left 0.8s ease;
     z-index: -1;
}
 .hero button:hover::before {
     left: 0;
}
 .hero button:hover {
    /* Cor de testes #25d366 */
    /*transform: translateY(-2px);
     transform: scale(1.05);
     Reduzido para manter o botão nítido */
}
 .hero button a {
     text-decoration: none;
     color: #1f1f1f;
    /* Cor do texto e ícone */
     transition: color 0.8s;
}
 .hero button a {
     text-decoration: none;
     color: #1f1f1f;
    /* Cor inicial do texto e ícone */
}
 .hero button:hover a {
     color: #1f1f1f;
    /* Cor do texto e ícone quando o botão é hoverado */
}
 .hero button i {
     color: #1f1f1f;
     font-weight: bold;
     transition: color 0.8s;
}
 .hero button:hover i {
     color: #1f1f1f;
    /* Altera a cor do ícone do WhatsApp para branco quando hoverado */
}

@media only screen and (min-width: 360px) {
    
    div.overlay {
    margin-top: -300px;
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    color: #ffcc00;
    font-size: 41px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0px;
    transition: color 0.8s;
}

    .hero p {
    font-size: 20.5px;
    line-height: 1.0;
    margin: 15px 0;
}
    
    .hero button a {
     font-size: 15px;
    }
}

@media only screen and (min-width: 393px) {
    
    div.overlay {
    margin-top: -300px;
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    color: #ffcc00;
    font-size: 44px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0px;
    transition: color 0.8s;
}

    .hero p {
    font-size: 21.9px;
    line-height: 1.0;
    margin: 15px 0;
}
    
    .hero button a {
     font-size: 16px;
    }
}

@media only screen and (min-width: 430px) {

    div.overlay {
    margin-top: -350px;
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    color: #ffcc00;
    font-size: 49px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0px;
    transition: color 0.8s;
}

    .hero p {
    font-size: 24.6px;
    line-height: 1.0;
    margin: 15px 0;
}
    
    .hero button a {
     font-size: 16px;
    }
}

@media only screen and (min-width: 540px) {

    div.overlay {
    margin-top: -350px;
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    color: #ffcc00;
    font-size: 64px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0px;
    transition: color 0.8s;
}

    .hero p {
    font-size: 32px;
    line-height: 1.0;
    margin: 20px 0;
}
    
    .hero button a {
     font-size: 16px;
    }
}

@media only screen and (min-width: 800px) {

    div.overlay {
    margin-top: -300px;
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.hero div {
    max-width: 550px;
    width: 100%;
    margin-right: 0px;
    margin-top: -700px;
}

.hero h1 {
    color: #ffcc00;
    font-size: 72px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0px;
    transition: color 0.8s;
}
    
.hero p {
    font-size: 26.9px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 20px 0;
}

.hero button a {
    font-size: 20px;
}

}

@media only screen and (min-width: 1360px) {
    
.hero div {
    max-width: 450px;
    margin-right: 650px;
    margin-top: 0px;
}
    
.hero h1 {
    color: #ffcc00;
    font-size: 60px;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0px;
    transition: color 0.8s;
}
    
.hero p {
    font-size: 22px;
    
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero button a {
     font-size: 16px;
    }

}


/* Secção "Sobre mim" */

section#about.container {
    max-width: none;
    margin: none;
    padding: 0px 75px;
    background-color: #ffcc00;
    background: url("img/BG04.jpg") no-repeat center center/cover;
    display: flex;
    gap: 20px;
    min-height: 0px;
    line-height: 1.6;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

section#about.container > div {
    flex: 1 1 100%;
    margin-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#about.container > p {
   padding: 30px;
}

 .section h1 {
     font-size: 20px;
     color: #1f1f1f;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 .section {
     padding: 30px 0px;
     text-align: center;
}
 .section h2 {
     text-align: center;
     font-size: 30px;
     margin: 50px 0px 20px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 div.about-card p{
     font-size: 16px;
}
.about-card {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
 .about-card img {
     width: 100%;
     height: auto;
     max-width: 400px;
     border-radius: 0px;
     object-fit: cover;
}
 .about-card .about-text {
     flex: 1;
     text-align: left;
     color: #1f1f1f;
     max-width: none;
    /* Limita a largura máxima do texto */
}

@media only screen and (max-width: 767px) {
    
    section#about.container {
        background: url("img/BG09.jpg") no-repeat center center/cover;
        padding: 0px 30px;
    }
    
    .about-card {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: nowrap;
        flex-direction: column-reverse;
        justify-content: center;
    }
    
    .section h2 {
        font-size: 28.5px;
    }
}

@media only screen and (max-width: 1024px) {
    
    section#about.container {
        background: url("img/BG14.jpg") no-repeat center center/cover;
    }
    
        .about-card {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: nowrap;
        flex-direction: column-reverse;
        justify-content: center;
    }
}


/* Secção "Como funciona?" *//*Cor de testes #e91e63*/

/* Cor de fundo */

section#how-it-works.section {
    background-color: #2a2a2a;
    background: url("img/BG05.jpg") no-repeat center center/cover;
    padding: 0px 30px;
    display: flex;
    min-height: 100vh;
    line-height: 1.6;
    justify-content: center;
    align-items: center;
}

div.how-it-works-section {
    padding: 30px 0;
    background: none;
    font-family: 'Spotify Mix', sans-serif;
    text-align: center;
    position: relative;
    display: flex;
    max-width: 60%;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

 .how-it-works-section h2 {
     text-align: center;
     font-size: 30px;
     margin: 50px 0px 20px;
     color: #ffcc00;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 .how-it-works-list {
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 16px;
     color: #ffffff;
     text-align: left;
}

.how-it-works-list li {
    text-align: left;
    /* margin: 0 100px; */
    max-width: 100%;
}

/* div.mfit-app {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 0 30px;
    max-width: 100%;
    align-items: center;
    flex-direction: column;
}

.mfit-app img {
    width: 45%;
} */

/* Adiciona os links para o APP */
.app-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0 0;
    align-items: center;
}
.app-links a {
    display: inline-block;
    background-color: #ffcc00;
    border-radius: 100px;
    padding: 3px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
 .app-links img {
     display: block;
    /* Remove o espaço abaixo da imagem */
     max-width: 150px;
    /* Tamanho máximo da imagem */
     height: auto;
    /* Mantém a proporção da imagem */
     border-radius: 0px;
    /* Bordas da imagem */
}
 .app-links a:hover {
     background-color: #ffffff;
    /* Cor de fundo ao passar o mouse */
     transform: scale(1.1);
    /* Aumenta o tamanho em 10% */
}
 @media only screen and (max-width: 767px) and (max-height: 1024px) {
    
    section#how-it-works.section {
    background-color: #2a2a2a;
    background: url("img/BG10.jpg") no-repeat center center/cover;
    padding: 0px 30px;
    display: flex;
    min-height: 100vh;
    line-height: 1.6;
    align-items: center;
    justify-content: space-evenly;
}
    
     div.how-it-works-section {
         padding: 30px 0px;
         max-width: 100%;
    }
     .how-it-works-section h2 {
         text-align: center;
         font-size: 28px;
         margin: 50px 0px 20px;
         color: #ffcc00;
         text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
     .section#how-it-works ul{
         font-size: 15px;
    }
    
    div.mfit-app {
    display: flex;
    justify-content: center;
    /* gap: 30px; */
    padding: 0 0 30px;
    max-width: 100%;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 30px 0 0;
    align-items: center;
}

}
/* Secção "Confira os planos" */
div.plans-section {
    /* margin-top: 0; */
    padding: 30px 0px;
    background: none;
    font-family: 'Spotify Mix', sans-serif;
    /* width: 90%; */
    box-sizing: border-box;
    /* margin: 0px; */
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}
/* Corrigindo padding em #plans */
 section#plans.plans-section {
     padding: 0px 30px;
     background: #2a2a2a;
     background: url("img/BG05.jpg") no-repeat center center/cover;
     border-top: 1px solid transparent;
    /* Define uma borda inicial */
     border-bottom: 1px solid transparent;
    /* Define uma borda inicial */
     border-image-source: linear-gradient(to right, #2a2a2a, #FFCC00, #2a2a2a);
    /* Aplica o gradiente horizontalmente */
     border-image-slice: 1;
    /* Garante que o gradiente preencha a borda */
}
/* Título da seção */
 .plans-section h2 {
     text-align: center;
     font-size: 30px;
     margin: 50px 0px 20px;
     color: #ffcc00;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
/* Lista de planos */
.plans-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    color: #1f1f1f;
    text-align: left;
    /* width: 68%; */
}

.plans-section ul {
    display: flex; /* Ativa o Flexbox */
    justify-content: center; /* Alinha os itens horizontalmente ao centro */
    align-items: center; /* Alinha os itens verticalmente ao centro */
    flex-direction: column; /* Organiza os itens em coluna */
    padding: 0; /* Remove o preenchimento padrão da lista */
    margin: 0; /* Remove a margem padrão */
    list-style: none; /* Remove os marcadores da lista */
}

.plans-section li {
    text-align: left;
    /* margin: 0 100px; */
    max-width: 100%;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contêiner de Cartões */
.plans-cards {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 20px 0 0;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}
/* Estilo para cada Cartão */
 #mensal {
    flex: 1 1 300px;
    max-width: 400px;
    /* background: #1f1f1f; */
    background-color: rgb(255 204 0 / 5%);
    border-radius: 16px;
    border: 1px solid #ea541c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
}
 #trimestral {
    flex: 1 1 300px;
    max-width: 400px;
    /* background: #ffffff; */
    background-color: rgba(234, 84, 28, 5%);
    border-radius: 16px;
    border: 1px solid #ea541c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
}
 #anual {
    flex: 1 1 300px;
    max-width: 400px;
    /* background: #1f1f1f; */
    background-color: rgb(255 204 0 / 5%);
    border-radius: 16px;
    border: 1px solid #ea541c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
}
/* Estilo dos cartões de plano Mensal, Trimestral e Anual (semelhantes) */
 #mensal {
     color: #1f1f1f;
    /* Cor do texto */
     border: 1px solid #ffcc00;
    /* Borda branca */
}
 #trimestral {
     color: #ea541c;
    /* Cor do texto */
     border: 1px solid #ea541c;
    /* Borda branca */
}
 #anual {
     color: #1f1f1f;
    /* Cor do texto */
     border: 1px solid #ffcc00;
    /* Borda branca */
}
/* Estilos dos títulos dos planos */
 #mensal h3 {
     margin: 0;
     padding: 25px;
     background-color: #ffcc00;
     color: #1f1f1f;
     line-height: 1.1;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
     width: calc(100% + 40px);
     transform: translateX(-20px);
     box-sizing: border-box;
     position: relative;
     top: -20px;
     border-top-left-radius: 15px;
     border-top-right-radius: 15px;
}
/* Estilos dos títulos dos planos */
#trimestral h3 {
    margin: 0;
    padding: 25px;
    background-color: #ea541c;
    color: #1f1f1f;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(100% + 40px);
    transform: translateX(-20px);
    box-sizing: border-box;
    position: relative;
    top: -20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
/* Estilos dos títulos dos planos */
 #anual h3 {
    margin: 0;
    padding: 25px;
    background-color: #ffcc00;
    color: #1f1f1f;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(100% + 40px);
    transform: translateX(-20px);
    box-sizing: border-box;
    position: relative;
    top: -20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
/* Estilos para descontos e itens inclusos */
 #mensal .discount {
     background-color: none;
     color: #ffffff;
     margin: 0;
}
#trimestral .discount {
    background-color: none;
    color: #ffffff;
    margin: 0;
}
 #anual .discount {
     background-color: none;
     color: #ffffff;
     margin: 0;
}
 #mensal .included {
     font-size: 20px;
     background-color: none;
     color: #ffffff;
}
#trimestral .included {
    font-size: 20px;
    background-color: none;
    color: #ffffff;
}
 #anual .included {
     font-size: 20px;
     background-color: none;
     color: #ffffff;
}
 #mensal .price {
     font-size: 40px;
     font-weight: 900;
     margin: 0;
     color: #ffcc00;
     text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
 #trimestral .price {
     font-size: 40px;
     font-weight: 900;
     margin: 0;
     color: #ea541c;
     text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
 #anual .price {
     font-size: 40px;
     font-weight: 900;
     margin: 0;
     color: #ffcc00;
     text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
 #mensal .lis-text {
     display: flex;
     align-items: center;
     font-size: 14px;
     text-align: left;
     color: #ffffff;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 #trimestral .lis-text {
     display: flex;
     align-items: center;
     font-size: 14px;
     text-align: left;
     color: #ffffff;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 #anual .lis-text {
     display: flex;
     align-items: center;
     font-size: 14px;
     text-align: left;
     color: #ffffff;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 #mensal .lis-text i {
     margin-right: 10px;
     color: #ffcc00;
}
 #trimestral .lis-text i {
     margin-right: 10px;
     color: #ea541c;
}
 #anual .lis-text i {
     margin-right: 10px;
     color: #ffcc00;
}
/* Estilo dos botões */
 #mensal button {
     padding: 15px 20px;
     border: none;
     background-color: #ffcc00;
     color: #1f1f1f;
     font-size: 1em;
     font-weight: bold;
     border-radius: 50px;
     cursor: pointer;
     transition: background-color 0.3s, color 0.3s, transform 0.3s;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     animation: pulse 2.5s infinite;
}
 #trimestral button {
     padding: 15px 20px;
     border: none;
     background-color: #ea541c;
     color: #1f1f1f;
     font-size: 1em;
     font-weight: bold;
     border-radius: 50px;
     cursor: pointer;
     transition: background-color 0.3s, color 0.3s, transform 0.3s;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     animation: pulse 2.5s infinite;
}
 #anual button {
     padding: 15px 20px;
     border: none;
     background-color: #ffcc00;
     color: #1f1f1f;
     font-size: 1em;
     font-weight: bold;
     border-radius: 50px;
     cursor: pointer;
     transition: background-color 0.3s, color 0.3s, transform 0.3s;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     animation: pulse 2.5s infinite;
}
 #mensal button:hover {
     background-color: #ffffff;
     color: #1f1f1f;
     transform: scale(1.05);
    /* Reduzido para um efeito mais suave */
}
 #trimestral button:hover {
     background-color: #ffffff;
     color: #1f1f1f;
     transform: scale(1.05);
    /* Reduzido para um efeito mais suave */
}
 #anual button:hover {
     background-color: #ffffff;
     color: #1f1f1f;
     transform: scale(1.05);
    /* Reduzido para um efeito mais suave */
}
/* Estilo das linhas */
 #mensal .line-top, #mensal .line-bottom, #mensal .line-included {
    display: block;
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background-color: transparent;
    border: none;
    border-image-source: linear-gradient(to right, transparent, #ffcc00, transparent);
    border-image-slice: 1;
    border-top: 1px solid transparent;
}
/* Estilo das linhas */
 #trimestral .line-top, #trimestral .line-bottom, #trimestral .line-included {
    display: block;
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background-color: transparent;
    border: none;
    border-image-source: linear-gradient(to right, transparent, #ea541c, transparent);
    border-image-slice: 1;
    border-top: 1px solid transparent;
}
/* Estilo das linhas */
 #anual .line-top, #anual .line-bottom, #anual .line-included {
    display: block;
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background-color: transparent;
    border: none;
    border-image-source: linear-gradient(to right, transparent, #ffcc00, transparent);
    border-image-slice: 1;
    border-top: 1px solid transparent;
}
/* Efeito de hover nos cartões */
 .plan-card {
     max-width: 400px;
    /* Limite de largura */
     width: 100%;
    /* Garante que o cartão ocupe toda a largura disponível */
}
 .plan-card:hover {
     transform: scale(1.05);
}
 .plan-card h3 {
     font-size: 1.5em;
     margin-bottom: 10px;
     color: #1f1f1f;
}
 .plan-card p {
     font-size: 1em;
     margin-bottom: 20px;
     color: #1f1f1f;
}
 .plan-card .price {
     margin: 0px 0px 10px;
     font-size: 1.9em;
     color: #ea541c;
     font-weight: bold;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.plan-card .discount {
    font-size: 1em;
    color: #ffffff;
}
 .plan-card .included {
     color: #ea541c;
}
/* Responsividade para telas médias (max-width: 1024px) */
 @media (max-width: 1024px) {
     .plans-cards {
         flex-wrap: wrap;
        /* Permite que os planos empilhem conforme o espaço */
    }
     .plan-card {
         flex: 1 1 calc(50% - 20px);
        /* Dois planos por linha */
         max-width: calc(50% - 20px);
        /* Largura de 50% para dois planos */
    }
}
/* Responsividade para telas pequenas (max-width: 768px) */
 @media only screen and (max-width: 393px) and (max-height: 852px) {
      div.plans-section {
         width: 100%;
    }
     .plan-card {
         flex: 1 1 400px;
        /* A largura mínima será 350px */
         max-width: 100%;
    }
     .plans-cards {
         gap: 10px;
        /* Menos espaço entre os cartões em telas pequenas */
    }
     .plans-section li {
         font-size: 15px;
    }
}
/* Secção Depoimentos */
 section#testimonials.testimonials-section {
     padding: 0px 30px;
     background: #2a2a2a;
     background: url("img/BG05.jpg") no-repeat center center/cover;
     min-height: none;
}
 div.testimonials-section {
     padding: 30px 0px;
     margin-top: none;
     font-family: 'Spotify Mix', sans-serif;
     width: 100%;
     box-sizing: border-box;
     text-align: center;
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}

section#testimonials.testimonials-section img {
    width: 100%; /* Garante que a largura da imagem se ajuste ao contêiner */
    max-width: 400px; /* Define um limite máximo para evitar que fique muito grande */
    height: auto; /* Mantém a proporção original da imagem */
    object-fit: contain; /* Garante que a imagem se ajuste completamente dentro do contêiner */
    display: block; /* Remove espaços extras ao redor da imagem */
    margin: 0 auto; /* Centraliza a imagem horizontalmente */
}


.testimonials-section-list li {
    background: none;
    margin: 0 auto;
    /* margin-right: auto; */
    text-align: left;
    width: 60%;
    display: flex;
    /* align-items: center; */
}

 .testimonials-section-list {
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 16px;
     color: #ffffff;
     text-align: justify;
}
/* Título da secção */
 .testimonials-section h2 {
     text-align: center;
     font-size: 30px;
     margin: 50px 0px 20px;
     color: #FFCC00;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Carrossel de depoimentos */
 .testimonials-carousel-container {
     overflow: hidden;
     width: 100%;
     position: relative;
}

 .testimonials-carousel {
    display: flex;
    transition: transform 0.8s ease-in-out;
    gap: 20px; /* Espaço entre os slides */
    padding: 0 10px; /* Adiciona um pequeno padding para responsivo */
    box-sizing: border-box;
    width: 100%; /* Garante que o carrossel ocupe toda a largura */
}

/* Estilo para cada depoimento */
 .testimonial {
     flex: 0 0 100%; /* Cada depoimento ocupa 100% da largura disponível */
     min-width: 100%;
     box-sizing: border-box;
     padding: 20px 0px 20px 0px;
     display: flex;
     justify-content: center;
}

.testimonial img {
    width: 100%; /* Garante que a imagem ocupe toda a largura do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    object-fit: cover; /* Preenche sem cortes */
}

/* Indicadores de carrossel */
 .carousel-indicators {
     background-color: none;
     display: flex;
     justify-content: center;
     margin-top: none;
     margin-bottom: none;
}
 .carousel-indicators .dot {
     height: 6px;
     width: 6px;
     margin: 0 3px;
     background-color: #494949;
     border-radius: 50%;
     cursor: pointer;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .carousel-indicators .dot.active {
     background-color: #FFCC00;
}
/* Estilos responsivos */
 @media only screen and (max-width: 393px) and (max-height: 852px) {
   
   section#testimonials.testimonials-section {
     padding: 0px 30px;
     background: #2a2a2a;
     background: url("img/BG05.jpg") no-repeat center center/cover;
     min-height: none;
}

section#testimonials.testimonials-section img {
    width: 100%; /* Garante que a largura da imagem se ajuste ao contêiner */
    max-width: 400px; /* Define um limite máximo para evitar que fique muito grande */
   }
   
     .testimonial p {
         font-size: 14px;
    }
     div.testimonials-section-list li {
         margin: 0;
         width: 100%;
    }
     div.carousel-indicators {
         padding: none;
    }
     .testimonial {
         padding: 20px 0;
    }
     div.testimonial {
         margin: none;
    }
     .carousel-indicators .dot {
         height: 6px;
         width: 6px;
    }
}
 @media (max-width: 480px) {
     .testimonial p {
         font-size: 14px;
         line-height:1.4;
    }
     div.testimonials-section-list li {
         margin: 0;
         width: 100%;
         font-size: 15px;
    }
     div.carousel-indicators {
         padding: none;
    }
     .testimonial {
         padding: 20px 0;
    }
     div.testimonial {
         margin: none;
    }
     .carousel-indicators .dot {
         height: 5px;
         width: 5px;
    }
}
/* Secção de perguntas frequentes */
 section#faq.faq-section {
     padding: 0px 30px;
     background-color: #2a2a2a;
     background: url("img/BG05.jpg") no-repeat center center/cover;
     max-width: flex;
     margin: 0 auto;
     margin: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
}
 section#faq.faq-section {
     border-top: 1px solid transparent;
    /* Define uma borda inicial */
     border-bottom: 1px solid transparent;
    /* Define uma borda inicial */
     border-image-source: linear-gradient(to right, #2a2a2a, #ffcc00, #2a2a2a);
    /* Aplica o gradiente horizontalmente */
     border-image-slice: 1;
    /* Garante que o gradiente preencha a borda */
     padding-top: 0;
    /* Corrige o padding */
}
 div.faq-section {
     padding: 30px 0;
     display: block;
     unicode-bidi: isolate;
}
 .faq-section h2 {
     text-align: center;
     font-size: 30px;
     margin: 50px 0px 20px;
     color: #ffcc00;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
 .faq {
     max-width: 800px;
     margin: 0 auto;
}
 .faq h3 {
    font-size: 20px;
    background-color: #ffcc00;
    /* border: 1px solid #ffcc00; */
    color: #1f1f1f;
    padding: 15px 20px;
    cursor: pointer;
    margin: 0;
    margin-bottom: 15px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
}
 .faq h3:hover {
     background-color: #ffffff;
     color: #1f1f1f;
}
 .faq p {
     font-size: 16px;
     line-height: 1.6;
     padding: 0 15px 15px;
     color: #ffffff;
     margin: 0;
     display: none;
}
 .faq.active p {
     display: block;
}
 .faq i {
     margin-left: none;
     fill: #1967d2;
     min-width: none;
     transition: transform .3s, -webkit-transform .3s;
}
 .faq i.expanded {
     transform: rotateZ(45deg);
     -webkit-transform: rotateZ(45deg);
}
/* Estilos responsivos */
 @media (max-width: 768px) {
     .faq-section {
         padding: 30px 15px;
    }
     .faq-section h2 {
         font-size: 30px;
         margin-bottom: 30px;
    }
     .faq h3 {
         font-size: 18;
         padding: 15px;
    }
     .faq p {
         font-size: 16;
         padding: 0 15px 15px;
    }
}
 @media (max-width: 480px) {
     .faq-section {
         padding: 20px 10px;
    }
     .faq-section h2 {
         font-size: 30px;
         margin-bottom: 20px;
    }
     .faq h3 {
         font-size: 13px;
         padding: 10px;
    }
     .faq p {
         font-size: 13px;
         line-height: 1.3;
         padding: 0 10px 15px;
    }
}
/* Rodapé do site */

footer {
    background-color: #1f1f1f;
    color: #FFFFFF;
    padding: none;
    text-align: center;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.footer-container {
    padding: 30px 30px;
    display: flex;
    margin-bottom: 0px;
    flex-direction: row;
    align-items: flex-start;
}

.footer-column {
    flex: 1 1 30%;
    margin: 0 45px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column img {
    margin: 15px 0;
    max-width: 70%;
}

 .footer-column h3 {
     color: #FFCC00;
     margin-bottom: 15px;
}

.footer-column p, .footer-column i {
    margin: 0px;
    justify-items: center;
    max-width: 80%;
}

.footer-column p, .footer-column ul {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0px;
}
 .footer-column ul {
     list-style-type: none;
     padding: 0;
}
 .footer-column ul li {
     margin: 5px 0;
}
 .footer-column ul li a {
     color: #FFFFFF;
     text-decoration: none;
     transition: color 0.3s;
}
 .footer-column ul li a:hover {
     color: #FFCC00;
}
 .footer-column a {
     color: #FFFFFF;
     text-decoration: none;
}
 .footer-column a:hover {
     color: #FFCC00;
}

.contact-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

 .social-icons {
     display: flex;
     justify-content: center;
     margin-top: 10px;
}
 .social-icons a {
     color: #FFFFFF;
     margin: 0 10px;
     font-size: 20px;
     transition: color 0.3s;
}
 .social-icons a:hover {
     color: #FFCC00;
}

 div.footer-bottom {
     padding: 0px 30px;
     border-top: 1px solid transparent;
     border-image-source: linear-gradient(to right, #1f1f1f, #ffcc00, #1f1f1f);
     border-image-slice: 1;
     padding-top: 0;
}

 .footer-bottom p {
     margin: 30px;
     font-size: 10px;
     color: #ffcc00;
}
  @media only screen and (max-width: 767px) {
     
.footer-container {
    padding: 30px 30px;
    display: flex;
    margin-bottom: 0px;
    flex-direction: column;
    align-items: center;
}

.footer-column p, .footer-column i {
    margin: 0px;
    justify-items: center;
    max-width: 100%;
}

}

 @media only screen and (min-height: 800px) {
     
.footer-container {
    padding: 30px 30px;
    display: flex;
    margin-bottom: 0px;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-column p, .footer-column i {
    margin: 0px;
    justify-items: center;
    max-width: 100%;
}
    
}

/* Botão flutuante e botões de redes sociais */
 .float-button {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background-color: #FFCC00;
     color: black;
     border: none;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 30px;
     cursor: pointer;
     transition: background-color 0.3s;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     z-index: 1000;
}
 .float-button:hover {
     background-color: #ffffff;
     color: #1f1f1f;
}
 .float-button .fa-plus {
     transition: transform 0.3s;
}
 .float-button.active .fa-plus {
     transform: rotate(45deg);
}
 .social-buttons {
     display: none;
     flex-direction: column;
     position: fixed;
     bottom: 90px;
     right: 30px;
     gap: 10px;
     z-index: 1000;
}
 .social-buttons a {
     background-color: #ffcc00;
     color: black;
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     transition: background-color 0.3s;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     text-decoration: none;
    /* Remove a barra inferior */
}
 .social-buttons a:hover {
     background-color: #ffffff;
     color: #1f1f1f;
     text-decoration: none;
}
 .float-button.active ~ .social-buttons {
     display: flex;
}
/* Tooltip container */
 .tooltip {
     position: relative;
     display: inline-block;
}
/* Tooltip text */
 .tooltip .tooltiptext {
     visibility: hidden;
     border: none;
     font-size: 11px;
     width: 70px;
     background-color: #ffffff;
     color: #1f1f1f;
     text-align: center;
     border-radius: 5px;
     padding: 5px 0;
     position: absolute;
     z-index: 1;
     top: 50%;
     right: 125%;
    /* Posiciona o tooltiptext ao lado esquerdo do botão */
     transform: translateY(-50%);
     opacity: 0;
     transition: opacity 0.3s;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Tooltip arrow */
 .tooltip .tooltiptext::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 100%;
    /* Posiciona a seta no lado direito */
     margin-top: -5px;
    /* Centraliza a seta verticalmente */
     border-width: 5px;
     border-style: solid;
     border-color: transparent transparent transparent #ffffff;
    /* Cor da seta */
}
/* Show the tooltip text when you mouse over the tooltip container */
 .tooltip:hover .tooltiptext {
     visibility: visible;
     opacity: 1;
}
