:root {
    --primary-color: #000000;
    --text-color: #260949;
    --background-light: #FFFCF6;
    --background-dark: #E6E6E6;
    --primary-font-family: 'Arial', sans-serif;
    --text-font-family: 'Roboto Condensed', sans-serif;
}


body{
    font-family: var(--primary-font-family);
    margin: 0;
    padding: 0; 
}

header{
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a{
    text-decoration: none;
    color: white;
}

header img{
    margin-left: 1rem;
    height: 100px;
    width: auto;
}

.nav-pages a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-pages a:hover, .nav-pages a:focus {
    color: #FFD700;  /* Um amarelo ouro que será visível ao passar o mouse ou focar */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8),
                 0 0 16px rgba(255, 215, 0, 0.6),
                 0 0 24px rgba(255, 215, 0, 0.4),
                 0 0 32px rgba(255, 215, 0, 0.3),
                 0 0 40px rgba(255, 215, 0, 0.2);
    /* Ajuste das sombras para criar um gradiente de brilho amarelo ao redor do texto */
}

.nav-home{
    margin-right: 1rem;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-light);
    flex-direction: column;
}

.banner-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    margin-bottom: 1rem;
}

.banner{
    justify-content: center;
    width: 80%;
}

.banner-title{
    font-size: 5rem;
    color: #FFD700;
}

footer{
    background-color: black;
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
}

.info{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--background-dark);
    flex-direction: column;
    text-align: center;
    color: var(--text-color);
}

.info p{
    font-size: 1rem;
    font-weight: 400;
    width: 80%;
}

.form-container {
    width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #666;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; 
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #000000;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #ffe100;
    color: black;
}

/* OUTRA PAGINA */

.who{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    color: var(--text-color);
    flex-direction: column;
}


.we{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    color: var(--text-color);
    gap: 3rem;
    list-style: none;
}

.we ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.person-name{
    font: normal normal 2rem var(--text-font-family);
    margin-bottom: 0;
}

.person-tag{
    font-size: .8rem;
    margin-top: 0;
}

.we ul li{
    text-align: center;
}

.who-title{
    font: normal normal 3rem var(--text-font-family);
}

.img-perfil {
    transition: transform 0.3s ease-in-out;
    border-radius: 50%; /* Mantém o estilo circular */
    width: 18rem;
    height: 18rem;
}

.img-perfil:hover, .img-perfil:focus {
    transform: scale(1.1); /* Aumenta o tamanho da imagem em 10% */
}


.social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
}

.linkedin{
    height: 3rem;
    width: 3rem;
    filter: grayscale(100%) brightness(0);
}

.linkedin:hover, .linkedin:focus {
    transform: scale(1.1); /* Aumenta o tamanho da imagem em 10% */
}

.email{
    height: 3rem;
    width: 3rem;
    filter: grayscale(100%) brightness(0);
}

.email:hover, .email:focus {
    transform: scale(1.1); /* Aumenta o tamanho da imagem em 10% */
}

.contact-card {
    max-width: 340px;
    margin: 0 auto 20px auto;
    padding: 0 20px 20px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease-in-out;
    text-align: center;
}

.card-content {
    padding: 15px;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.email-link {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.contact-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.email-link:hover {
    color: #307ABD;
}


.history{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 3rem;
    background-color: white;
}

.history h2{
    margin-left: 5vw;
}

.history p{
    width: 80%;
}

.hist1{
    grid-column: 1/2;
    grid-row: 2/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hist2{
    grid-column: 2/3;
    grid-row: 2/3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header img{
        height: 65px;
        margin-left: 0;
    }

    .banner-title{
        font-size: 2rem;
        margin-bottom: 0;
    }

    .banner {
        width: 100%;
    }

    .form-container {
        width: 80%;
        margin: 20px;
    }

    button {
        padding: 12px;
    }
    
    .we{
        gap: 1rem;
    }

    /* OUTRA PAGINA */
    .who-title{
        font: normal normal 2rem var(--text-font-family);
    }

    .img-perfil{
        width: 9rem; 
        height: 9rem;
    }

    .social{
        gap: 1.5rem;
    }

    .linkedin{
        height: 2rem;
        width: 2rem;
    }

    .email{
        height: 2rem;
        width: 2rem;
    }

    .person-name{
        font-size: 2rem;
    }

    .person-tag{
        font-size: .8rem;
        margin-top: 1rem;
    }
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 600px) {
    .hamburger {
        display: block;
    }

    .nav-pages {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-out;
        background-color: var(--primary-color); /* Cor de fundo para o menu, ajuste conforme necessário */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px; /* Ajuste a posição conforme necessário */
        left: 0;
    }
    
    .nav-pages.open {
        max-height: 300px; /* Ajuste isso baseado no conteúdo do seu menu */
    }
    

    .nav-pages a {
        padding: 10px;
        color: white;
        text-decoration: none;
        display: block;
        text-align: center;
    }
}
