/* Reset completo */
/* ===== SUBSTITUIR A SEÇÃO BODY NO styles.css ===== */

/* ===== SUBSTITUIR A SEÇÃO BODY E ADICIONAR NO INÍCIO DO styles.css ===== */

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

*::before,
*::after {
    display: none !important;
}

/* ===== BACKGROUND FIX PARA iOS - ELEMENTO SEPARADO ===== */
.ios-background-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/images/backg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -10;
    will-change: transform;
}

/* ===== BODY OTIMIZADO ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    /* Remover background do body - agora usa elemento separado */
}

/* ===== DETECÇÃO iOS E MOBILE ===== */
@supports (-webkit-overflow-scrolling: touch) {
    .ios-background-fix {
        position: fixed !important;
        height: 100vh !important;
        background-attachment: scroll !important;
    }
}

/* ===== MOBILE/TABLET ESPECÍFICO ===== */
@media (max-width: 1024px) {
    .ios-background-fix {
        position: fixed !important;
        height: 100vh !important;
        background-attachment: scroll !important;
        transform: translateZ(0);
        /* Force hardware acceleration */
        -webkit-transform: translateZ(0);
    }
}

/* ===== iPhone ESPECÍFICO ===== */
@media only screen and (max-width: 812px) {
    .ios-background-fix {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background-size: cover !important;
        background-position: center !important;
        z-index: -10 !important;
    }
}

/* ===== LANDSCAPE MODE FIX ===== */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .ios-background-fix {
        height: 100vh !important;
        background-size: cover !important;
    }
}

/* Overlay escuro sobre a imagem de fundo - ATUALIZADO */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -5;
    display: block !important;
}

/* ===== MOBILE: Garantir que overlay funcione ===== */
@media (max-width: 768px) {
    body::before {
        position: fixed !important;
        height: 100vh !important;
        z-index: -5 !important;
    }
}

/* ===== RESTO DO CSS PERMANECE IGUAL... ===== */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 2rem;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(45, 27, 69, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: none;
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4ade80;
    border-radius: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

.cta-button {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: none;
}

.cta-button:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    padding: 0 1.5rem;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: none;
}

.highlight {
    color: #4ade80;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-shadow: none;
}

.btn-primary:hover {
    background: #6d28d9;
}

.btn-secondary {
    background: transparent;
    color: #c4b5fd;
    border: 2px solid #7c3aed;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: none;
}

.btn-secondary:hover {
    background: #7c3aed;
    color: white;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8fafc;
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 5;
}

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

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: none;
}

.highlight-green {
    color: #10b981;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: none;
}

/* Grid de benefícios - 4 colunas em desktop */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== CARDS DE BENEFÍCIOS COM EFEITOS HOVER MELHORADOS ===== */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, box-shadow;
}

/* ===== EFEITO HOVER PRINCIPAL ===== */
.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

/* ===== GRADIENTE ANIMADO NO TOPO ===== */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: block !important;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

/* ===== FUNDO GRADIENTE SUTIL ===== */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.02) 0%,
            rgba(52, 211, 153, 0.05) 50%,
            rgba(110, 231, 183, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
    display: block !important;
}

.benefit-card:hover::after {
    opacity: 1;
}

.card-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
}

.benefit-card:hover .card-icon::after {
    transform: scale(1.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* ===== ANIMAÇÃO DOS ÍCONES SVG ===== */
.card-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.2));
    will-change: filter;
}

.benefit-card:hover .card-icon svg {
    filter: drop-shadow(0 8px 20px rgba(16, 185, 129, 0.4));
}

.card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-shadow: none;
    line-height: 1.3;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-title {
    color: #059669;
    transform: translateY(-3px);
}

.card-subtitle {
    font-size: 1.375rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
    text-shadow: none;
    line-height: 1.3;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-subtitle {
    color: #047857;
    transform: translateY(-2px);
}

.card-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    text-shadow: none;
    font-weight: 400;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-description {
    color: #374151;
    transform: translateY(-2px);
}

/* ===== EFEITOS DECORATIVOS ADICIONADOS VIA JS ===== */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
    z-index: 3;
    pointer-events: none;
}

.benefit-card:hover .shine-effect {
    left: 100%;
}

.decorative-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.decorative-dots::before,
.decorative-dots::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    display: block !important;
}

.decorative-dots::before {
    top: 0;
    left: 0;
    animation: dot1 2s ease-in-out infinite;
}

.decorative-dots::after {
    bottom: 0;
    right: 0;
    animation: dot2 2s ease-in-out infinite 0.5s;
}

.benefit-card:hover .decorative-dots {
    opacity: 1;
}

/* ===== ANIMAÇÕES DOS PONTOS ===== */
@keyframes dot1 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes dot2 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ===== EFEITO DE FOCO (ACESSIBILIDADE) ===== */
.benefit-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Section */
.product-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 5;
}

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-100-natural {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-liofilizado {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-info {
    padding-left: 2rem;
    position: relative;
}

.product-header {
    margin-bottom: 2rem;
    position: relative;
}

.product-category {
    color: #7c3aed;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: 25px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.product-category::before {
    content: '✨';
    margin-right: 0.5rem;
}

.product-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.product-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.4));
    border-radius: 16px;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    display: grid;
    gap: 1rem;
}

.product-features li {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: #475569;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.product-features li::before {
    content: "";
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-features li::after {
    content: "✓";
    position: absolute;
    left: 1.75rem;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    z-index: 1;
}

.product-features li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.product-features li:hover::before {
    background: linear-gradient(135deg, #059669, #10b981);
    transform: scale(1.1);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    position: relative;
}

.btn-buy {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.btn-buy::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.6s ease;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:active {
    transform: translateY(-1px);
}

/* Elementos decorativos */
.product-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border-radius: 50%;
    z-index: -1;
}

.product-info::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: 50%;
    z-index: -1;
}

.btn-ingredients {
    background: transparent;
    color: #7c3aed;
    border: 2px solid #7c3aed;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ingredients:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
}

.shipping-info {
    color: #7c3aed;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Recipes Section */
.recipes-section {
    background-color: #f8fafc;
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 5;
}

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

.recipes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.recipes-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.recipes-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.recipe-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.recipe-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-img {
    transform: scale(1.05);
}

.recipe-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.recipe-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recipe-time,
.recipe-difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.recipe-time {
    background: #dcfce7;
    color: #16a34a;
}

.recipe-difficulty {
    background: #e0e7ff;
    color: #7c3aed;
}

.recipe-ingredients {
    text-align: left;
    margin-bottom: 2rem;
}

.ingredients-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.ingredients-list li::before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-recipe {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-recipe:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.recipes-cta {
    text-align: center;
}

.btn-download {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-download:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.cta-description {
    color: #64748b;
    font-size: 0.875rem;
}

.recipe-card:nth-child(1) {
    animation-delay: 0.1s;
}

.recipe-card:nth-child(2) {
    animation-delay: 0.2s;
}

.recipe-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 5;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story {
    padding-right: 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.75rem;
    color: #64748b;
}

.about-values {
    padding-left: 2rem;
}

.values-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.value-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.value-icon {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: rgba(45, 27, 69, 1);
    color: white;
    padding: 4rem 1.5rem 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    display: block !important;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: block !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand .footer-title::after {
    display: none;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(16, 185, 129, 0.3);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    display: block !important;
}

.social-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.social-btn:hover::before {
    left: 100%;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #7c3aed;
    border-radius: 1px;
    display: block !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    position: relative;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: #34d399;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: #34d399;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block !important;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-contact {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    flex: 1;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: linear-gradient(135deg, #10b981, #34d399);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    display: block !important;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    position: relative;
}

.footer-copyright::before {
    content: '©';
    margin-right: 0.5rem;
    color: #10b981;
    font-weight: bold;
}

.footer-bottom-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cnpj,
.footer-made {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    position: relative;
}

.footer-made::before {
    content: '💜';
    margin-right: 0.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #7c3aed;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.25rem 1.5rem;
        background: transparent;
    }

    .header.scrolled {
        padding: 1rem 1.5rem;
        background: rgba(45, 27, 69, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 20;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 25;
        padding: 1rem;
    }

    .mobile-menu-btn span {
        width: 28px;
        height: 3px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        display: none;
    }

    .benefits-section {
        padding: 3rem 1rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-subtitle {
        font-size: 1rem;
    }

    /* Em tablets médios, 2 colunas */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    /* Ajustar hover para mobile */
    .benefit-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .product-info {
        padding-left: 0;
        padding: 0 1rem;
    }

    .product-title {
        font-size: 2.25rem;
    }

    .product-description {
        font-size: 1.1rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .product-features li {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    .btn-buy {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
        max-width: 100%;
    }

    .product-category {
        padding: 0.375rem 0.875rem;
        font-size: 0.8rem;
    }

    .product-info::before,
    .product-info::after {
        display: none;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .recipes-title {
        font-size: 2rem;
    }

    .recipe-card {
        padding: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story,
    .about-values {
        padding-left: 0;
        padding-right: 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 900px) {

    /* Em tablets pequenos, 2 colunas */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 600px;
    }
}

@media (max-width: 600px) {

    /* Em mobile, usar 1 coluna */
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .benefit-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .benefit-card:hover .card-icon {
        transform: scale(1.05) rotate(3deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .benefits-title {
        font-size: 1.75rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .card-title,
    .card-subtitle {
        font-size: 1.125rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .product-section {
        padding: 3rem 1rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .recipes-section {
        padding: 3rem 1rem;
    }

    .recipes-title {
        font-size: 1.75rem;
    }

    .btn-download {
        width: 100%;
        max-width: 300px;
    }

    .about-section {
        padding: 3rem 1rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 1rem 0;
    }

    .footer-social {
        flex-direction: column;
    }

    .social-btn {
        text-align: center;
    }

    /* Back to Top Button - Mobile */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .back-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}