html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body, main {
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
 }

:root{
    --primary-color: #e1b239;
    --secondary-color: #1b2232;
    --third-color: #8d1818;
    --fourten-color: #000000;
    --text-color: #ffffff;
    --background-color: #f4f5fa;
}

.header nav ul {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    flex-wrap: wrap;
    list-style: none;
    padding: 20px;
    gap: 20px;
    margin: 0;
    background: #fff;
}
.header nav ul li a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--fourten-color);
    padding: 10px 10px 2px 10px;
    font-size: 20px;
    transition: border-bottom 0.2s;
}
.header nav ul li a:hover {
    color: var(--primary-color);
    border-bottom: #e1b239 solid 1px;
}

.fundo {
    background-image: linear-gradient(180deg, #000 70%, #e1b239 100%);
    padding: 20px;
}
.fundo_2 {
    background-image: linear-gradient(180deg, #fff 20%, #e1b239 100%);
    text-align: center;
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fundo_2 h1 {
    font-size: 40px;
    margin-bottom: 80px;
    color: #000;
    padding-top: 50px;
    margin-top: 0;
}

.sumary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 24px;
}
.sumary-text h2 {
    font-size: 80px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: left;
    margin-left: 10px;
    margin-top: 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.sumary-text p {
    font-size: 20px;
    margin: 10px 30px 0 10px;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.sumary img {
    width: 100%;
    height: 400px;
    max-width: 400px;
    display: block;
    object-fit: cover;
    margin: 0 auto;
    padding: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 4px solid #e1b239; 
    margin-top: 50px; 
}
.sumary img:hover {
    transform: scale(1.05);
}
.box-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 100px; 
    margin-bottom: 60px; 
}

.box-imagem {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    background-color: #000;
    border-radius: 12px;
    box-sizing: border-box; 
    text-align: center;
    width: 50%;
    height: 350px; 
    box-shadow: 0px 25px 20px rgba(0,0,0,1);
    min-width: 400px; 
    transition: transform 0.3s;
    margin-bottom: 100px;
    margin-top: 70px;
}
 

.box-imagem h2{
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 30px;
    color: #e1b239;
    padding: 0 16px; 
}
.box-imagem img {
    width: 100%;
    height: 180px;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    margin: 0;
    display: block;
}
.box-imagem p {
    padding: 0 16px;  
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
}
.articles-content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 80px 16px; 
    width: 100%;
    margin: 0 auto 0px auto;
    gap: 32px;
    max-width: 1200px;
    background-color: #f4f5fa;
    border-radius: 20px;
}
.articles-content article:hover,
.article1:hover, .article2:hover, .article3:hover{
    transform: scale(1.04);
    transition: transform 0.3s;
}
.articles-content h2{
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    margin-top: 0;
    width: 90%;
}
.articles-content p{
    font-size: 20px;
    line-height: 1.6;
}
.article1, .article2, .article3 {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 5px;
    margin: 0;
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: var(--fourten-color);
}
.article1, .article2, .article3, article h3{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrapper-container{
    background-image: linear-gradient(180deg, #e1b239 40%, #fff 100%);
    width: 100%;
    margin: 0;
    padding: 0;
}
.feedback-clientes .content {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 50px;
    margin: 0 auto;
    width: 90%;
    padding: 0px 50px;
    
}
.feedback-clientes h2{
    margin: 100px 0;
    font-size: 40px;
    text-align: center;
    width: 100%;
}
.feedback-clientes .content_1:hover, .content_2:hover, .content_3:hover, .content_4:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}


blockquote {
    padding: 0px;
    text-align: center;
    margin: 20px 0 0px;
    font-style: italic;
    color: #333;
    border-radius: 8px;
    border-bottom: #e1b239 4px solid;
    border-top: #e1b239 4px solid;
    width: 50%;
    background-image: linear-gradient(180deg, #fff 70%, #e1b239 100%);
}
blockquote p {
    margin: 0;
    padding: 20px;
    font-size: 20px;
    line-height: 1.1;
}
blockquote .content_1, .content_2, .content_3, .content_4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
}
blockquote img {
    max-width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 15px;
    object-fit: cover;
    display: block;
}

.content h1 {
    font-size: 60px;
    margin-bottom: 8px;
    text-align: center;
}
.content h2 {
    font-size: 40px;
    margin-bottom: 8px;
    text-align: center;
}

h1, h2, h3 {
    font-family: "roboto", sans-serif;
}




.aside-flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    padding: 40px 16px;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 32px;
}
.aside-info{
    flex: 1;
    text-align: left;
    margin-top: 50px;
    min-width: 100px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fourten-color);
}
aside iframe {
    flex: 1;
    max-width: 100%;
    height: 300px;
    width: 100%;
    margin-top: 50px;
    display: block;
}
footer {
    text-align: center;
    padding: 16px 0;
    background: #f0f0f0;
    margin-top: 32px;
}

summary::-webkit-details-marker {
    font-size: 1.5em; 
    color: var(--fourten-color); 
}

summary::marker {
    font-size: 1.5rem; 
    color: var(--fourten-color); 
}

@media (max-width: 768px) {
    .header nav ul {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
    .header nav ul li a {
        font-size: 18px;
        margin: 0;
    }
    .fundo {
        padding: 10px;
        margin-top: 50px;
    }
   
    .fundo_2 {
        margin-top: 20px;
        padding: 20px;
    }
    .fundo_2 h1 {
        font-size: 30px;
        margin-bottom: 40px;
        padding-top: 20px;
        margin-right: 20px;
    }
    .sumary {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .sumary-text h2 {
        font-size: 10px;
        margin-bottom: 20px;
        text-align: center;
        margin-left: 0;
    }
    .sumary-text p {
        font-size: 18px;
        margin: 10px 0;
        text-align: center;
    }
    .sumary img {
        width: 80%;
        height: auto;
        max-width: 300px;
        padding: 20px;
        margin-top: 20px;
    }
    .box-list {
        gap: 20px;
        margin-bottom: 30px;
        margin-left: 0px;
        margin-right: 50px;
        padding: 30px;
    }
    .box-imagem {
        max-width: 100%;
        width: 100%;
        min-width: auto;
        height: auto;
        margin-bottom: 50px;
        margin-top: 30px;
    }
    .box-imagem h2 {
        font-size: 20px;
        margin-top: 20px;
        
    }
    .box-imagem p {
        font-size: 14px;
        padding: 0 10px;
    }
    .articles-content {
        padding: 40px 10px;
        gap: 20px;
    }
    .articles-content h2 {
        font-size: 24px;
    }
    .articles-content p {
        font-size: 18px;
    }
    .article1, .article2, .article3 {
        width: 100%;
        max-width: 300px;
    }
    .feedback-clientes .content {
        flex-direction: column;
        padding: 0 20px;
        gap: 20px;
    }
    .feedback-clientes h2 {
        font-size: 30px;
        margin: 50px 0;
    }
    blockquote {
        width: 90%;
    }
    blockquote p {
        font-size: 18px;
        padding: 15px;
    }
    blockquote img {
        max-width: 100px;
        height: 100px;
    }
    .content h1 {
        font-size: 40px;
    }
    .content h2 {
        font-size: 30px;
    }
    .aside-flex {
        flex-direction: column;
        width: 95%;
        padding: 20px 10px;
        gap: 20px;
    }
    .aside-info {
        margin-top: 20px;
        font-size: 14px;
    }
    aside iframe {
        height: 250px;
        margin-top: 20px;
    }
    footer {
        padding: 10px 0;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .fundo_2 h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .sumary-text h2 {
        font-size: 40px;
    }
    .sumary-text p {
        font-size: 16px;
    }
    .box-imagem h2 {
        font-size: 18px;
    }
    .box-imagem p {
        font-size: 13px;
    }
    .articles-content h2 {
        font-size: 20px;
    }
    .articles-content p {
        font-size: 16px;
    }
    .feedback-clientes h2 {
        font-size: 24px;
        margin: 30px 0;
    }
    blockquote p {
        font-size: 16px;
        padding: 10px;
    }
    .content h1 {
        font-size: 30px;
    }
    .content h2 {
        font-size: 24px;
    }
    .aside-info {
        font-size: 13px;
    }
    aside iframe {
        height: 200px;
    }
}
