/* Fonte bonita */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;

/* Fundo do site*/
    background: url('../medias/background essenza.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;

}

/* HEADER */
header {
    background: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #e91e63;
}

/* HERO */
.hero {

    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
}

/* BOTÃO */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #e91e63;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #c2185b;
}

/* PRODUTOS */
.section {
    padding: 40px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin: 10px 0;
}

/* FORM */
form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/*Produtos css */




/* TÍTULO */
.titulo-produtos {
    text-align: center;
    margin-top: 40px;
}

.titulo-produtos h2 {
    font-size: 2.5rem;
    color: #444;
}

.titulo-produtos p {
    color: #777;
}

/*FILTROS */
.filtros {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.filtros button {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: #f1f1f1;
    cursor: pointer;
    transition: 0.3s;
}

.filtros button:hover {
    background: #e91e63;
    color: white;
}

/*  GRID DE PRODUTOS*/
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 40px;
}

/*  CARD*/
.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* Hover bonito */
.card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Texto */
.card h3 {
    margin: 10px 0;
}

.card p {
    color: #555;
}

/* BOTÃO*/
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #e91e63;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #c2185b;
}

/*  RESPONSIVO*/
@media (max-width: 600px) {
    .cards {
        padding: 20px;
    }

    .titulo-produtos h2 {
        font-size: 2rem;
    }
}

/* Contatos css*/ 

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    background: #333;
    transition: 0.3s;
}

/* GitHub */
.social-btn:first-child {
    background: #000;
}

/* LinkedIn */
.social-btn:last-child {
    background: #0a66c2;
}

.social-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Promo css*/

/* preço antigo */
del {
    color: #999;
}

/* preço promocional */
strong {
    color: #e91e63;
    font-size: 1.2rem;
}