/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul: #0066cc;
    --laranja: #ff6600;
    --laranja-vibrante: #ff4500;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-escuro: #333333;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--branco);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    text-decoration: none;
}

@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);
    }
}

/* Header e Navegação */
header {
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--azul);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--cinza-escuro);
    margin: 3px 0;
    transition: 0.3s;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--laranja);
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--laranja);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--laranja-vibrante);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--laranja);
}

.btn-outline:hover {
    background-color: var(--laranja);
    color: var(--branco);
}

.btn-primary {
    background-color: var(--azul);
    border: 2px solid var(--azul);
}

.btn-primary:hover {
    background-color: #0052a3;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--azul) 0%, #004a99 100%);
    color: var(--branco);
    padding: 150px 0 100px;
    margin-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Botão de Compra */
.buy-button-container {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 999;
}

.buy-btn {
    background-color: var(--laranja);
    color: var(--branco);
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.buy-btn:hover {
    background-color: var(--laranja-vibrante);
    transform: translateY(-3px);
}

.buy-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: var(--branco);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 180px;
    display: none;
    animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buy-options a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--cinza-escuro);
    transition: background-color 0.3s;
}

.buy-options a:hover {
    background-color: var(--cinza-claro);
    color: var(--azul);
}

/* Seção Produtos */
.products {
    padding: 100px 0;
    background-color: var(--cinza-claro);
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--azul);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--azul);
}

.product-info p {
    margin-bottom: 15px;
    color: #666;
}

.btn-product {
    background-color: var(--azul);
    color: var(--branco);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-product:hover {
    background-color: #0052a3;
}

/* Seção Benefícios */
.benefits {
    padding: 100px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--azul);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--laranja);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--azul);
}

/* Seção Ingredientes */
.ingredients {
    padding: 100px 0;
    background-color: var(--cinza-claro);
}

.ingredients h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--azul);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ingredient-card {
    background-color: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.ingredient-card:hover {
    transform: translateY(-10px);
}

.ingredient-image {
    height: 200px;
    overflow: hidden;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-card h3 {
    padding: 20px 20px 10px;
    color: var(--azul);
}

.ingredient-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Seção Oportunidade de Negócio */
.business {
    padding: 100px 0;
}

.business h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--azul);
}

.business-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.business-text {
    flex: 1;
}

.business-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--azul);
}

.business-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.business-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.business-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.business-text li i {
    color: var(--laranja);
    margin-right: 10px;
}

.business-image {
    flex: 1;
    text-align: center;
}

.business-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Seção Contato */
.contact {
    padding: 100px 0;
    background-color: var(--cinza-claro);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--azul);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--azul);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--laranja);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--azul);
    color: var(--branco);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--laranja);
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--azul);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--azul);
}

/* Footer */
footer {
    background-color: var(--azul);
    color: var(--branco);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    max-width: 300px;
    opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--laranja);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal Cadastro */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: var(--cinza-escuro);
}

.modal h3 {
    margin-bottom: 15px;
    color: var(--azul);
}

.modal p {
    margin-bottom: 20px;
    color: #666;
}

.form-cadastro {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.form-cadastro input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-cadastro input:focus {
    outline: none;
    border-color: var(--azul);
}

.modal-texto {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}