:root {
            --atomy-blue: #0056b3;
            --atomy-navy: #003366;
            --atomy-light-blue: #007bff;
            --white: #ffffff;
            --cream: #f9f5f0;
            --text-dark: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }
        
        /* Header e Navegação */
        header {
            background: linear-gradient(to right, var(--atomy-navy), var(--atomy-blue));
            color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        nav {
            width: 100%;
        }
        
        .nav-links {
            display: flex;
            justify-content: space-around;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 53, 102, 0.8), rgba(0, 86, 179, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23003366"/><path d="M0 0L100 100" stroke="%230056b3" stroke-width="2"/><path d="M100 0L0 100" stroke="%230056b3" stroke-width="2"/></svg>');
            background-size: cover;
            color: var(--white);
            text-align: center;
            padding: 60px 20px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--atomy-blue);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Seções Gerais */
        section {
            padding: 40px 20px;
        }
        
        .section-title {
            text-align: center;
            color: var(--atomy-navy);
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: var(--atomy-blue);
            margin: 10px auto 0;
        }
        
        /* Benefícios */
        .benefits-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .benefit-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            border-top: 3px solid var(--atomy-blue);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-card h3 {
            color: var(--atomy-navy);
            margin-top: 0;
            display: flex;
            align-items: center;
        }
        
        .benefit-card h3 i {
            margin-right: 10px;
            color: var(--atomy-blue);
        }
        
        /* Produto */
        .product-showcase {
            background-color: var(--cream);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            max-width: 300px;
            margin: 0 auto 20px;
            background-color: var(--white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .product-image img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .product-details {
            text-align: left;
            margin-top: 20px;
        }
        
        .product-details ul {
            padding-left: 20px;
            margin: 15px 0;
        }
        
        .product-details li {
            margin-bottom: 8px;
        }
        
        /* Ingredientes */
        .ingredients-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .ingredient-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--atomy-blue);
        }
        
        .ingredient-card h3 {
            color: var(--atomy-navy);
            margin-top: 0;
        }
        
        /* Como Usar */
        .usage-steps {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .step {
            background-color: var(--white);
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--atomy-blue);
        }
        
        .step h3 {
            color: var(--atomy-navy);
            margin-top: 0;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to right, var(--atomy-navy), var(--atomy-blue));
            color: var(--white);
            text-align: center;
            padding: 30px 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .social-links a {
            color: var(--white);
            font-size: 24px;
            transition: transform 0.3s;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 20px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        