/* ==========================================
   NINHO® Profissional — Landing Page Styles
   Paleta: Amarelo #FFD200, Verde #005A32, Branco #FFFFFF
   ========================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #FFD200;
    --yellow-dark: #E6BD00;
    --yellow-light: #FFF3B0;
    --green: #005A32;
    --green-dark: #004425;
    --green-light: #007A45;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Top Header / Logo ---------- */
.top-header {
    background: var(--yellow);
    padding: 16px 0;
    text-align: center;
}

.top-logo {
    max-height: 60px;
    margin: 0 auto;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-title span {
    color: var(--green);
}

/* ---------- CTA Button ---------- */
.cta-button {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 90, 50, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 90, 50, 0.45);
}

.cta-button:hover::after {
    left: 100%;
}

.cta-large {
    font-size: 1.125rem;
    padding: 22px 48px;
}

/* ==========================================
   SEÇÃO 1 — HERO / HEADLINE
   ========================================== */
.hero-section {
    background: var(--yellow);
    background: linear-gradient(135deg, var(--yellow) 0%, #FFE44D 50%, var(--yellow) 100%);
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    letter-spacing: 1px;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--gray-900);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-title .highlight {
    color: var(--green);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}

.hero-subtitle-main {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: var(--gray-800);
    max-width: 700px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ==========================================
   SEÇÃO 2 — OFERTA
   ========================================== */
.offer-section {
    padding: 80px 0;
    background: var(--white);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offer-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.offer-image:hover img {
    transform: scale(1.03);
}

.weight-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--green);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF4444, #FF6B6B);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.offer-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 24px;
}

.price-block {
    background: var(--gray-50);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 28px;
    position: relative;
}

.price-from {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.price-from s {
    color: #999;
    text-decoration: line-through;
}

.price-main {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    color: var(--green);
}

.price-currency {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 8px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
}

.price-cents {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 8px;
}

.price-discount-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF4444;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.trust-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.trust-icons span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================
   SEÇÃO 3 — DIFERENCIAIS
   ========================================== */
.features-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--green);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ==========================================
   SEÇÃO 4 — ARRAIÁ DA CONFEITARIA
   ========================================== */
.arraia-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFDE7 50%, #FFF9C4 100%);
    position: relative;
    overflow: hidden;
}

.arraia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.arraia-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--gray-900);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.arraia-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green);
    margin-bottom: 20px;
}

.arraia-text {
    font-size: 1.05rem;
    color: var(--gray-800);
    margin-bottom: 24px;
    line-height: 1.7;
}

.arraia-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.arraia-items span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--gray-800);
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.arraia-items span svg {
    flex-shrink: 0;
}

.cta-arraia {
    background: var(--green);
}

.arraia-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}



/* ==========================================
   SEÇÃO 5 — KITS / TABELA DE PREÇOS
   ========================================== */
.kits-section {
    padding: 80px 0;
    background: var(--white);
}

.kits-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 48px;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.kit-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.kit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.kit-popular {
    border-color: var(--yellow);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.kit-popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.kit-best {
    border-color: var(--green);
}

.kit-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--gray-900);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    white-space: nowrap;
}

.kit-badge-best {
    background: var(--green);
    color: var(--white);
}

.kit-image {
    padding: 24px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gray-50);
    height: 220px;
    overflow: hidden;
}

.kit-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.kit-header {
    background: var(--gray-50);
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    border-top: 1px solid var(--gray-200);
}

.kit-popular .kit-header {
    background: linear-gradient(135deg, #FFF8DC, var(--yellow-light));
}

.kit-best .kit-header {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.kit-header h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
}

.kit-body {
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kit-price {
    margin-bottom: 12px;
}

.kit-price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.kit-price-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--green);
}

.kit-total {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.kit-total-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.kit-total-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.kit-saving {
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px;
    background: #E8F5E9;
    border-radius: var(--radius-sm);
}

.kit-saving-best {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
}

.cta-kit {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.95rem;
}

.cta-kit-best {
    background: linear-gradient(135deg, var(--green), var(--green-light));
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-200);
    text-align: center;
    padding: 40px 0;
}

.footer-logo {
    max-width: 120px;
    margin: 0 auto 16px;
    opacity: 0.85;
}

.footer p {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 8px;
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================
   RESPONSIVO
   ========================================== */
@media (max-width: 992px) {

    .offer-grid,
    .arraia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kits-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .kit-popular {
        transform: none;
    }

    .kit-popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 60px 0 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-icons {
        flex-direction: column;
        gap: 8px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 0.9rem;
    }

    .cta-large {
        padding: 18px 36px;
        font-size: 1rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .arraia-grid {
        text-align: center;
    }

    .arraia-image {
        order: -1;
    }
}