/* ===================================================
   BEM NUTRIR BABY FOOD – Main Stylesheet
   Cores: Laranja #FF6B35, Verde #4CAF50, Amarelo #FFC107
   Fonte: Nunito + Baloo 2
=================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange:      #FF6B35;
    --orange-dark: #E55B25;
    --orange-light:#FF8C42;
    --green:       #4CAF50;
    --green-dark:  #388E3C;
    --green-light: #66BB6A;
    --yellow:      #FFC107;
    --yellow-dark: #F9A825;
    --purple:      #9C27B0;
    --blue:        #2196F3;
    --red:         #F44336;
    --white:       #FFFFFF;
    --off-white:   #FFF8F2;
    --light-bg:    #FFF3E8;
    --text-dark:   #1A1A2E;
    --text-mid:    #444460;
    --text-light:  #888;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg:   0 12px 48px rgba(0,0,0,0.15);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   28px;
    --radius-xl:   48px;
    --transition:  0.3s ease;
    --font-body:   'Nunito', sans-serif;
    --font-head:   'Baloo 2', cursive;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title .highlight {
    color: var(--orange);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 4px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.5);
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover {
    color: var(--orange);
}

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

.nav-logo .logo-img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    transition: transform var(--transition);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
}

.nav-cta {
    background: var(--white);
    color: var(--orange) !important;
    text-shadow: none !important;
    box-shadow: 0 4px 12px rgba(255,107,53,0.25);
}

.nav-cta:hover {
    background: var(--orange) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 30%, #FFC107 65%, #66BB6A 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: floatBubble linear infinite;
}

.bubble-1 { width: 320px; height: 320px; background: white; top: -80px; right: -80px; animation-duration: 18s; }
.bubble-2 { width: 200px; height: 200px; background: white; bottom: 100px; left: -60px; animation-duration: 22s; animation-delay: -5s; }
.bubble-3 { width: 120px; height: 120px; background: white; top: 200px; left: 60px; animation-duration: 15s; animation-delay: -8s; }
.bubble-4 { width: 160px; height: 160px; background: white; bottom: 200px; right: 200px; animation-duration: 20s; animation-delay: -3s; }
.bubble-5 { width: 80px; height: 80px; background: white; top: 50%; right: 100px; animation-duration: 12s; animation-delay: -10s; }

@keyframes floatBubble {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* Stars */
.star {
    position: absolute;
    font-size: 2rem;
    color: rgba(255,255,255,0.4);
    animation: twinkle 3s ease-in-out infinite;
}
.star-1 { top: 15%; left: 10%; animation-delay: 0s; }
.star-2 { top: 25%; right: 15%; animation-delay: 1s; }
.star-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.star-4 { bottom: 30%; right: 10%; animation-delay: 0.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(15deg); }
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease both;
}

.badge-icon { font-size: 1.1rem; }

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-bem { color: var(--white); }
.title-nutrir { color: #FFF3CD; }
.title-tagline {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    display: block;
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Countdown Card */
.coming-soon-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.3);
    animation: scaleIn 0.8s ease 0.3s both;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.coming-soon-header { text-align: center; margin-bottom: 28px; }
.cs-emoji { font-size: 3rem; display: block; margin-bottom: 8px; animation: bounce 2s ease infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cs-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
}
.cs-sub {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* Countdown Grid */
.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}

.countdown-item {
    text-align: center;
    flex: 1;
}

.countdown-num {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 60px;
    display: block;
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    background-color: var(--light-bg);
    -webkit-text-fill-color: unset;
    color: var(--orange);
}

.countdown-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 4px;
}

.countdown-sep {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.5;
    padding-bottom: 20px;
}

/* Newsletter */
.newsletter-form { text-align: center; }
.newsletter-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 12px;
    font-weight: 600;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--orange);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.newsletter-feedback {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    min-height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ===== SOBRE SECTION ===== */
.sobre {
    padding: 100px 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sobre-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.sobre-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.sobre-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.sobre-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.sobre-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sobre-card p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ===== PRODUTOS SECTION ===== */
.produtos {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.produtos-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--text-mid);
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-color: var(--orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card.hidden {
    display: none;
}

.product-img-wrap {
    position: relative;
    background: linear-gradient(135deg, #FFF8F0, #FFF3E0);
    padding: 28px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrap img {
    height: 170px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08) rotate(-2deg);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.saqueta {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
}

.product-badge.caixa {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

.product-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.tag-green { background: #E8F5E9; color: var(--green-dark); }
.tag-yellow { background: #FFF9C4; color: #F57F17; }
.tag-orange { background: #FFF3E0; color: #E65100; }
.tag-red { background: #FFEBEE; color: #C62828; }
.tag-blue { background: #E3F2FD; color: #1565C0; }
.tag-purple { background: #F3E5F5; color: #6A1B9A; }

/* ===== NUTRIÇÃO SECTION ===== */
.nutricao {
    padding: 100px 0;
    background: var(--white);
}

.nutricao-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nutricao-img-container {
    position: relative;
}

.nutricao-main-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.nutricao-badge-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.nutricao-badge-float.oms {
    bottom: 24px;
    left: -20px;
    color: var(--green-dark);
}

.nutricao-badge-float.oms i { color: var(--green); font-size: 1.4rem; }

.nutricao-badge-float.nacional {
    top: 24px;
    right: -20px;
    color: var(--orange-dark);
}

.nutricao-badge-float.nacional i { color: var(--orange); font-size: 1.4rem; }

.nutricao-lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}

.nutri-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.nutri-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nutri-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.nutri-text h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.nutri-text p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.oms-banner {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    border-left: 4px solid var(--green);
}

.oms-banner p {
    font-size: 0.9rem;
    color: var(--green-dark);
    line-height: 1.5;
}

.oms-star {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ===== EMBALAGENS SECTION ===== */
.embalagens {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F2 0%, #FFF3E8 50%, #F8FFF8 100%);
}

.emb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.emb-card {
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.emb-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 6px;
}

.emb-saqueta {
    background: white;
    border: 2px solid rgba(255,107,53,0.15);
}

.emb-saqueta::before {
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.emb-caixa {
    background: white;
    border: 2px solid rgba(76,175,80,0.15);
}

.emb-caixa::before {
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.emb-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.emb-icon-area {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.emb-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
}

.emb-saqueta .emb-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.emb-caixa .emb-icon { background: linear-gradient(135deg, var(--green), var(--green-light)); }

.emb-weight {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-dark);
}

.emb-content h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.emb-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.emb-list {
    margin-bottom: 24px;
}

.emb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.93rem;
    color: var(--text-mid);
    border-bottom: 1px solid #f5f5f5;
}

.emb-list li:last-child { border-bottom: none; }

.emb-saqueta .emb-list li i { color: var(--orange); }
.emb-caixa .emb-list li i { color: var(--green); }

.emb-sample-imgs {
    display: flex;
    gap: 12px;
}

.emb-sample-imgs img {
    height: 80px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform var(--transition);
}

.emb-sample-imgs img:hover {
    transform: scale(1.1) translateY(-4px);
}

/* Stats Row */
.stats-row {
    background: linear-gradient(135deg, var(--orange), var(--orange-light), var(--yellow));
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(255,107,53,0.3);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-unit {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* ===== CONTACTO SECTION ===== */
.contato {
    padding: 100px 0;
    background: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contato-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contato-item:last-child { border-bottom: none; }

.contato-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contato-item h4 {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contato-item p, .contato-item a {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contato-item a:hover { color: var(--orange); }

.social-links { padding-top: 24px; }
.social-links h4 {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.social-icons { display: flex; gap: 12px; }

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all var(--transition);
}

.social-icon:hover { transform: translateY(-4px) scale(1.1); }
.facebook { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.whatsapp { background: #25D366; }
.youtube { background: #FF0000; }

/* Contact Form */
.contato-form {
    background: #FAFAFA;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: white;
    transition: border-color var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.form-feedback {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 20px;
}

/* ===== FOOTER ===== */
.footer { background: #1A1A2E; color: rgba(255,255,255,0.8); }

.footer-top { padding: 72px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    color: var(--orange-light);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
}

.footer-links h5,
.footer-contact h5 {
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links ul li a:hover {
    color: var(--orange-light);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--orange-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a:hover { color: var(--orange-light); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255,107,53,0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-countdown { max-width: 480px; margin: 0 auto; }
    .sobre-grid { grid-template-columns: repeat(2, 1fr); }
    .nutricao-wrap { grid-template-columns: 1fr; }
    .nutricao-image { order: 2; }
    .nutricao-content { order: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; left: 0; right: 0;
        bottom: 0;
        background: rgba(26,26,46,0.97);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 998;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link {
        color: white !important;
        font-size: 1.2rem;
        padding: 14px 28px;
        text-shadow: none !important;
    }
    .nav-cta {
        background: var(--orange) !important;
        color: white !important;
        margin: 8px 28px;
    }
    .sobre-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .emb-grid { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .stats-row { flex-wrap: wrap; padding: 36px 24px; }
    .stat-divider { display: none; }
    .stat-item { flex: 0 0 45%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .nutricao-badge-float { display: none; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .emb-sample-imgs { flex-wrap: wrap; }
    .contato-form { padding: 24px 20px; }
}
