/* RESET */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HEADER */
header {
    background-color: #1d1d1f;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    color: white;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f7;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* HOME SECTION */
.home {
    margin-top: 100px; /* espaço por causa do header fixo */
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.home h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
}

.home p {
    font-size: 22px;
    color: #6e6e73;
    margin-bottom: 25px;
}

/* BOTÕES */
.buttons {
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #0071e3;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #005bb5;
}

.btn-secondary {
    border: 1px solid #0071e3;
    color: #0071e3;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #0071e3;
    color: white;
}

/* IMAGEM */
.image-container img {
    max-width: 400px;
    width: 100%;
}
/* CONTAINER PAI: Define as colunas lado a lado */
.products {
    display: grid;
    /* Isso cria colunas automáticas: elas ficam lado a lado enquanto houver espaço */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; /* Espaço entre os produtos */
    padding: 50px 5%;
    background-color: #f5f5f7;
}

/* CARD DO PRODUTO: Garante que o conteúdo interno fique um embaixo do outro */
.product-card {
    display: flex;
    flex-direction: column; /* Alinha itens verticalmente */
    align-items: center;    /* Centraliza imagem e texto */
    text-align: center;
}

/* IMAGEM: Ajusta o tamanho para não estourar */
.product-card img {
    width: 100%;
    max-width: 400px; /* Ajuste conforme desejar o tamanho da foto */
    border-radius: 20px;
    margin-bottom: 20px;
}

/* TEXTOS */
.product-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    padding: 0; /* Removi aquele padding de 10% que estava empurrando o texto */
}

.text {
    font-size: 18px;
    color: #6e6e73;
    font-weight: 400;
    max-width: 80%;
    padding: 2rem; /* Para o texto não ficar largo demais */
}
.heading h1{
    padding: 3rem 3rem;
    font-size: 30px;
}

.heading h1 span{
    color: #898888;
}