:root {
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-bg: rgba(255, 255, 255, 0.18);
    --text-dark: #2c3e50;
    --primary-purple: #6a11cb;
    --primary-blue: #2575fc;
}

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

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1f9 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Background dinâmico */
.blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    top: -10%;
    left: -10%;
    animation: floating 25s infinite alternate;
}

.blob.secondary {
    right: -10%;
    bottom: -10%;
    left: auto;
    top: auto;
    background: radial-gradient(circle, rgba(37, 117, 252, 0.15) 0%, transparent 70%);
}

@keyframes floating {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(15%, 15%) scale(1.1); }
}

/* Efeito Liquid Glass */
.glass-element {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.main-header {
    width: 90%;
    max-width: 1200px;
    margin: 30px 0;
    padding: 30px;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

/* Grid de Produtos */
.container {
    width: 90%;
    max-width: 1100px;
    flex-grow: 1;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.card {
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid var(--glass-border);
}

.card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: white;
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-link:hover {
    background: var(--primary-purple);
    color: white;
}

/* Atendimento */
.atendimento {
    max-width: 550px;
    margin: 20px auto 60px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.atendimento img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.cta-simple {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 800;
}

.main-footer {
    padding: 30px;
    opacity: 0.5;
    font-size: 0.9rem;
}