/* reset css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    cursor: default;
}

a {
    color: inherit;
    text-decoration: none;
}

/* geral */
:root {
    --cor-fundo-secundaria: rgb(0, 82, 180);
    --cor-texto-secundaria: #fff;
    --cor-texto-titulo-produto: rgb(10, 47, 89);
}

body {
    font-family: "Inter", sans-serif;
}

/* header */
header {
    background-color: var(--cor-fundo-secundaria);
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.logo-master img {
    width: 40px;
    height: auto;
}

header span {
    color: var(--cor-texto-secundaria);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-left: 12px;
}

nav a {
    color: var(--cor-texto-secundaria);
    cursor: pointer;
}

nav a:hover {
    color: var(--cor-texto-titulo-produto);
}

/* conteudo principal main */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

main::after {
    content: "";
    display: table;
    clear: both;
}

.nav {
    display: flex;
    gap: 32px;
    font-size: 16px;
    text-transform: capitalize;
    justify-content: center;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    font-size: 18px;
    color: #fff;
    padding-block: 16px;
    cursor: pointer;
}

.nav-list a:hover {
    color: rgb(10, 47, 89);
}


.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #fff;
    cursor: pointer;
}

.hamburger::after,
.hamburger::before {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}


.produtos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
}

.produto {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(10, 47, 89);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.produto:hover {
    transform: scale(1.05);
}

.produto img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.produto h1 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: rgb(10, 47, 89);
}

.produto p {
    font-size: 1rem;
    color: #333;
}


.sobre {
    position: relative;
}

.section__text__p1 {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

#about {
    clear: both;
    padding: 50px 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

#about .title {
    font-size: 24px;
    margin: 10px 0;
}

#about .text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.about-pic {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    border-radius: 2rem;
    display: block;
    object-fit: cover;
    margin-bottom: 2rem;
}

#contact {
    clear: both;
    padding: 50px 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

#contact .title {
    font-size: 24px;
    margin: 10px 0;
}

#contact a {
    margin-right: 15px;
}

#contact .whatsapp-icon {
    font-size: 48px;
    color: #63e6be;
    transition: transform 0.2s;
    cursor: pointer;
}

#contact .whatsapp-icon:hover {
    transform: scale(1.2);
}

#contact .instagram-icon {
    font-size: 48px;
    color: #E1306C;
    transition: transform 0.2s;
    cursor: pointer;
}

#contact .instagram-icon:hover {
    transform: scale(1.2);
}

.sobre,
.contato {
    clear: both;
    padding: 50px 0;
    font-family: "Poppins", sans-serif;
}

footer {
    height: 84px;
    padding: 33px 0;
    background-color: var(--cor-fundo-secundaria);
}

footer p {
    color: var(--cor-texto-secundaria);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}