:root {
    /* Paleta de Cores */
    --bege-claro: #FAF5EF;
    --rosa-terroso: #E9A6A0;
    --verde-oliva: #A8B9A5;
    --marrom-acinzentado: #6E6259;
    --branco-puro: #FFFFFF;
    
    /* Cores de destaque */
    --destaque-1: #E9A6A0;
    --destaque-2: #A8B9A5;
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transições e efeitos */
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: var(--font-primary);
    background-color: var(--bege-claro);
    color: var(--marrom-acinzentado);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    background-color: var(--branco-puro);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 5%;
}

.logo {
    height: 70px;
}

.logo-img {
    height: 100%;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--marrom-acinzentado);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--rosa-terroso);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rosa-terroso);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-receitas {
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    color: var(--branco-puro);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 166, 160, 0.3);
}

.btn-receitas:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 166, 160, 0.4);
}

.btn-share {
    background: transparent;
    border: 1px solid var(--verde-oliva);
    color: var(--verde-oliva);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-share:hover {
    background-color: var(--verde-oliva);
    color: var(--branco-puro);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--marrom-acinzentado);
}

/* Hero Section - MELHORADA */
.hero {
    padding: 120px 14% 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--marrom-acinzentado);
}

.title-highlight {
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgb(15, 15, 15);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(233, 166, 160, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(233, 166, 160, 0.8), 0 0 40px rgba(168, 185, 165, 0.6);
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--marrom-acinzentado);
    line-height: 1.7;
}

.description-highlight {
    color: var(--rosa-terroso);
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(233, 166, 160, 0.3);
}

.description-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rosa-terroso), var(--verde-oliva));
    opacity: 0.7;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.hero-description:hover .description-highlight::after {
    transform: scaleX(1);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    color: var(--branco-puro);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(233, 166, 160, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 166, 160, 0.7);
}

.btn-cta i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 800px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(233, 166, 160, 0.1),
        0 0 0 5px rgba(168, 185, 165, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva), var(--marrom-acinzentado));
    z-index: -2;
    border-radius: 40px;
    opacity: 0.8;
    animation: borderRotate 8s linear infinite;
    filter: blur(10px);
}

.image-container::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: var(--branco-puro);
    z-index: -1;
    border-radius: 28px;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.nutri-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    border-radius: 25px;
    transform: translateZ(20px);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 166, 160, 0.2) 0%, rgba(168, 185, 165, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.7s ease;
    border-radius: 25px;
}

.image-container:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(233, 166, 160, 0.2),
        0 0 0 10px rgba(168, 185, 165, 0.1);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .nutri-image {
    transform: scale(1.08) translateZ(30px);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.crn-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    color: var(--marrom-acinzentado);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 166, 160, 0.2);
    z-index: 3;
    transition: var(--transition);
}

.crn-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stats-container {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 185, 165, 0.2);
    z-index: 3;
    transition: var(--transition);
}

.stats-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--rosa-terroso);
    text-shadow: 0 2px 10px rgba(233, 166, 160, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: var(--marrom-acinzentado);
    font-weight: 600;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--branco-puro);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
    animation: pulse 2s infinite;
}

.btn-top {
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
}

.btn-imc {
    background: linear-gradient(135deg, var(--verde-oliva), var(--marrom-acinzentado));
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modal de Receitas - COM LOGO */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: var(--branco-puro);
    max-width: 700px;
    margin: 50px auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    color: var(--branco-puro);
    padding: 20px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-logo {
    height: 50px!important;
}

.modal-logo-img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--branco-puro);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.intro-message {
    background-color: rgba(233, 166, 160, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--rosa-terroso);
}

.intro-message p {
    margin: 0;
    color: var(--marrom-acinzentado);
    font-size: 1.1rem;
    line-height: 1.6;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.recipe-card {
    background: var(--branco-puro);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    height: 180px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-content {
    padding: 15px;
}

.recipe-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--marrom-acinzentado);
    margin-bottom: 10px;
}

.recipe-type {
    display: inline-block;
    background-color: var(--verde-oliva);
    color: var(--branco-puro);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modal de Receita Individual */
.recipe-modal {
    display: none;
}

.recipe-full-content {
    white-space: pre-line;
    font-size: 1.1rem;
    line-height: 1.8;
}

.recipe-full-content h3 {
    color: var(--rosa-terroso);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.recipe-full-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.recipe-full-content p {
    margin-bottom: 15px;
}

.recipe-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    flex: 1;
}

.action-btn i {
    margin-right: 8px;
}

.action-btn-download {
    background-color: var(--rosa-terroso);
    color: var(--branco-puro);
}

.action-btn-download:hover {
    background-color: #d8918a;
}

.action-btn-share {
    background-color: var(--verde-oliva);
    color: var(--branco-puro);
}

.action-btn-share:hover {
    background-color: #95a792;
}

.recipe-author {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--marrom-acinzentado);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--rosa-terroso);
    font-weight: 500;
}

/* Modal de Compartilhamento */
.share-modal {
    display: none;
}

.share-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.share-option:hover {
    transform: translateY(-5px);
}

.share-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--branco-puro);
}

.share-whatsapp {
    background-color: #25D366;
}

.share-facebook {
    background-color: #3b5998;
}

.share-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.share-twitter {
    background-color: #1DA1F2;
}

.share-text {
    font-size: 0.9rem;
    color: var(--marrom-acinzentado);
}

/* Modal de IMC */
.imc-modal {
    display: none;
}

.imc-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--marrom-acinzentado);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--rosa-terroso);
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 166, 160, 0.1);
}

.imc-result {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: rgba(168, 185, 165, 0.1);
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.imc-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rosa-terroso);
    margin-bottom: 10px;
}

.imc-classification {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--marrom-acinzentado);
    margin-bottom: 20px;
}

.imc-message {
    margin-bottom: 20px;
}

.btn-agendar {
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    color: var(--branco-puro);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 166, 160, 0.3);
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 166, 160, 0.4);
}

/* Elementos decorativos de nutrição */
.nutrition-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.nutrition-element {
    position: absolute;
    opacity: 0.1;
    animation: floatElement 20s infinite linear;
}

.nutrition-element:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 3rem;
    color: var(--rosa-terroso);
    animation-duration: 25s;
}

.nutrition-element:nth-child(2) {
    top: 20%;
    right: 10%;
    font-size: 2.5rem;
    color: var(--verde-oliva);
    animation-duration: 30s;
}

.nutrition-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    font-size: 2rem;
    color: var(--marrom-acinzentado);
    animation-duration: 35s;
}

.nutrition-element:nth-child(4) {
    bottom: 25%;
    right: 5%;
    font-size: 2.8rem;
    color: var(--rosa-terroso);
    animation-duration: 40s;
}

@keyframes floatElement {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Seção Poderosamente Leve - CORRIGIDA PARA MOBILE */
.powerfully-light {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--bege-claro) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.powerfully-light .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--marrom-acinzentado);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    border-radius: 4px;
    opacity: 0.8;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--verde-oliva), var(--rosa-terroso));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--marrom-acinzentado);
    max-width: 700px;
    margin: 25px auto 0;
    font-weight: 500;
    position: relative;
    padding: 0 15px;
    line-height: 1.6;
}

.highlight-name {
    color: var(--rosa-terroso);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--rosa-terroso), var(--verde-oliva));
    border-radius: 2px;
    opacity: 0.8;
}

.marketing-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
    min-height: auto;
}

.marketing-text {
    order: 2;
}

.intro-message {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-left: 5px solid var(--rosa-terroso);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 166, 160, 0.15);
    position: relative;
    overflow: hidden;
}

.intro-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 166, 160, 0.05) 0%, rgba(168, 185, 165, 0.05) 100%);
    z-index: -1;
}

.intro-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--marrom-acinzentado);
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: var(--branco-puro);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(233, 166, 160, 0.12);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 166, 160, 0.02) 0%, rgba(168, 185, 165, 0.02) 100%);
    z-index: -1;
    border-radius: 16px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(233, 166, 160, 0.1);
}

.benefit-card.active {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(233, 166, 160, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    gap: 15px;
}

.card-header:hover {
    background: linear-gradient(135deg, rgba(233, 166, 160, 0.03) 0%, rgba(168, 185, 165, 0.03) 100%);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco-puro);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(233, 166, 160, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.benefit-card:hover .card-icon::before {
    left: 100%;
}

.benefit-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(233, 166, 160, 0.35);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--marrom-acinzentado);
    margin: 0;
    flex: 1;
    position: relative;
    line-height: 1.3;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rosa-terroso), var(--verde-oliva));
    transition: var(--transition);
}

.benefit-card:hover .card-title::after {
    width: 100%;
}

.card-toggle {
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    border: none;
    color: var(--branco-puro);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233, 166, 160, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.4s;
}

.card-toggle:hover::before {
    left: 100%;
}

.card-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(233, 166, 160, 0.4);
}

.card-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
}

.benefit-card.active .card-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.card-content p {
    margin-bottom: 20px;
    color: var(--marrom-acinzentado);
    line-height: 1.6;
    font-size: 1rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.feature:hover {
    background: rgba(233, 166, 160, 0.08);
    border-left: 3px solid var(--rosa-terroso);
    transform: translateX(3px);
}

.feature i {
    color: var(--verde-oliva);
    font-size: 0.9rem;
    width: 22px;
    height: 22px;
    background: rgba(168, 185, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature span {
    color: var(--marrom-acinzentado);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
}

.marketing-image {
    position: relative;
    order: 1;
    height: auto;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(233, 166, 160, 0.08),
        0 0 0 8px rgba(255, 255, 255, 0.8);
    height: 400px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva), var(--marrom-acinzentado));
    z-index: -2;
    border-radius: 25px;
    opacity: 0.2;
    animation: borderRotate 15s linear infinite;
    filter: blur(12px);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: var(--branco-puro);
    z-index: -1;
    border-radius: 16px;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.02);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(233, 166, 160, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.9);
}

.nutri-marketing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.05) contrast(1.05) saturate(1.05);
    border-radius: 16px;
}

.image-wrapper:hover .nutri-marketing-image {
    transform: scale(1.03);
    filter: brightness(1.08) contrast(1.1) saturate(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.8;
    transition: var(--transition);
    border-radius: 16px;
}

.image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    color: var(--branco-puro);
    z-index: 2;
    text-align: center;
}

.image-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.image-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    opacity: 0.9;
}

.btn-marketing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    color: var(--branco-puro);
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 3px 0 rgba(233, 166, 160, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
}

.btn-marketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.4s;
    z-index: -1;
}

.btn-marketing:hover::before {
    left: 100%;
}

.btn-marketing:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 5px 0 rgba(233, 166, 160, 0.5);
}

.btn-marketing:active {
    transform: translateY(0) scale(1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        0 2px 0 rgba(233, 166, 160, 0.4);
}

.btn-marketing i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-marketing:hover i {
    transform: translateX(5px) scale(1.05);
}

/* Elementos flutuantes decorativos - Reduzidos para mobile */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.08;
    animation: floatAround 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 8%;
    left: 3%;
    color: var(--rosa-terroso);
    animation-duration: 25s;
}

.floating-element:nth-child(2) {
    top: 15%;
    right: 5%;
    color: var(--verde-oliva);
    animation-duration: 30s;
}

.floating-element:nth-child(3) {
    bottom: 12%;
    left: 8%;
    color: var(--marrom-acinzentado);
    animation-duration: 35s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    right: 3%;
    color: var(--rosa-terroso);
    animation-duration: 40s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(15px, -15px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translate(0, -30px) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(-15px, -15px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Efeito de partículas - Reduzido para mobile */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    border-radius: 50%;
    opacity: 0.05;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-60px) translateX(30px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Media Queries para responsividade */
@media (min-width: 768px) {
  
    .powerfully-light {
        padding: 100px 5%;
    }
    
    .section-header {
        margin-bottom: 80px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .marketing-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
    
    .marketing-text {
        order: 1;
    }
    
    .marketing-image {
        order: 2;
        position: sticky;
        top: 120px;
        height: 600px;
    }
    
    .image-wrapper {
        height: 600px;
    }
    
    .intro-message {
        padding: 35px;
    }
    
    .intro-message p {
        font-size: 1.2rem;
    }
    
    .benefits-cards {
        gap: 25px;
    }
    
    .benefit-card {
        border-radius: 18px;
    }
    
    .card-header {
        padding: 25px;
        gap: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-content {
        padding: 0 25px;
    }
    
    .benefit-card.active .card-content {
        padding: 0 25px 25px;
    }
    
    .card-content p {
        font-size: 1.1rem;
    }
    
    .feature {
        padding: 12px 15px;
    }
    
    .feature i {
        font-size: 1rem;
        width: 24px;
        height: 24px;
    }
    
    .feature span {
        font-size: 1rem;
    }
    
    .image-content {
        padding: 40px;
    }
    
    .image-content h3 {
        font-size: 1.8rem;
    }
    
    .image-content p {
        font-size: 1.2rem;
    }
    
    .btn-marketing {
        padding: 16px 35px;
        font-size: 1.1rem;
        width: auto;
    }
    
    .floating-element {
        font-size: 2rem;
        opacity: 0.1;
    }
}

@media (min-width: 992px) {
    .powerfully-light {
        padding: 120px 5%;
    }
    
    .section-title {
        font-size: 4.5rem;
    }
    
    .marketing-content {
        gap: 80px;
    }
    
    .marketing-image {
        height: 800px;
    }
    
    .image-wrapper {
        height: 800px;
    }
    
    .intro-message {
        padding: 40px;
    }
    
    .intro-message p {
        font-size: 1.3rem;
    }
    
    .benefits-cards {
        gap: 30px;
    }
    
    .card-header {
        padding: 30px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .card-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .image-content {
        padding: 50px;
    }
    
    .image-content h3 {
        font-size: 2.2rem;
    }
    
    .image-content p {
        font-size: 1.3rem;
    }
    
    .btn-marketing {
        padding: 18px 40px;
        font-size: 1.3rem;
    }
    
    .floating-element {
        font-size: 2.5rem;
    }
}
/* Testimonials Section */
.testimonials02 {
    margin-top: 0px;
    padding: 20px 5%;
    background: linear-gradient(135deg, var(--branco-puro) 0%, var(--bege-claro) 100%);
    position: relative;
}

.container02 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title02 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--marrom-acinzentado);
    margin-bottom: 60px;
    line-height: 1.2;
}

.highlight22 {
    color: var(--rosa-terroso);
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.testimonials-container02 {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
}

/* Testimonial Cards */
.testimonial-track02 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 400px;
}

.testimonial-card02 {
    position: absolute;
    width: 45%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

/* Card positions */
.testimonial-card02.prev02 {
    transform: translateX(-80%) scale(0.85);
    filter: blur(5px);
    opacity: 0.7;
    z-index: 1;
}

.testimonial-card02.active02 {
    transform: translateX(0) scale(1);
    filter: blur(0);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(233, 166, 160, 0.3);
}

.testimonial-card02.next02 {
    transform: translateX(80%) scale(0.85);
    filter: blur(5px);
    opacity: 0.7;
    z-index: 1;
}

.testimonial-card02.hidden02 {
    transform: translateX(-120%) scale(0.7);
    filter: blur(8px);
    opacity: 0;
    z-index: 0;
}

.testimonial-card02.far-next02 {
    transform: translateX(120%) scale(0.7);
    filter: blur(8px);
    opacity: 0;
    z-index: 0;
}

/* Card content - ONLY IMAGE */
.testimonial-image02 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Controls */
.testimonial-controls02 {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.control-btn02 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(110, 98, 89, 0.7);
    border: 2px solid var(--rosa-terroso);
    color: var(--rosa-terroso);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.control-btn02:hover {
    background: var(--rosa-terroso);
    color: var(--branco-puro);
    transform: scale(1.1);
}

/* Indicators */
.testimonial-indicators02 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.indicator02 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(110, 98, 89, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator02.active02 {
    background: var(--rosa-terroso);
    transform: scale(1.2);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--marrom-acinzentado) 0%, #5a524a 100%);
    color: var(--branco-puro);
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column:first-child {
    grid-column: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-footer {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--rosa-terroso);
    width: 16px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--branco-puro);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--rosa-terroso);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--rosa-terroso);
    transform: translateX(5px);
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--rosa-terroso);
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    color: var(--rosa-terroso);
    font-weight: 600;
}

.emergency-contact {
    margin-top: 20px;
    padding: 15px;
    background: rgba(233, 166, 160, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--rosa-terroso);
}

.emergency-contact p {
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-contact i {
    color: var(--rosa-terroso);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--branco-puro);
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube:hover {
    background: #FF0000;
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link i {
    width: 20px;
    text-align: center;
}

.map-container {
    margin-top: 20px;
}

.map-title {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--branco-puro);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rosa-terroso);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--verde-oliva);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 40px 0;
}

.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-actions {
    display: flex;
    gap: 15px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--rosa-terroso), var(--verde-oliva));
    color: var(--branco-puro);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 166, 160, 0.4);
}

/* Responsividade - ATUALIZADA COM BOTÕES NO MENU HAMBURGUER */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .image-container {
        max-width: 450px;
        height: 550px;
    }
    
    .marketing-content {
        gap: 60px;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .image-wrapper {
        height: 600px;
    }
    
    .testimonial-card02 {
        width: 50%;
        height: auto;
    }
    
    .testimonial-card02.prev02 {
        transform: translateX(-70%) scale(0.85);
    }
    
    .testimonial-card02.next02 {
        transform: translateX(70%) scale(0.85);
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 5% 80px;
        gap: 60px;
    }
    
    /* IMAGEM PRIMEIRO NO MOBILE */
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .image-container {
        max-width: 400px;
        height: 500px;
        margin: 0 auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--branco-puro);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav.active .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative; /* Mude para relative */
        width: 100%;
        background-color: var(--branco-puro);
        padding: 20px;
        border-top: 1px solid #eee;
        margin-top: 0; /* Garante que fique logo após os links */
    }
    
    
    .nav.active .nav-buttons .btn-receitas,
    .nav.active .nav-buttons .btn-share {
        width: 100%;
        justify-content: center;
    }
    
    .modal-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .marketing-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .marketing-image {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .image-wrapper {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .image-container {
        max-width: 350px;
        height: 450px;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-actions {
        flex-direction: column;
    }
    
    .share-options {
        flex-wrap: wrap;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .powerfully-light {
        padding: 80px 5%;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-message {
        padding: 30px;
    }
    
    .intro-message p {
        font-size: 1.2rem;
    }
    
    .card-header {
        padding: 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .image-content {
        padding: 40px;
    }
    
    .image-content h3 {
        font-size: 1.8rem;
    }
    
    .image-content p {
        font-size: 1.2rem;
    }
    
    .btn-marketing {
        padding: 16px 35px;
        font-size: 1.2rem;
    }
    
    .testimonials02 {
        padding: 60px 5%;
    }
    
    .section-title02 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .testimonials-container02 {
        height: 350px;
    }
    
    .testimonial-track02 {
        height: 300px;
    }
    
    .testimonial-card02 {
        width: 60%;
    }
    
    .testimonial-card02.prev02 {
        transform: translateX(-60%) scale(0.8);
    }
    
    .testimonial-card02.next02 {
        transform: translateX(60%) scale(0.8);
    }
    
    .control-btn02 {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .testimonials02 {
        margin-top: 100px;
        padding: 20px 5%;
        background: linear-gradient(135deg, var(--branco-puro) 0%, var(--bege-claro) 100%);
        position: relative;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .image-container {
        max-width: 300px;
        height: 400px;
    }
    
    .modal-content {
        margin: 20px auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .stats-container, .crn-badge {
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .card-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-icon {
        margin-right: 0;
    }
    
    .card-content {
        padding: 0 20px;
    }
    
    .benefit-card.active .card-content {
        padding: 0 20px 20px;
    }
    
    .image-wrapper {
        height: 400px;
    }
    
    .image-content {
        padding: 30px;
    }
    
    .image-content h3 {
        font-size: 1.6rem;
    }
    
    .image-content p {
        font-size: 1.1rem;
    }
    
    .btn-marketing {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .testimonials02 {
        padding: 40px 5%;
    }
    
    .section-title02 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .highlight22 {
        font-size: 2rem;
    }
    
    .testimonials-container02 {
        height: 300px;
    }
    
    .testimonial-track02 {
        height: 250px;
    }
    
    .testimonial-card02 {
        width: 80%;
    }
    
    .testimonial-card02.prev02 {
        transform: translateX(-50%) scale(0.75);
    }
    
    .testimonial-card02.next02 {
        transform: translateX(50%) scale(0.75);
    }
    
    .control-btn02 {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-btn {
        justify-content: center;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .map-wrapper iframe {
        height: 180px;
    }
}

/* CORREÇÕES PARA MENU MOBILE */
@media (max-width: 992px) {
    .nav.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--branco-puro);
        z-index: 1001;
        overflow-y: auto;
        padding: 80px 20px 20px;
    }
    
    .nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 0;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .nav.active .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
        width: 100%;
    }
    
    .nav.active .nav-buttons .btn-receitas,
    .nav.active .nav-buttons .btn-share {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    /* Garantir que o menu toggle fique acima do menu */
    .menu-toggle {
        position: relative;
        z-index: 1002;
    }
}

/* PREVENIR SCROLL HORIZONTAL */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container, .container02 {
    max-width: 100%;
    overflow: hidden;
}

/* CORREÇÃO PARA BOTÕES FLUTUANTES EM MOBILE */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        z-index: 999;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}