:root {
    --primary: #2cb4ac;
    --accent: #f57e7e;
    --dark: #333;
    --gray: #666;
    --gradient: linear-gradient(135deg, #f57e7e, #2cb4ac, #f57e7e);
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; }
nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-weight: bold; font-size: 1.4rem; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--primary); font-style: italic; font-weight: normal; }
.logo-icon { 
    background: var(--primary); color: white; padding: 5px 10px; border-radius: 8px; font-size: 1.2rem;
}

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 0.9rem; transition: 0.3s; }
.nav-links a.active, .nav-links a:hover { color: var(--primary); border-bottom: 2px solid var(--primary); }

/* Hero */
.hero { 
    background: var(--gradient);
    background-size: 200% 200%;
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

/* Ajustes específicos para a Logomarca */
.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 100px; /* Altura ideal para o menu */
    width: auto;  /* Mantém a proporção original da imagem */
    display: block;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05); /* Leve efeito de zoom ao passar o mouse */
}

/* Ajuste no Nav para alinhar verticalmente com a imagem */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    .site-logo {
        height: 40px; /* Logo um pouco menor em celulares */
    }
}

.hero-content h1 { font-size: 3rem; margin-bottom: 15px; }
.hero-content h1 span { color: #f9d423; }
.hero-content p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; }

.subscribe-box { background: white; display: inline-flex; padding: 5px; border-radius: 8px; width: 100%; max-width: 500px; }
.subscribe-box input { border: none; padding: 12px; flex: 1; border-radius: 5px; outline: none; }
.subscribe-box button { background: #1a1a1a; color: white; border: none; padding: 12px 20px; border-radius: 5px; cursor: pointer; }

/* Deals Grid */
.section-title { margin-bottom: 30px; font-size: 1.8rem; }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 60px; }

.deal-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.deal-card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.store-name { color: var(--gray); font-size: 0.85rem; margin-bottom: 15px; }

.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.price { font-weight: bold; font-size: 1.2rem; }
.btn-deal { background: #004a7c; color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-size: 0.8rem; }

/* Footer */
footer { background: #fff; padding: 40px 0; border-top: 1px dotted #ccc; text-align: center; }
.footer-links { margin: 20px 0; display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: #004a7c; text-decoration: none; font-size: 0.9rem; }
footer p { font-size: 0.8rem; color: #999; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2rem; }
}