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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

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

/* Botão de Compra Fixo */
.fixed-buy-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.btn-comprar-fixo {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.btn-comprar-fixo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header/Hero Section */
.hero-section {
    background: 
        linear-gradient(rgba(220, 38, 38, 0.9), rgba(239, 68, 68, 0.9)),
        repeating-linear-gradient(
            45deg,
            #dc2626,
            #dc2626 20px,
            #fff 20px,
            #fff 40px
        );
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.hero-section::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ebook-cover {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ebook-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.ebook-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-price {
    margin: 30px 0;
}

.price-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-comprar-hero {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    border: 3px solid #fff;
}

.btn-comprar-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.delivery-info {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
}

/* Seções Gerais */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 2px;
}

/* Seção de Pratos */
.pratos-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.pratos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prato-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.prato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.prato-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.prato-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 20px 10px;
    color: #1f2937;
}

.prato-card p {
    padding: 0 20px 20px;
    color: #6b7280;
    font-size: 1rem;
}

/* Seção About */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.about-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
}

/* Seção de Benefícios */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Seção de Compra */
.purchase-section {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(220, 38, 38, 0.95), rgba(239, 68, 68, 0.95)),
        repeating-linear-gradient(
            45deg,
            #dc2626,
            #dc2626 15px,
            #fff 15px,
            #fff 30px
        );
    color: white;
    text-align: center;
}

.purchase-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-highlight {
    margin: 40px 0;
}

.price-big {
    font-size: 4rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 10px;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.form-instruction {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-option:hover {
    border-color: #dc2626;
    background: #fef2f2;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background: #dc2626;
    border-color: #dc2626;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-field {
    margin-bottom: 25px;
}

.contact-field input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-field input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-continuar {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-continuar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.customer-info {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #166534;
}

.qr-code-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.qr-code-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qr-instruction {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.pix-code-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#pix-code {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: monospace;
    background: #f9fafb;
    color: #374151;
    text-align: center;
}

.btn-copiar {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-copiar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.purchase-guarantee {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 30px;
    opacity: 0.95;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #dc2626;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Seção de Chefs */
.chefs-section {
    padding: 80px 0;
    background: #fff;
}

.btn-mostrar-qr {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    cursor: pointer;
    display: inline-block;
}

.btn-mostrar-qr:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.chef-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: 2px solid #f3f4f6;
}

.chef-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.chef-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px;
}

.chef-content {
    padding: 20px;
    flex: 1;
}

.chef-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.chef-quote {
    font-style: italic;
    color: #4b5563;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-contact h4,
.footer-delivery h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fbbf24;
}

.footer-info p,
.footer-contact p,
.footer-delivery p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .btn-comprar-hero {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pratos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chefs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chef-card {
        flex-direction: column;
        text-align: center;
    }
    
    .chef-card img {
        margin: 20px auto 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .fixed-buy-button {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
    
    .btn-comprar-fixo {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price-big {
        font-size: 3rem;
    }
    
    .purchase-content h2 {
        font-size: 2.2rem;
    }
    
    .qr-code-container {
        padding: 30px 20px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prato-card,
.benefit-card,
.testimonial-card,
.chef-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


/* Responsividade para o novo layout com capa */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .ebook-cover {
        max-width: 280px;
        transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ebook-cover {
        max-width: 240px;
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    }
    
    .hero-layout {
        gap: 30px;
    }
}



/* Seção de Segurança e Confiança */
.security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.security-badge {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.security-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.security-badge img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.security-badge h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.security-badge p {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.5;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 1.2em;
}

/* Responsividade para seção de segurança */
@media (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }
    
    .security-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .security-badge {
        padding: 25px 15px;
    }
    
    .security-badge img {
        width: 60px;
        height: 60px;
    }
    
    .trust-indicators {
        gap: 15px;
    }
    
    .trust-item {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .security-badges {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}



/* Rodapé */
.footer-section {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
    border-top: 5px solid #dc2626;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5em;
    color: white;
    margin-bottom: 10px;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    font-size: 1.2em;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after, .footer-legal h4::after, .footer-contact h4::after {
    content: 	s;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: #dc2626;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
    padding-left: 5px;
}

.footer-email {
    background: #dc2626;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.footer-email:hover {
    background: #ef4444;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #94a3b8;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsividade para o rodapé */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after, .footer-legal h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Contador de Vendas */
.sales-counter {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.counter-item {
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 3em;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1em;
    font-weight: 600;
    opacity: 0.9;
}

/* Depoimentos Melhorados */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.testimonial-info strong {
    display: block;
    font-size: 1.1em;
    color: #1e293b;
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 0.9em;
    color: #64748b;
    display: block;
    margin-bottom: 8px;
}

.testimonial-info .stars {
    font-size: 0.9em;
}

/* Animação do contador */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter-number {
    animation: countUp 0.6s ease-out;
}

/* Responsividade para contador */
@media (max-width: 768px) {
    .sales-counter {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .counter-number {
        font-size: 2.5em;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-photo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .sales-counter {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .counter-number {
        font-size: 2em;
    }
    
    .counter-label {
        font-size: 1em;
    }
}


/* CTAs Melhorados */
.btn-comprar-hero {
    background: linear-gradient(45deg, #dc2626, #ef4444, #f97316);
    background-size: 200% 200%;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3em;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-comprar-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.btn-comprar-hero .btn-icon {
    font-size: 1.2em;
    animation: bounce 2s infinite;
}

.btn-comprar-hero .btn-subtext {
    font-size: 0.7em;
    font-weight: 500;
    opacity: 0.9;
}

/* Botão Fixo Melhorado */
.btn-comprar-fixo {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}

.btn-comprar-fixo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-main {
    font-size: 1em;
    font-weight: 700;
}

.btn-price {
    font-size: 0.85em;
    font-weight: 600;
    opacity: 0.9;
}

.pulse-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Botão Continuar Melhorado */
.btn-continuar {
    background: linear-gradient(45deg, #16a34a, #22c55e);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-continuar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
    background: linear-gradient(45deg, #15803d, #16a34a);
}

.btn-continuar .btn-icon {
    font-size: 1.2em;
    animation: flash 2s infinite;
}

.btn-continuar .btn-arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-continuar:hover .btn-arrow {
    transform: translateX(5px);
}

/* Animações */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Responsividade para CTAs */
@media (max-width: 768px) {
    .btn-comprar-hero {
        padding: 18px 30px;
        font-size: 1.2em;
    }
    
    .btn-comprar-fixo {
        padding: 12px 15px;
    }
    
    .btn-main {
        font-size: 0.9em;
    }
    
    .btn-price {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .btn-comprar-hero {
        padding: 16px 25px;
        font-size: 1.1em;
    }
    
    .btn-continuar {
        padding: 16px 25px;
        font-size: 1em;
    }
}


/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 1.8em;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: white;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip span {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9em;
}

.whatsapp-tooltip small {
    display: block;
    color: #64748b;
    font-size: 0.8em;
    margin-top: 2px;
}

/* Melhorias no Rodapé - Contato */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.footer-email, .footer-whatsapp {
    background: #dc2626;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.footer-whatsapp {
    background: #25d366;
}

.footer-email:hover {
    background: #ef4444;
    transform: translateY(-2px);
}

.footer-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.support-hours {
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
}

.support-hours small {
    color: #cbd5e1;
    font-weight: 500;
}

/* Responsividade para suporte */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        font-size: 1.6em;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        padding: 10px 12px;
    }
    
    .contact-options {
        gap: 10px;
    }
    
    .footer-email, .footer-whatsapp {
        padding: 8px 12px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .whatsapp-tooltip {
        display: none;
    }
    
    .contact-options {
        align-items: center;
    }
    
    .footer-email, .footer-whatsapp {
        text-align: center;
        width: 100%;
        max-width: 250px;
    }
}


/* Otimizações Mobile e Performance */

/* Lazy loading para imagens */
img {
    loading: lazy;
}

/* Otimização de fontes */
@font-display: swap;

/* Melhorias de performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Otimizações específicas para mobile */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.2em;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-price {
        margin: 20px 0;
    }
    
    .price-value {
        font-size: 2.5em;
    }
    
    /* Seções Mobile */
    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    /* Grid responsivo */
    .pratos-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chefs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Formulário Mobile */
    .purchase-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .delivery-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-option {
        padding: 15px;
        font-size: 1em;
    }
    
    /* QR Code Mobile */
    .qr-code-image {
        max-width: 250px;
    }
    
    .pix-code-container {
        flex-direction: column;
        gap: 15px;
    }
    
    #pix-code {
        font-size: 0.8em;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    /* Layout ultra mobile */
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .price-value {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 1.7em;
    }
    
    /* Grid single column */
    .pratos-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Cards menores */
    .prato-card, .benefit-card {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    /* Botões mobile */
    .fixed-buy-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float {
        bottom: 85px;
        right: 15px;
    }
    
    /* Formulário compacto */
    .contact-form {
        padding: 20px 15px;
    }
    
    .btn-continuar {
        padding: 14px 20px;
        font-size: 1em;
    }
}

/* Otimizações de performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-color-scheme: dark) {
    /* Modo escuro opcional - pode ser implementado futuramente */
}

/* Otimização para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Otimizações para telas retina */
    .ebook-cover {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Melhorias de touch */
@media (hover: none) and (pointer: coarse) {
    /* Dispositivos touch */
    .btn-comprar-hero,
    .btn-comprar-fixo,
    .btn-continuar,
    .whatsapp-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .radio-option {
        min-height: 44px;
    }
}

/* Preload crítico */
.hero-section {
    contain: layout style paint;
}

/* Otimização de scroll */
.container {
    contain: layout;
}

/* Lazy loading melhorado */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}


/* Seção de Amostra de Receita */
.recipe-sample-section {
    padding: 80px 0;
    background: #fff;
}

.recipe-sample-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.recipe-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.recipe-details h3 {
    font-size: 2em;
    color: #1e293b;
    margin-bottom: 15px;
}

.recipe-intro {
    font-size: 1.1em;
    color: #4b5563;
    margin-bottom: 25px;
}

.recipe-summary {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    color: #374151;
}

.summary-icon {
    font-size: 1.5em;
}

.recipe-details h4 {
    font-size: 1.3em;
    color: #1e293b;
    margin-bottom: 15px;
}

.ingredients-list {
    list-style: none;
    margin-bottom: 25px;
}

.ingredients-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #4b5563;
}

.ingredients-list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: #22c55e;
}

.recipe-cta {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.btn-comprar-sample {
    background: linear-gradient(45deg, #f97316, #fb923c);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-comprar-sample:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

/* Responsividade para amostra de receita */
@media (max-width: 992px) {
    .recipe-sample-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recipe-image {
        text-align: center;
    }
    
    .recipe-image img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .recipe-details h3 {
        font-size: 1.8em;
    }
    
    .recipe-summary {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .recipe-details h3 {
        font-size: 1.6em;
    }
    
    .recipe-intro {
        font-size: 1em;
    }
    
    .btn-comprar-sample {
        width: 100%;
        text-align: center;
    }
}

