/* barra superior */
.top-bar {
    background: #c45757;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

/* cabeçalho principal */
.main-header {
    background-color: #ffe0e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #aa281f;
}

.logo img {
    width: 60px;
}
/* busca */
.search-box {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
}

.search-box input {
    width: 100%;
    padding: 12px 30px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* icones */
.icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.icon-btn:hover {
    background-color: #c45757;
    border-color: #aa281f;
}

.icon-btn:hover .icon-emoji,
.icon-btn:hover .icon-label {
    color: white;
}

.icon-emoji {
    font-size: 20px;
    margin-bottom: 2px;
}

.icon-label {
    font-size: 11px;
    font-weight: 600;
    color: #aa281f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon {
    position: relative;
    cursor: pointer;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    border-bottom: 1px solid #eee;
    background-color: #ffe0e6;
    
}
.menu a {
    margin-right: 25px;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
} 


    /*banner*/

.hero-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fffafa;
    border-bottom: 1px solid #ddd;
}

/* conteúdo central */
.hero-content {
    max-width: 500px;
    margin: 0 auto;
}

/* título */
.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #aa281f;
    margin-bottom: 20px;
}

/* texto */
.hero-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* botões */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* botão preenchido */
.btn-primary {
    padding: 14px 28px;
    background-color: #c45757;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-primary:hover {
    background-color: #aa281f;
}

/* botão com borda */
.btn-outline {
    padding: 14px 28px;
    border: 2px solid #c45757;
    color: #c45757;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline:hover {
    background-color: #ffe0e6;
}


    /* Corpo */

.corpo1 {
    flex-direction:row;
    display:flex;
    justify-content:center;
    align-items: center;
    background-color: #fffafa;
    height: 50vh;
    gap: 60px;
}
.card {
    background-color: #ffe0e6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(196, 87, 87, 0.2);
    color: #c45757;
    position: relative;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(196, 87, 87, 0.3);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h1 {
    font-size: 16px;
    padding: 15px 10px;
    margin: 0;
    color: #aa281f;
}



/* Cards*/

body {
    font-family: sans-serif;
    margin: 0;
}

/* seção principal estilos */

.new-products-section {
    max-width: 1200px;
    margin: 0;
    padding: 20px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #aa281f;
}

.header-container h2 {
    font-size: 24px;
    font-weight: normal;
    margin: 0;

}

/* container e layout dos produtos */

.products-list {
    display: flex;
    gap: 20px; 
    width: 100%;
    justify-content: center;
}

.product-card {
    width: 25%;
    min-width: 220px; 

}

/* imagem placeholder */

.product-image-placeholder {
    height: 250px;
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    position: relative;
    display: flex; 
    justify-content: center;
    align-items: center;
}

/* info do produto e preços */

.product-info {
    padding: 0 5px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 2px 0;
    color: #aa281f;
}

.product-details {
    font-size: 13px;
    color: #777;
    margin: 0 0 5px 0;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.current-price {
    font-size: 16px;
    font-weight: bold;
    color: #aa281f;
}


/* container principal da seção */

.promo-box-section {
    max-width: 900px;
    margin: 50px auto; 
    padding: 30px;
    background-color: #ffe0e6;
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* texto e imagem) */

.promo-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    width: 100%;
    margin-bottom: 20px;
}

/* lado esquerdo */

.promo-text-side {
    display: flex;
    flex-direction: column;
}

.promo-title {
    font-size: 28px;
    font-weight: bold;
    color: #b72730;
    margin: 0 0 15px 0;
}

.promo-up-to {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.promo-discount {
    font-size: 80px; 
    font-weight: 900; 
    color: #b72730;
    line-height: 0.9;
    margin: 10px 0 15px 0;
}

.promo-description {
    font-size: 16px;
    color: #333;
    margin: 0;
}


.image-placeholder {
    width: 180px;
    height: 140px;
    background-color: #fffafa;
    position: relative;
}

/* círculo e imagem */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
}
.image-placeholder::after {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0.4;
}

/* botão */

.shop-now-button {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 2px solid #333;
    padding-bottom: 2px;
    cursor: pointer;
    align-self: flex-end;
    margin-right: 20px;
}
    


/* Corpo 1 - 2 */

.new-products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #aa281f;
}

.header-container h2 {
    font-size: 24px;
    font-weight: normal;
    margin: 0;
}

/* container e layout dos produtos */

.products-list {
    display: flex;
    gap: 20px; 
    width: 100%;
    justify-content: center;
}

.product-card {
    width: 25%;
    min-width: 220px; 
    background-color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* imagem placeholder */

.product-image-placeholder {
    height: 250px;
    background-color: #f7f7f7;
    border: 1px solid #eee;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}


/* info do produto e preços */

.product-info {
    padding: 0 5px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 2px 0;
    color: #aa281f;
}

.product-details {
    font-size: 13px;
    color: #777;
    margin: 0 0 5px 0;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.current-price {
    font-size: 16px;
    font-weight: bold;
    color: #aa281f;
}

/* caixa de promoção dupla */

/* layout das duas caixas */

.promo-grid-container {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    max-width: 1000px;
    margin: 50px auto;
    background-color: #fffafa;
}

/* estilo de cada caixa */

.promo-box-item {
    flex: 1; 
    background-color: #ffe0e6;
    border-radius: 4px;
    padding: 30px;
    
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* título principal */

.item-title {
    font-size: 24px;
    font-weight: bold;
    color: #aa281f;
    margin: 0 0 10px 0;
}

/* textos e imagens */

.item-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.item-text-side {
    display: flex;
    flex-direction: column;
    padding-right: 15px;
}

/* estilos do desconto */

.item-up-to {
    font-size: 12px;
    font-weight: bold;
    color: #555;
    margin: 15px 0 0 0;
}

.item-discount {
    font-size: 60px;
    font-weight: 900;
    color: #aa281f;
    line-height: 0.9;
    margin: 5px 0 10px 0;
}

.item-description {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.image-placeholder {
    width: 100px;
    height: 80px;
    background-color: #fffafa;
    position: relative;
}

/* estilo dos círculos e ícones*/

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
}
.image-placeholder::after {
    content: ''; 
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background-color: transparent;
    border-radius: 4px;
}

/* botão */

.item-button {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #333;
    padding-bottom: 2px;
    cursor: pointer;
    align-self: flex-start; 
    margin-top: 25px;
}



/* seção do email */

.newsletter-bar {
    background-color: #fffafa;
    padding: 40px 0;
    margin-bottom: 20px;
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 100px; 
}

.newsletter-text {
    max-width: 400px;
}

.newsletter-bar h2 {
    font-size: 20px;
    font-weight: bold;
    color: #aa281f;
    margin: 0 0 10px 0;
}

.newsletter-bar p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    align-items: center;
}

.newsletter-form input[type="email"] {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #b72730;
    border-right: none;
    width: 300px;
    box-sizing: border-box;
}

.newsletter-form button {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    background-color: #b72730;
    color: white;
    border: 1px solid #b72730;
    cursor: pointer;
    text-transform: uppercase;
}

/* seção de avaliações */

.reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.reviews-grid {
    display: flex; 
    gap: 30px;
    justify-content: space-between;
}

.rating-column {
    flex: 0 0 25%; 
}

.review-card {
    flex: 1; 
}

/* estilos de texto / estrelas */

.rating-column h3, .review-card h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.stars {
    font-size: 18px;
    color: #b72730; 
    margin-bottom: 10px;
}

.rating-base {
    font-size: 12px;
    color: #555;
    margin: 0;
}

.rating-base a {
    color: #555;
    text-decoration: underline;
}

.review-title {
    font-size: 15px;
    font-weight: bold;
    margin: 5px 0;
}

.review-body {
    font-size: 13px;
    color: #555;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.review-meta {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/*rodapé*/

/* --- estilização do rodapé --- */

.footer {
    background-color: #fffafa; 
    padding: 30px 20px; 
    border-top: 1px solid #999; 
    font-family: Arial, sans-serif;
}

/* estilização do conteúdo */

.footer .content {
    max-width: 960px; 
    margin: 0 auto;
}

.footer .has-text-centered {
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* estilização dos links */

.footer a {
    color: #b72730;
    text-decoration: none; 
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #b72730;
    text-decoration: underline;
}

/* estilização do destaque */

.footer strong {
    color: #333333;
    font-weight: bold;
}