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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #48025f 0%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #9a0de6, #ea05cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.2em;
    color: #a8a8a8;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #feca57, #f06706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #feca57;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Cores específicas para cada categoria */
.smoothies-sem-alcool .product-name {
    color: #a29bfe;
}

.cocktails-classicos .product-name {
    color: #ff6b6b;
}

.cremosos-alcool .product-name {
    color: #ff9ff3;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Cor específica para gelos premium */
.gelos-premium .product-name {
    color: #48dbfb;
}

footer {
    padding: 40px;
    background-color: #141414;
    color: #e8e8e8;
    gap: 1rem;
}
.footer-top {
    text-align: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 auto;
    text-align: center;
}
.logo-footer {
    max-height: 200px;
    height: auto;
    width: auto;
}

.list-footer {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.list-footer li a {
    text-decoration: none;
    color: #e8e8e8;
    font-size: 16px;
    transition: color 0.3s ease;
}
.list-footer li a:hover {
    color: #b3bccec6;
}
footer small {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #b3bccec6;
    font-size: small;
}

small a {
    text-decoration: none;
    color: #e8e8e8;
}