:root {
    /* Cores do tema escuro */
    --primary-color: #c8921a;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --bg-color: #0f0f0f;
    --section-bg: #1a1a1a;
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-gold: rgba(200, 146, 26, 0.3);
    
    /* Fontes */
    --title-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --color-primary: #c8921a;
    --color-secondary: #1a1a1a;
    --color-accent: #f5e6cc;
    --color-background: #0f0f0f;
    --color-background-alt: #1a1a1a;
    --color-text: #ffffff;
    --color-text-light: #cccccc;
    --color-light: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --header-height: 80px;
    --color-gray: #666666;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition-default: all 0.3s ease;
    --border-color: #2a2a2a;
    --header-bg: rgba(15, 15, 15, 0.95);
}

/* Animações globais */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Estilos base */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: var(--font-primary);
    line-height: 1.6;
}

/* Melhorias nos cards e seções */
.card, .faq-item, .testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card:hover, .faq-item:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 146, 26, 0.3);
}

/* Animações de entrada */
.animate-on-scroll {
    opacity: 0;
    animation: fadeIn 1s var(--transition-smooth) forwards;
}

/* Botão de tema */
.theme-toggle,
.sun-icon,
.moon-icon {
    display: none;
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--header-bg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    background-color: var(--header-bg);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.nav__logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav__item {
    list-style: none;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__list .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-primary), #e6a932);
    color: var(--color-light);
    border: none;
    box-shadow: 0 4px 15px rgba(200, 146, 26, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(200, 146, 26, 0.1);
    transform: translateY(-2px);
}

/* Menu Mobile */
.nav__toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.nav__toggle i {
    transition: transform 0.3s ease;
}

.nav__menu {
    display: flex;
}

@media screen and (max-width: 768px) {
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: 100vh;
        padding: 2rem 1.5rem;
        background-color: var(--bg-color);
        backdrop-filter: blur(10px);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 1.5rem;
        text-align: center;
        height: 100%;
        padding-top: 2rem;
    }

    .nav__link {
        color: var(--text-color);
        font-weight: 500;
        font-size: 1.1rem;
        display: block;
        padding: 0.75rem;
        transition: color 0.3s ease;
    }

    .nav__link:hover {
        color: var(--color-primary);
    }

    .nav__item .btn,
    .nav__item .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
        color: #fff;
        box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
        transition: all 0.3s ease;
    }

    .nav__item .btn:hover,
    .nav__item .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
        background: linear-gradient(45deg, #27ae60, #2ecc71);
    }

    .nav__item:last-child {
        margin-top: auto;
        padding-bottom: 2rem;
    }
}

/* Hero Section */
.hero {
    height: 700px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--bg-color);
    padding: calc(var(--header-height) + 2rem) 0 3rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
    padding-top: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-text);
}

.hero h1 span:first-child {
    color: #f5e6cc;
}

.hero h1 span:last-child {
    color: #ffffff;
}

.hero p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text-light);
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 0;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.6s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.golden-border {
    border: none;
    box-shadow: 
        0 10px 30px rgba(200, 146, 26, 0.2),
        0 0 0 2px rgba(200, 146, 26, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bg-primary {
    background-color: var(--color-primary);
}

.transform {
    transform: rotate(3deg);
}

.-z-10 {
    z-index: -1;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: calc(var(--header-height) + 1rem) 0 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        box-sizing: border-box;
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('images/pattern.png') repeat;
        opacity: 0.1;
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero-content {
        order: 1;
        text-align: center;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero h1 {
        text-align: center;
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0;
        width: 100%;
        max-width: 500px;
        font-family: var(--font-heading);
        color: var(--color-primary);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        position: relative;
        display: inline-block;
    }

    .hero h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    }

    .hero p {
        text-align: center;
        margin: 0.75rem auto;
        font-size: 1rem;
        padding: 0;
        width: 100%;
        max-width: 500px;
        color: var(--color-text-light);
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .hero-image {
        order: 2;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 320px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-width: 320px;
        margin: 0 auto;
        transform: none;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .hero-image img:hover {
        transform: scale(1.02);
    }

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

/* Botões */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: flex-start;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 146, 26, 0.4);
    background: linear-gradient(45deg, #e6a932, var(--color-primary));
}

.btn-secondary:hover {
    background: rgba(200, 146, 26, 0.1);
    transform: translateY(-2px);
}

/* Seções Gerais */
section {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

section:nth-child(even) {
    background-color: var(--color-background-alt);
}

.cta-section {
    background-color: #f7f2e9;
    color: #1a1a1a;
    text-align: center;
    padding: 4rem 2rem;
}

.section-title {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
}

.cta-section p {
    color: #1a1a1a;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section .btn {
    margin-top: 1rem;
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: #b17d0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(200, 146, 26, 0.2);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

/* Seção de Benefícios */
.benefits-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.benefits-section h2.section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    display: block;
    font-size: 40px;
    font-family: var(--font-heading);
}

.benefits-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e6a932);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-gold);
    border-color: rgba(200, 146, 26, 0.2);
}

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

.benefit-icon {
    width: 70px; /* Reduzido de 100px */
    height: 70px; /* Reduzido de 100px */
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(200, 146, 26, 0.2);
}

.benefit-icon i {
    font-size: 2.25rem; /* Reduzido de 3.25rem */
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 25px rgba(200, 146, 26, 0.3);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.15);
}

.benefit-content {
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 1.75rem;
    }

    .benefit-icon {
        width: 85px;
        height: 85px;
        margin-bottom: 1.25rem;
    }

    .benefit-icon i {
        font-size: 2.75rem;
    }
}

/* Features List e Target Audience */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.features-list, .target-audience {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.features-list::before, .target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e6a932);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-list:hover, .target-audience:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-gold);
    border-color: rgba(0, 38, 255, 0.2);
}

.features-list:hover::before, .target-audience:hover::before {
    opacity: 1;
}

.features-list h3, .target-audience h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.features-list h3::before, .target-audience h3::before {
    display: none;
}

.features-list ul, .target-audience ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li, .target-audience li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.features-list li:before, .target-audience li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    opacity: 1;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 146, 26, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(200, 146, 26, 0.2));
}

.features-list li:hover:before, .target-audience li:hover:before {
    transform: scale(1.1);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 8px rgba(200, 146, 26, 0.3);
}

.features-list li:hover, .target-audience li:hover {
    opacity: 1;
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .features-list, .target-audience {
        padding: 1.75rem;
    }

    .features-list h3, .target-audience h3 {
        font-size: 1.2rem;
        padding-left: 2.25rem;
    }

    .features-list h3::before, .target-audience h3::before {
        font-size: 1.5rem;
    }

    .features-list li, .target-audience li {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Seção Sobre */
.about-section {
    padding: 2rem 0;
    background: var(--bg-color);
    position: relative;
    background-image: url('images/fnd1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: soft-light;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 242, 233, 0.97) 0%, rgba(255, 245, 230, 0.97) 100%);
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

#sobre .section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: #1a1a1a !important;
    margin-bottom: 0.75rem;
    text-align: center;
}

.about-section .section-header .section-description {
    color: #333333;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

.about-card p {
    color: var(--color-text);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.social-link {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.social-link:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    flex: 1;
    max-width: 500px;
    max-height: 660px;
    margin: -2rem auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--card-border);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(200, 146, 26, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(200, 146, 26, 0.2);
    border-color: rgba(200, 146, 26, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    min-height: 660px;
    filter: brightness(1.02) contrast(1.05);
}

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

.about-text {
    color: var(--color-text) !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-light);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 146, 26, 0.3);
    background: linear-gradient(45deg, var(--color-primary), #e6a932);
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-primary);
}

.social-links {
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-bottom p {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: center;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section p {
        margin: 0 auto;
    }
}

/* Seção de Receitas */
.recipes-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 4rem;
}

.recipe-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid var(--color-primary);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-gold);
}

.recipe-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.recipe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recipe-card:hover .recipe-overlay {
    opacity: 1;
}

.recipe-content {
    padding: 1.25rem;
    text-align: center;
}

.recipe-content h3 {
    color: var(--title-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.recipe-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .recipes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-image {
        height: 180px;
    }
}

/* Seção de Ingredientes */
.ingredients-section {
    padding: 5rem 0;
    background: var(--bg-color);
    position: relative;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.ingredients-section .section-header .section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.ingredient-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-gold);
    border-color: var(--primary-color);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 146, 26, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 8px rgba(200, 146, 26, 0.15);
    border: 2px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.ingredient-icon i {
    font-size: 1.75rem;
    color: var(--text-color);
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.1);
}

.ingredient-card:hover .ingredient-icon i {
    transform: scale(1.1);
    color: var(--text-color);
}

.ingredient-card h3 {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-family: var(--title-font);
    font-weight: 600;
}

.ingredient-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .ingredient-card {
        padding: 1.25rem;
    }
    
    .ingredient-icon {
        width: 50px;
        height: 50px;
    }
    
    .ingredient-icon i {
        font-size: 1.5rem;
    }
    
    .ingredient-card h3 {
        font-size: 1rem;
    }
    
    .ingredient-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

/* Seção de Depoimentos */
.testimonials-section {
    display: none; /* Ocultando a seção de depoimentos */
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color-light), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-gold);
    border-color: var(--primary-color-light);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--color-primary);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--title-color);
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Seção de Preço */
.pricing-section {
    position: relative;
    padding: 6rem 2rem;
    background: url('images/fnd1.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    z-index: -1;
}

.pricing-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    width: 100%;
    max-width: 800px;
}

.pricing-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-card {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(200, 146, 26, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 80px rgba(200, 146, 26, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 100px rgba(200, 146, 26, 0.2);
    border-color: rgba(200, 146, 26, 0.5);
}

.features-title {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 1rem 0 2rem;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: none;
}

.pricing-card .features-list {
    text-align: left;
    margin: 2rem 0 1rem 0;
    padding: 1.5rem 1rem 1.5rem 2rem;
    background: transparent;
    list-style: none;
}

.pricing-card .features-list li {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    background: transparent;
}

.pricing-card .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary), #e6a932);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(200, 146, 26, 0.3);
}

.pricing {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(200, 146, 26, 0.2);
}

.old-price {
    color: #ff6b6b;
    text-decoration: line-through;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    opacity: 0.8;
}

.new-price {
    color: #2ecc71;
    font-size: 3.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    line-height: 1;
    margin: 0;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary.pricing-btn {
    background: linear-gradient(45deg, var(--color-primary), #e6a932);
    padding: 1.25rem 3rem;
    font-size: 1.4rem;
    border-radius: 50px;
    margin: 2rem 0;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(200, 146, 26, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary.pricing-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(200, 146, 26, 0.4);
    background: linear-gradient(45deg, #e6a932, var(--color-primary));
}

.guarantee {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-family: var(--font-heading);
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 1.5rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.guarantee-text {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0.5rem auto;
    text-align: center;
    max-width: 280px;
    padding: 0;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .pricing-card {
        width: calc(100% - 1rem);
        margin: 0 auto;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
        max-width: 100%;
    }

    .guarantee,
    .guarantee-text {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding: 0;
        box-sizing: border-box;
    }

    .guarantee {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .guarantee-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem 1rem;
        box-sizing: border-box;
    }

    .pricing-card .features-list {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .pricing-card .features-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .pricing-card .features-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .pricing {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .new-price {
        font-size: 2.8rem;
    }

    .pricing-card .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
    }

    .guarantee {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .guarantee-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }

    .pricing-section .section-title {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Seção FAQ */
.faq-section {
    background: var(--bg-color);
    padding: 2rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--title-font);
    font-size: 2.5rem;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 1rem 0 1rem;
    background: var(--bg-color);
    border-radius: 8px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(200, 146, 26, 0.15);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-family: var(--title-font);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.8rem;
    }
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 2rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-section p,
.footer-section ul li {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 1rem 1rem;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a,
    .footer-section ul li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero {
        padding: 0 2rem;
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }

    .menu-button {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu .btn {
        margin: 0;
        width: 100%;
    }

    .menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
        padding-top: calc(var(--header-height) + 2rem);
        min-height: auto;
        gap: 1rem;
    }

    .hero-content {
        order: 2;
        padding: 2rem 1rem;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin: 1.5rem auto;
    }

    .hero-image {
        order: 1;
        padding: 1rem;
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 350px;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 250px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 0.65rem 1.5rem;
    }

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

    .about-image {
        order: -1;
        height: 500px;
        max-width: 100%;
        margin: 0 auto;
        transform: none;
    }

    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: top center;
        border-radius: 20px;
        min-height: auto;
    }

    .about-text {
        text-align: center;
        padding: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .about-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item h3 {
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active p {
    padding: 1rem;
    max-height: 1000px;
}

/* Contador */
.countdown {
    display: none;
}

/* Imagens das Receitas */
.geleia-image {
    background-image: url('images/geleia.jpg');
}

.bolo-image {
    background-image: url('images/bolo.jpg');
}

.morango-image {
    background-image: url('images/morango.jpg');
}

.pudim-image {
    background-image: url('images/pudim.jpg');
}

.bg-primary-light {
    background-color: #f7f2e9;
}

.text-primary {
    color: var(--color-primary);
}

.border-primary {
    border-color: var(--color-primary);
}

.recipe-title {
    font-family: var(--font-heading);
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.recipe-title::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background-color: var(--color-primary);
    bottom: -5px;
    left: 0;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 146, 26, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 8px rgba(200, 146, 26, 0.15);
    border: 2px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.1);
}

.ingredient-card:hover .ingredient-icon i {
    transform: scale(1.1);
    color: var(--text-color);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    .menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

/* Ajustes para elementos específicos no tema escuro */
.dark-theme .card,
.dark-theme .faq-item,
.dark-theme .testimonial-card,
.dark-theme .highlight-card,
.dark-theme .benefit-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dark-theme .header {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .header.scrolled {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
}

.dark-theme .nav-link:hover {
    color: var(--primary-color);
}

.dark-theme .benefit-icon {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(200, 146, 26, 0.3);
}

.dark-theme .benefit-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 146, 26, 0.4);
}

.dark-theme .highlights-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.dark-theme .section-title {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-theme .btn-primary {
    background: linear-gradient(145deg, var(--primary-color), #e6a81f);
    border: none;
    box-shadow: 0 4px 15px rgba(200, 146, 26, 0.3);
}

.dark-theme .btn-primary:hover {
    background: linear-gradient(145deg, #e6a81f, var(--primary-color));
    box-shadow: 0 6px 20px rgba(200, 146, 26, 0.4);
}

.dark-theme .btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.dark-theme .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

.mobile-menu {
    background-color: var(--bg-color);
}

.highlights-section {
    padding: 4rem 0 2rem 0; /* Reduzindo o padding bottom de 4rem para 2rem */
    background: var(--bg-color);
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-gold);
    border-color: rgba(200, 146, 26, 0.3);
}

.highlight-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-image {
    transform: scale(1.1);
}

.highlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        transparent 100%);
    color: white;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-content {
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    padding-bottom: 2.5rem;
}

.highlight-title {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-primary);
}

.highlight-card:hover .highlight-title {
    transform: translateY(-5px);
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .highlight-card {
        height: 240px;
    }
}

@media screen and (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 968px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.hero .btn {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 160px;
    transition: all 0.3s ease;
}

.hero .btn-primary {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.hero .btn-primary:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.hero .btn-secondary {
    background: #f5e6cc;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.hero .btn-secondary:hover {
    transform: none;
    background: #f5e6cc;
}

.highlights-section .section-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    display: block;
}

.highlights-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.target-audience {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.target-audience:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(200, 146, 26, 0.2);
    border-color: rgba(200, 146, 26, 0.3);
}

.target-audience:hover::before {
    opacity: 1;
}

.target-audience h3 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
}

.target-audience h3::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 2rem;
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(200, 146, 26, 0.2));
}

.target-audience ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-audience li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.target-audience li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    opacity: 1;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 146, 26, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(200, 146, 26, 0.2));
}

.target-audience li:hover {
    transform: translateX(5px);
    opacity: 1;
}

.target-audience li:hover:before {
    transform: scale(1.1);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 8px rgba(200, 146, 26, 0.3);
}

@media screen and (max-width: 768px) {
    .target-audience {
        padding: 1.75rem;
    }

    .target-audience h3 {
        font-size: 1.3rem;
        padding-left: 2.25rem;
    }

    .target-audience h3::before {
        font-size: 1.5rem;
    }

    .target-audience li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
}

.pricing-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    width: 100%;
    max-width: 800px;
}

.pricing-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }

    .pricing-section .section-title {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}

.nav__item:nth-child(4) {
    display: none;
}

.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0; /* Removendo a margem inferior */
}

.cta-button-container .btn {
    margin: 0 auto;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 160px;
}

.cta-button-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.pricing-card .btn-primary {
    margin: 0 auto;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
    padding: 0.75rem 1.75rem;
    font-size: 1.2rem; /* Aumentado de 1rem */
    font-weight: 600;
    width: 120px;
    display: block;
    text-decoration: none;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

@media (max-width: 768px) {
    /* Estilo global para todos os botões em mobile */
    .btn, 
    .btn-primary, 
    .btn-secondary,
    .nav__item .btn,
    .hero .btn,
    .cta-section .btn,
    .pricing-card .btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin: 0.5rem auto;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Ajuste específico para container de botões */
    .cta-buttons,
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 1.5rem auto;
    }

    /* Ajuste para botões no header */
    .nav__list .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
    }

    /* Ajuste para botões na seção de pricing */
    .pricing-card .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
    }

    /* Ajuste para botões na seção CTA */
    .cta-section .btn,
    .cta-button-container .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
    }
}

@media (max-width: 768px) {
    /* Ajustes específicos para os botões da seção hero */
    .hero .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 1.5rem auto;
        gap: 1rem;
    }

    .hero .cta-buttons .btn {
        width: 100%;
        margin: 0;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    /* Ajustes específicos para a seção de pricing */
    .pricing-card {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .pricing-card .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Estilo global para todos os botões em mobile */
    .btn, 
    .btn-primary, 
    .btn-secondary,
    .nav__item .btn,
    .cta-section .btn {
        width: 100%;
        max-width: 280px;
        min-width: unset;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        margin: 0.5rem auto;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Ajuste específico para container de botões */
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 1.5rem auto;
    }
}

@media (max-width: 768px) {
    /* Ajuste geral de containers */
    .container {
        padding: 0 1rem;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    /* Ajuste da seção de pricing */
    .pricing-section {
        padding: 4rem 0.5rem;
    }

    .pricing-section .section-title {
        padding: 0 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-card {
        width: calc(100% - 2rem);
        margin: 0 auto;
        padding: 2rem 1rem;
        box-sizing: border-box;
        max-width: 400px;
    }

    .pricing-card .features-list {
        padding: 0.5rem;
        margin: 1.5rem auto;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-card .features-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing {
        width: 100%;
        margin: 1.5rem auto;
        padding: 1rem 0.5rem;
        box-sizing: border-box;
    }

    .old-price,
    .new-price,
    .guarantee,
    .guarantee-text {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Ajuste dos botões */
    .pricing-card .btn-primary {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
        box-sizing: border-box;
    }

    /* Ajuste geral de textos */
    .section-description,
    .section-title,
    .features-title {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    cursor: pointer;
    border: none;
    outline: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.back-to-top i {
    font-size: 1.5rem;
    color: #fff;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top i {
        font-size: 1.25rem;
    }
}
