* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppinsb';
    src: url('fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Poppinsi';
    src: url('fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #bcbdb7;
    color: #333;
}

a {
    text-decoration: none;
    font-size: 16px;
    color: #1b1c21;
    margin-bottom: 10px;
}

header {
    background-color: #1b1c21;
    color: #fff;
    padding: 0;
    margin: 0;
}

.hero {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-left: -40px;
    margin-top: 5px;
}

.logo img {
    height: 50px;
    margin-left: 40px;
    margin-top: 5px;
}

nav {
    position: relative;
}

.nav-list {
    list-style-type: none;
    display: flex;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list li a {
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #1b1c21;
}

.nav-list li a:hover {
    background-color: #1b1c21;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1rem;
}

.nav-toggle:hover {
    color: #bcbdb7;
}

.quemsomos {
    color: #ffffff;
    font-family: 'Poppins';
    position: relative;
}

.quemsomos:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #bcbdb7;
    margin: 0 2px;
}

.inicio {
    color: #ffffff;
    font-family: 'Poppins';
    position: relative;
}

.inicio:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #bcbdb7;
    margin: 0 2px;
}

.portfolio {
    color: #ffffff;
    font-family: 'Poppins';
    position: relative;
}

.portfolio:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #bcbdb7;
    margin: 0 2px;
}

.orcamento {
    color: #ffffff;
    font-family: 'Poppins';
    position: relative;
}

.orcamento:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #bcbdb7;
    margin: 0 2px;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background-color: #1b1c21;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        text-align: center;
    }

    @media (max-width: 768px) {
        .hero {
            height: 15vh;
        }
    }

    @media (max-width: 480px) {
        .contact-images img {
            max-height: 80px;
    }
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .nav-toggle {
        display: block;
    }
}

main {
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 10px;
    margin-top: 30px;
    color: #000000;
    font-family: 'Poppinsb', sans-serif;
}

.lista-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.lista-coluna {
    list-style-position: inside;
    list-style-type: disc;
    margin: 0;
    padding: 0;
}

.lista-coluna li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .lista-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.depoimentos-icon {
    margin: 0 10px 10px 0;
    width: 50px;
    vertical-align: top;
}

.depoimentos {
    background-color: #bcbdb7;
    padding: 20px 0;
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.depoimentos-card {
    background-color: #d9d9d9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 90%;
}

.depoimentos h1 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: 'Poppinsb', sans-serif;
    color: #333;
}

.depoimentos h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.depoimentos-card p {
    font-family: 'Poppins';
    margin-bottom: 15px;
    color: #555;
}

.depoimentos-card h3 {
    font-size: medium;
    font-weight: bold;
    color: #616161;
    text-align: right;
}

@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

.depoimentos-icon {
    margin: 0 10px 10px 0;
    width: 50px;
    vertical-align: top;
}

.projetos-icon {
    margin: 0 5px 5px 0;
    width: 30px;
    vertical-align: top;
    border-radius: 20px;
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.3);
}

.formulario-container {
    padding: 30px;
    background-color: #dedede;
    text-align: center;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.formulario .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.formulario input,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

.nome {
    flex: 2;
}

.cpf {
    flex: 1;
}

.logradouro {
    flex: 2;
}

.cidade {
    flex: 1.5;
}

.uf {
    flex: 0.4;
}

.cep {
    flex: 1.1;
}

.bairro {
    flex: 2;
}

.numero {
    flex: 0.8;
}

.complemento {
    flex: 1.2;
}

.email,
.telefone,
.whatsapp {
    flex: 1;
}

textarea {
    width: 100%;
    height: 100px;
}

button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: gray;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.modal.hidden {
    visibility: hidden;
    opacity: 0;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .formulario-container {
        padding: 20px;
    }

    .formulario .form-group {
        flex-direction: column;
    }

    .nome,
    .logradouro,
    .bairro {
        flex: 1;
    }

    .cpf,
    .cidade,
    .uf,
    .cep,
    .numero,
    .complemento,
    .email,
    .telefone,
    .whatsapp {
        flex: 1;
    }

    textarea {
        height: 120px;
    }

    button {
        width: 100%;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .formulario-container {
        padding: 15px;
    }

    .formulario .form-group {
        flex-direction: column;
    }

    .nome,
    .logradouro,
    .bairro,
    .cpf,
    .cidade,
    .uf,
    .cep,
    .numero,
    .complemento,
    .email,
    .telefone,
    .whatsapp {
        flex: 1 1 100%;
    }

    textarea {
        height: 140px;
    }

    button {
        padding: 12px 0;
    }
}

.projetos {
    background-color: #bcbdb7;
    padding: 20px 0;
    text-align: center;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.quote-new {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    background-color: #bcbdb7;
}

.quote-new .btn {
    display: inline-block;
    background-color: #d9d9d9;
    color: #333;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.quote-new .btn:hover {
    background-color: #555;
    color: #fff;
}

@media (max-width: 768px) {
    .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.projetos-icon {
    width: 80%;
    height: auto;
    padding-top: 5px;
    padding-left: -20%;
    padding-right: -20%;
}

.projetos h1 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: 'Poppinsb', sans-serif;
    color: #333;
}

.projetos h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}


@media (max-width: 992px) {
    .projetos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projetos-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: #333;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    text-align: center;
}

.quote-section {
    background-color: #121212;
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

.quote-section h2 {
    margin: 0;
    font-size: 24px;
    color: #fff;
    font-family: 'Poppinsb', sans-serif;
    margin-top: 5px;
}

.quote-section .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d9d9d9;
    color: #000000;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppinsb';
    margin-top: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: none;
}

.quote-section .btn:hover {
    background-color: #555;
    color: #fff;
}

.contact-section {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #dcdcdc;
    color: #333;
}

.contact-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 250px;
}

.contact-info {
  text-align: center;
  max-width: 400px;
}

.contact-info h2 {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.contact-info p {
    margin: 5px 0;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.contact-info .underline {
    text-decoration: underline;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.contact-images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

footer .copyright {
    background-color: #333;
    color: #999;
    padding: 10px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

@media (max-width: 1024px) {
    .quote-section {
        flex-direction: column;
        text-align: center;
    }

    .quote-section h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    .quote-section .btn {
        width: 100%;
        padding: 12px;
    }

    .contact-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .contact-info h2 {
        font-size: 1.1rem;
    }

    .contact-info {
        flex: 2;
        text-align: left;
        min-width: 250px;
    }

    footer .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 15px;
    }

    .quote-section h2 {
        font-size: 1rem;
    }

    .quote-section .btn {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .contact-info p,
    .contact-info h2 {
        font-size: 0.9rem;
    }

    .contact-images,
    .contact-info {
        max-width: 100%;
        width: 100%;
    }

    footer p {
        font-size: 0.7rem;
    }

    .contact-info {
        margin-top: 20px;
        text-align: center;
    }    
}