/* Importando fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}


header {
    background: linear-gradient(to right, #243447, #0e1724);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo {
    width: 120px;
    height: auto;
}

header h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase; 
}

/* Navegação */
nav {
    display: flex;
    align-items: center;
    position: relative;
}

/* Ícone do menu mobile */
.menu-icon {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

/* Menu padrão */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;

}

.menu li {
    margin-right: 20px;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    padding: 10px 15px;
    transition: 0.3s;
}

.menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff; 
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}

.conteudo {
    position: relative;
    z-index: 1;
}

.btn {
    background: #ff6600; 
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #cc5500;
}

/*Sobre*/
#sobre {
    background-color: #f5f5f5; 
    padding: 30px 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); 
    max-width: 900px; 
    margin: 40px auto; 
    font-family: 'Poppins', sans-serif; 
}

.centralizar-sobre {
    text-align: center; 
}

#sobre h2 {
    font-size: 2.5em; 
    color: #333; 
    margin-bottom: 25px; 
    font-weight: bold; 
}

#sobre p {
    font-size: 1.2em; 
    color: #555; 
    line-height: 1.8; 
    margin-bottom: 20px; 
}

#sobre p:last-child {
    font-weight: bold; 
    color: #222; 
}

#sobre p::first-letter {
    font-size: 1.5em; 
    font-weight: bold; 
    color: #333; 
}

/*Galeria*/
#galeria {
    padding: 40px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.centralizar-galeria h2 {
    font-size: 2.5em; 
    color: #333; 
    font-weight: bold; 
    margin-bottom: 10px;
}

#galeria-p {
    font-size: 1.8em; 
    color: #444; 
    line-height: 1.8rem; 
    margin-bottom: 30px; 
    font-style: italic; 
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
}

.grid-galeria img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.grid-galeria img:hover {
    transform: scale(1.05);
}

.galeria-item {
    text-align: left;
}

.galeria-item img {
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.galeria-item img:hover {
    transform: scale(1.05);
}

.galeria-item p {
    /*font-style: italic; 
    font-size: 1rem;
    color: #333;
    margin-top: 10px;*/
    font-size: 1.2em; 
    color: #444; 
    line-height: 1.5rem; 
    margin-bottom: 30px; 
    font-style: italic; 
}

#linha {
    width: 100%;
    border: 2px solid #007BFF;
}

/*Depoimentos*/
#depoimentos {
    background-color: #f5f5f5;
    padding: 60px 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    max-width: 900px; 
    margin: 40px auto; 
    font-family: 'Poppins', sans-serif; 
    text-align: center; 
}

.centralizar-depoimentos h2 {
    font-size: 2.5em; 
    color: #333; 
    margin-bottom: 25px; 
    font-weight: bold; 
}

.centralizar-depoimentos p {
    width: 80%;
    font-size: 1.2em; 
    color: #444; 
    line-height: 1.8rem; 
    margin-bottom: 30px; 
    font-style: italic; 
    background-color: #f5f5f5; 
    padding: 20px; 
    border-left: 5px solid #007BFF; 
    display: inline-block; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

.centralizar-depoimentos p br {
    display: block; 
    margin-top: 10px; 
    font-weight: bold; 
    color: #222; 
}

/*Contato*/
#contato {
    background-color: #243447; 
    padding: 60px 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center; 
    color: #ffffff; 
    max-width: 900px; 
    margin: 40px auto; 
    font-family: 'Poppins', sans-serif;
}


.conteudo-contato h1 {
    font-size: 2.5em; 
    font-weight: bold; 
    margin-bottom: 20px; 
}
.conteudo-contato p {
    font-size: 1.2em; 
    margin-bottom: 30px; 
}
.contact h1 {
    font-size: 2.5em; 
    font-weight: bold; 
    margin-bottom: 20px; 
}

.contact p {
    font-size: 1.2em; 
    margin-bottom: 30px; 
}


ul {
    list-style: none;
    padding: 0;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.whatsapp-button {
    display: inline-block; 
    background-color: #25D366; 
    color: #000; 
    padding: 15px 25px; 
    font-size: 1.2em; 
    font-weight: bold; 
    border-radius: 8px; 
    text-decoration: none; 
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1EBE5D; 

}


/*media nova*/
@media (max-width: 768px) {

    header > h1 {
        display: none;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        padding: 15px;
        border-radius: 5px;
    }

    .menu-icon {
        display: block;
    }

    .menu.ativo {
        display: flex !important;
    }


    /*Sobre*/
    #sobre {
        padding: 40px 15px;
    }
    
    #sobre h2 {
        font-size: 2em;
    }

    #sobre p {
        font-size: 1em;
    }

    /*Depoimentos*/
    #depoimentos {
        padding: 40px 15px;
    }
    
    .centralizar-depoimentos h2 {
        font-size: 2em;
    }

    .centralizar-depoimentos p {
        font-size: 1em;
        padding: 15px;
    }

    /*Contato*/
    #contato {
        padding: 40px 15px;
    }

    .contact h1 {
        font-size: 2em;
    }

    .contact p {
        font-size: 1em;
    }

    .whatsapp-button {
        font-size: 1em;
        padding: 12px 20px;
    }

}

@media (max-width: 450px) {

    #sobre, #depoimentos, #contato {
        width: 86%;
    }

    .conteudo-contato h1 {
        font-size: 9vw;
    }
}


