:root {
            --azul-vibrante: #0066cc;
            --azul-claro: #4a8eff;
            --rosa-light: #ffd6e7;
            --branco: #ffffff;
            --cinza-claro: #f5f5f5;
            --cinza-escuro: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--branco);
            color: var(--cinza-escuro);
            line-height: 1.6;
        }
        
        /* Navegação */
        header {
            background-color: var(--azul-vibrante);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: var(--branco);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--branco);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--rosa-light);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--branco);
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--azul-vibrante) 0%, var(--azul-claro) 100%);
            color: var(--branco);
            padding: 8rem 2rem 5rem;
            text-align: center;
            margin-top: 70px;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--rosa-light);
            color: var(--azul-vibrante);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            margin: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--branco);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--rosa-light);
            color: var(--rosa-light);
        }
        
        .btn-outline:hover {
            background-color: var(--rosa-light);
            color: var(--azul-vibrante);
        }
        
        /* Seções */
        section {
            padding: 5rem 2rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--azul-vibrante);
            font-size: 2rem;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Produtos */
        #products {
            background-color: var(--cinza-claro);
        }
        
        .product-showcase {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .product-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .product-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .product-image img:hover {
            transform: translateY(-10px);
        }
        
        .product-info {
            flex: 1;
            min-width: 300px;
        }
        
        .product-info h3 {
            color: var(--azul-vibrante);
            margin-bottom: 1rem;
        }
        
        .product-info ul {
            list-style-position: inside;
            margin-bottom: 1.5rem;
        }
        
        .product-info li {
            margin-bottom: 0.5rem;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--azul-vibrante);
            margin: 1.5rem 0;
        }
        
        .buy-btn {
            animation: fadeDown 2s infinite;
            background-color: var(--azul-vibrante);
            color: white;
        }
        
        @keyframes fadeDown {
            0% { transform: translateY(0); }
            50% { transform: translateY(5px); }
            100% { transform: translateY(0); }
        }
        
        /* Benefícios */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .benefit-card {
            background-color: var(--branco);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--azul-vibrante);
            margin-bottom: 1rem;
        }
        
        /* Ingredientes */
        #ingredients {
            background-color: var(--rosa-light);
        }
        
        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .ingredient-card {
            background-color: var(--branco);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .ingredient-card h3 {
            color: var(--azul-vibrante);
            margin-bottom: 1rem;
        }
        
        /* Oportunidade de Negócio */
        #business {
            background: linear-gradient(135deg, var(--azul-vibrante) 0%, var(--azul-claro) 100%);
            color: var(--branco);
            text-align: center;
        }
        
        #business .section-title {
            color: var(--branco);
        }
        
        .business-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            background-color: var(--cinza-escuro);
            color: var(--branco);
            padding: 3rem 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo img {
            height: 50px;
            margin-bottom: 1rem;
        }
        
        .quick-links h3, .social-links h3, .contact-info h3 {
            margin-bottom: 1rem;
            color: var(--rosa-light);
        }
        
        .quick-links ul {
            list-style: none;
        }
        
        .quick-links li {
            margin-bottom: 0.5rem;
        }
        
        .quick-links a {
            color: var(--branco);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .quick-links a:hover {
            color: var(--rosa-light);
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--branco);
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--azul-vibrante);
            transform: translateY(-3px);
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--rosa-light);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* WhatsApp flutuante */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: var(--branco);
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
            z-index: 100;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }