@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');

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff9ea;
}

section {
    padding: 28px 8%;
}

p {
    font-size: 1.2rem;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcb45;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: #f8d477;
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fff;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}







.social-media-buttons-final {
    display: flex;
    gap: 10rem;
    margin-left: 35rem;
}

.social-media-buttons-final a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #FFF9EA;
    font-size: 3.50rem;
    border-radius: 10px;
    text-decoration: none;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons-final a:hover {
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.product-card img,
.product-card-grid-two img,
.product-card-grid-three img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain; /* mantém proporção */
  background-color: #fff; /* evita 'vazamento' visual */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Força o recorte dentro do card */
.product-card,
.product-card-grid-two,
.product-card-grid-three {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

