@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.remixicon.com/2.5.0/remixicon.css');


*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

img{
    width: 100%;
    display: flex;
}

a{
    text-decoration: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #18181B;
}

nav{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-container {
    text-align: center; 
}

.nav-logo {
    max-width: 130px;
    margin-top: 2%;
    display: inline-block; 
}

.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.link a{
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
}

.link a::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #1d4ed8;
    transition: all 0.3s ease;
}

.link a:hover::after{
    width: 70%;
}

.btn{
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #4a64ab;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover{
    background-color: #1e40af;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #feba00eb;
    z-index: -100;
}
header .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5%;
}

header .content h4 {
    margin-top: center;
    margin-bottom: 2rem;
    color: #cfcfcf;
    font-size: 1rem;
    font-weight: 600;
}

header .content h4:hover {
    font-size: 1rem;
    font-weight: 600;
}


/* progress bar */
.progress-container {
    width: 80%;
    max-width: 600px; /* Limita a largura máxima da barra de progresso */
    height: 34px;
    border: 2px solid #edb602; /* Cor e espessura da borda */
    box-shadow: 0 0px 10px #bc9000; /* Sombra */
    background-color:  #000000a1;
    border-radius: 25px;
    margin: 0px auto; /* Centraliza horizontalmente e remove margem superior */
    position: relative;
    top: -80px; /* Ajuste para mover para cima */
    padding: 0px;
    margin-top: 10%;
    margin-left: -0.5%;
}

/* progress bar */
.progress-bar {
    width: 80%; /* Largura inicial da barra de progresso */
    max-width: 600px; /* Limita a largura máxima da barra de progresso */
    height: 31px;
    box-shadow: 0 0px 30px #9090079b; /* Sombra */
    box-shadow: 0 0px 20px #9d980299; /* Sombra */
    background-color: #feba00eb;
    border-radius: 24px;
    text-align: center;
    line-height: 30px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
}
/* ----fim progress bar----- */


header .content h1{
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    text-align: center;
    align-items: center;
}

header .content h1 span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #ffbd08;
}


header .content p{
    margin-bottom: 2rem;
    color: #ccc;
}

/* Image */
/* header .image{
    position: relative;
}

header .image::before{
    content: "o";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 38rem;
    font-weight: 400;
    line-height: 20rem;
    color: #1d4ed8;
    opacity: 0.2;
    z-index: -100;
}

header .image img{
    max-width: 600px;
    margin: auto;
} */


/* H2 "INFORMAÇÕES DISPONÍVEIS" */
section .header{
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    font-size: 2.55rem;
    font-weight: 600;
}
/* Tabelas dos contactos */
.features {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.features div {
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

.features div:hover {
    transform: scale(1.1); /* Aplica o efeito de zoom */
}

/* Personalização do icon "Localização" */
/* Estilos para os ícones */
.location-icon {
    color: #ffffff;
    font-size: 29px;
}

.phone-icon {
    color: white;
    font-size: 29px;
}

.email-icon {
    color: white;
    font-size: 29px;
}

/* Personalização da cor do bg, "informações disponíveis" */
.features .card{
    background-color: #27272a;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Personalização da cor da borda, "informações disponíveis" */
.features .card:hover{
    background-color: #323232;
    border-color: #ffc300;
}

/* Personalização de cor bg icon "informações disponíveis" */
.features .card span{
    display: inline-block;
    background-color: #bc9000;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    border-radius: 5px;
}

.features .card h4{
    margin-bottom: 0.5rem;
    color: #ffbd08;
    font-size: 1.2rem;
    font-weight: 600;
}

/*  */
.features .card p{
    color: #ccc;
    margin-bottom: 1rem;
}

/* Join Now / Saber mais */
.features .card a{
    color: #fff;
    transition: all 0.3s ease;
}

.features .card a:hover{
    color: #ffbd08;
}

/* texto - subtitulo */
.sub-header{
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: #cccccc;
}

.pricing{
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing .card{
    padding: 3rem 2rem;
    background-color: #27272a;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing .card:hover{
    background-color: #323232;
    border-color: #fff;
}

.pricing .card .content{
    flex: 1;
    margin-bottom: 2rem;
}

.pricing .card h4{
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.pricing .card h3{
    color: #fff;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 2px dashed #fff;
}

.pricing .card p{
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing .card p i{
    color: #ccc;
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.pricing .card button{
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.pricing .card button:hover{
    background-color: #1e40af;
    border-color: #1e40af;
}

footer{
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 2rem;
}

footer .column .logo{
    max-width: 100px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

footer .column .logo:hover{
    transform: scale(1.1); /* Aplica o efeito de zoom */
}

footer .column p{
    color: #ccc;
    margin-bottom: 2rem;
}

footer .column .socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .column .socials a{
    color: #ccc;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 1.25rem;
    border-radius: 100%;
    transition: all 0.3s ease;
}

footer .column .socials a:hover{
    color: #fff;
    background-color: #fcc100;
    border-color: #000000;
}

footer .column h4{
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

footer .column > a{
    display: block;
    color: #ccc;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

footer .column > a:hover{
    color: #ffc400;
}


.copyright {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    color: #fcc100;
    font-size: 0.8rem;
    text-align: center;
}


.styled-link {
    color: #fff;
    text-decoration: none;
    padding-left: 1%; 
}

.styled-link:hover {
    color: #fcc100;
    text-decoration: none;
}
/* 
@media (width < 900px){
    .nav-links{
        display: none;
    }
    header{
        grid-template-columns: repeat(1, 1fr);
    }

    header .image{
        grid-area: 1/1/2/2;
    }
    .features{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing{
        grid-template-columns: repeat(2, 1fr);
    }
    footer{
        grid-template-columns: 1fr 200px;
    }
}

@media (width < 900px){
    header .image::before{
        display: none;
    }

    .features{
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing{
        grid-template-columns: repeat(1, 1fr);
    }

    footer{
        grid-template-columns: 1fr 150px;
    }
} */


/* Unify the media queries for better maintainability */

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    header {
        grid-template-columns: repeat(1, 1fr);
    }

    header .image {
        grid-area: 1 / 1 / 2 / 2;
    }

    header .image::before {
        display: none;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        grid-template-columns: 1fr 200px;
    }

    /* Specific styles for the new section */
    .new-header .content {
        text-align: center;
        padding: 20px;
    }

    .new-header .content h1 {
        font-size: 1.5em;
    }

    .new-header .content h4 {
        font-size: 1em;
    }

    .new-header .progress-container {
        margin-top: 10px;
    }

    .new-header .progress-bar {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        grid-template-columns: 1fr 150px;
    }

    /* Adjustments for smaller screens */
    .new-header .content h1 {
        margin-top: 10%;
        font-size: 1.9em;
        font-family: 'Poppins', sans-serif;
        color: #ffbd08; 
        text-align: center;
        margin-right: 4%;
    }

    .new-header .content h4 {
        font-size: 1.2em;
        margin-bottom: 30%;
        margin-top: 5%;
    }

    .new-header .content div {
        font-size: 1.3em;
        margin-bottom: 30%;
        margin-left: 10%;
        margin-top: 7%;
    }

    .new-header .content h3 {
        font-size: 1.0em;
        margin-bottom: 10%;
    }
}
