* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff9a9e, #fecfef, #fecfef);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #fff3cd;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.admin-link {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
}

.admin-link i {
    font-size: 1.1em;
    margin-right: 0.5rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.admin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.admin-link:hover::before {
    left: 100%;
}

.admin-link:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
    transform: translateY(-3px);
    color: #ffffff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.gourmet-subtitle {
    font-size: 2.2rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gourmetGlow 3s ease-in-out infinite alternate;
}

@keyframes gourmetGlow {
    from {
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(231, 76, 60, 0.8), 0 0 30px rgba(243, 156, 18, 0.5);
    }
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-left: 1rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Mobile navigation styles */
@media (max-width: 992px) {
    .nav-menu {
        display: flex;
        gap: 0;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 80%;
        background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
        padding: 4rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.28s ease, opacity 0.28s ease;
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        z-index: 1500;
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 0.9rem 1rem;
        color: #333;
        background: transparent;
        border-radius: 8px;
        font-weight: 600;
    }

    .hamburger {
        display: flex;
        gap: 4px;
        width: 36px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: white;
        transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
        display: block;
    }

    /* Active state -> X */
    .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Make header less tall on mobile */
    .nav-container { padding: 0.6rem 16px; }
    .header .logo { font-size: 1.1rem; }
    .hero { padding-top: 72px; }
}

/* Ensure links inside slide menu are easy to tap */
.nav-menu a { touch-action: manipulation; }

/* Cake Illustration */
.hero-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cake-illustration {
    position: relative;
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.cake-layer {
    border-radius: 50%;
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: -20px;
}

.layer-1 {
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    z-index: 3;
}

.layer-2 {
    width: 180px;
    height: 80px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    z-index: 2;
}

.layer-3 {
    width: 240px;
    height: 100px;
    background: linear-gradient(45deg, #48dbfb, #0abde3);
    z-index: 1;
}

.cake-topper {
    position: absolute;
    top: -20px;
    font-size: 2rem;
    color: #ffd700;
    animation: bounce 2s infinite;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sparkles i {
    position: absolute;
    color: #ffd700;
    animation: sparkle 3s infinite;
}

.sparkles i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkles i:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.sparkles i:nth-child(3) { bottom: 40%; left: 20%; animation-delay: 1s; }
.sparkles i:nth-child(4) { top: 60%; right: 10%; animation-delay: 1.5s; }
.sparkles i:nth-child(5) { bottom: 20%; right: 25%; animation-delay: 2s; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f8f9fa;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 107, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-order {
    background: white;
    color: #ff6b6b;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-order:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.category {
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

.features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo i {
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b6b;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.product-preview {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal form input,
.modal form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .admin-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cake-gallery {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
}

/* Preços Section */
.precos {
    padding: 5rem 0;
    background: #f8f9fa;
}

.precos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.preco-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.preco-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.cake-size {
    margin-bottom: 1.5rem;
}

.size-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.size-12cm { transform: scale(0.6); }
.size-15cm { transform: scale(0.7); }
.size-18cm { transform: scale(0.8); }
.size-20cm { transform: scale(0.85); }
.size-25cm { transform: scale(0.95); }
.size-30cm { transform: scale(1.1); }

.size-circle::before {
    content: '';
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    position: absolute;
}

.cake-size h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}

.preco-info .fatias {
    display: block;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.preco-info .preco {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.preco-info p {
    color: #666;
    font-style: italic;
}

/* Recheios Section */
.recheios {
    padding: 5rem 0;
    background: white;
}

.recheios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.recheios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recheio-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.recheio-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.recheio-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Categorias de Recheios */
.recheios-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ffa8a8);
    border-radius: 2px;
}

.premium-title {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.premium-title::after {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
}

.premium-title i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.premium-card {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    border-radius: 15px;
    z-index: -1;
    margin: -2px;
}

.premium-icon {
    background: linear-gradient(45deg, #f39c12, #e74c3c) !important;
    animation: premiumPulse 2s ease-in-out infinite alternate;
}

@keyframes premiumPulse {
    from {
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    to {
        box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5), 0 0 30px rgba(231, 76, 60, 0.3);
    }
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.preco-adicional {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Seção Sabores */
.sabores {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.sabores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.sabor-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.sabor-card:hover {
    transform: translateY(-10px);
    border-color: #2196f3;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.sabor-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #2196f3, #21cbf3); /* Padrão azul */
}

/* Sabores específicos com cores personalizadas */
.sabor-icon.tradicional {
    background: linear-gradient(45deg, #81c784, #4caf50);
}

.sabor-icon.chocolate {
    background: linear-gradient(45deg, #8d6e63, #5d4037);
}

.sabor-icon.massa-ninho {
    background: linear-gradient(45deg, #fff3c4, #ffd54f);
}

.sabor-icon.ninho {
    background: linear-gradient(45deg, #fff3c4, #ffd54f);
}

.sabor-icon.morango {
    background: linear-gradient(45deg, #e74c3c, #ff6b6b);
}

.sabor-icon.coco {
    background: linear-gradient(45deg, #f39c12, #f1c40f);
}

.sabor-icon.limao {
    background: linear-gradient(45deg, #f1c40f, #9ccc65);
}

.sabor-icon.maracuja {
    background: linear-gradient(45deg, #e67e22, #f39c12);
}

.sabor-icon.baunilha {
    background: linear-gradient(45deg, #ecf0f1, #bdc3c7);
}

.sabor-icon.caramelo {
    background: linear-gradient(45deg, #d35400, #e67e22);
}

.sabor-icon.red-velvet {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
}

.sabor-icon.cafe {
    background: linear-gradient(45deg, #795548, #8d6e63);
}

.sabor-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sabor-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sabor-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #2196f3, #21cbf3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recheio-icon.chocolate { background: linear-gradient(135deg, #8B4513, #A0522D); }
.recheio-icon.branco { background: linear-gradient(135deg, #ecf0f1, #bdc3c7); }
.recheio-icon.limao { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.recheio-icon.coco { background: linear-gradient(135deg, #f39c12, #f1c40f); }
.recheio-icon.maracuja { background: linear-gradient(135deg, #e67e22, #f39c12); }
.recheio-icon.morango { background: linear-gradient(135deg, #e74c3c, #ff6b6b); }
.recheio-icon.ouro { background: linear-gradient(135deg, #f1c40f, #fff); }
.recheio-icon.maracuja-premium { background: linear-gradient(135deg, #e67e22, #f39c12); }
.recheio-icon.ovomaltine { background: linear-gradient(135deg, #8B4513, #d35400); }
.recheio-icon.chocolate-picado { background: linear-gradient(135deg, #2c3e50, #8B4513); }
.recheio-icon.ferrero { background: linear-gradient(135deg, #8B4513, #f39c12); }

.recheio-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.recheio-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}
