:root {
    --primary: #2563eb; /* Azul SmartPick */
    --primary-light: #eff6ff;
    --secondary: #10b981;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-app: #f8fafc;
    --white: #ffffff;
    --border: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    width: 100%; /* Força a ocupar a largura total */
    margin: 0 auto;
    padding: 0 40px; /* Mais espaço nas bordas */
}

/* NAVBAR - Institutional Style */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 80px; /* Altura clássica e elegante */
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px; /* Reduzido levemente para elegância */
    width: auto;
    display: block;
}

.trust-indicators {
    display: flex;
    gap: 50px; /* Menus mais espaçados */
    margin-left: auto; /* Garante que empurre para a direita */
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.indicator i {
    width: 16px;
    height: 16px;
}

/* HERO SECTION - Clean Style */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background-color: var(--bg-app);
}

.badge {
    width: fit-content;
    display: inline-flex;
    padding: 6px 16px;
    background: #f1f5f9;
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-main);
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: #dbeafe;
    text-underline-offset: 10px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* VITRINE GRID */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* PRODUCT CARD */
.product-card {
    background: var(--white);
    border-radius: 40px;
    padding: 32px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
}

.product-img {
    background: #f8fafc;
    border-radius: 32px;
    padding: 32px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.btn-primary {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1e40af;
    transform: scale(1.05);
}

/* TRUST BANNER */
.trust-banner {
    background: #020617;
    border-radius: 48px;
    padding: 80px;
    color: var(--white);
    margin: 80px 0 120px;
}

/* FOOTER */
footer {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .trust-indicators { display: none; }
    .hero h1 { font-size: 3rem; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 24px; }
}
