/* ===== VARIÁVEIS DE COR ===== */
:root {
    --primary: #FEBF06;
    --primary-dark: #EBA602;
    --secondary: #01311D;
    --secondary-light: #0A4A2C;
    --accent: #31D33E;
    --white: #FFFFFF;
    --cream: #FFFBEB;
    --text: #1A1A1A;
    --text-muted: #6b7280;
}

/* ===== RESET BASE ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
}

/* ===== TIPOGRAFIA ===== */
.font-display { font-family: 'Montserrat', sans-serif; }

/* ===== HERO ===== */
.hero-bg {
    background-image:
        linear-gradient(to bottom, rgba(1,49,29,0.80) 0%, rgba(1,49,29,0.92) 100%),
        url('banner.jpg');
    background-size: cover;
    background-position: center top;
}

/* ===== BOTÕES ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    animation: pulse-glow 2.2s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-green {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    animation: pulse-glow-green 2.2s ease-in-out infinite;
}
.btn-green:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-green::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
}

/* ===== GLASSMORPHISM CARDS ===== */
.card-glass {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.14);
    transition: all 0.35s ease;
}
.card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.28);
    border-color: rgba(254,191,6,0.55);
    background: rgba(255,255,255,0.11);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid transparent;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(254,191,6,0.22);
    border-color: var(--primary);
}
.product-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f9f9f9;
}
.product-info { padding: 16px; text-align: center; }

/* ===== NAVBAR ===== */
.navbar-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.03em;
    font-family: 'Montserrat', sans-serif;
}
.navbar-link:hover { color: var(--primary-dark); }

/* ===== GRADIENT TEXT ===== */
.gradient-text-yellow {
    background: linear-gradient(135deg, var(--primary) 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-green {
    background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BADGES ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}
.section-badge-light {
    display: inline-block;
    background: rgba(254,191,6,0.12);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(254,191,6,0.38);
    font-family: 'Montserrat', sans-serif;
}

/* ===== DIVIDER ===== */
.divider-yellow {
    height: 4px; width: 56px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 2px;
    margin: 14px auto;
}

/* ===== STEP NUMBER ===== */
.step-number {
    width: 66px; height: 66px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 auto 18px;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 24px rgba(254,191,6,0.45);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(254,191,6,0.22);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ===== SEGMENT CHIPS ===== */
.segment-chip {
    background: white;
    border: 2px solid rgba(1,49,29,0.14);
    color: var(--secondary);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.segment-chip:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(1,49,29,0.2);
}

/* ===== NUMBER CARD ===== */
.number-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.number-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

/* ===== BENEFIT ITEM ===== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(1,49,29,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.benefit-item:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(254,191,6,0.12);
}

/* ===== REP BENEFITS ===== */
.rep-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border: 1px solid rgba(254,191,6,0.22);
    transition: all 0.3s ease;
}
.rep-benefit:hover {
    background: rgba(254,191,6,0.1);
    border-color: var(--primary);
}

/* ===== CONTACT FORM ===== */
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
    box-sizing: border-box;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(254,191,6,0.12);
}

/* ===== FAQ ===== */
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-content.open { max-height: 500px; }

/* ===== GLOW DECORATIVO ===== */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* ===== INSTAGRAM CARD ===== */
.instagram-gradient {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ===== SECTION BG HELPERS ===== */
.section-dark   { background-color: var(--secondary); }
.section-dark2  { background-color: var(--secondary-light); }
.section-cream  { background-color: #FFFBEB; }
.section-gray   { background-color: #f8faf9; }
.section-yellow { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(254,191,6,0.5), 0 4px 20px rgba(254,191,6,0.3); }
    50%       { box-shadow: 0 0 42px rgba(254,191,6,0.85), 0 8px 40px rgba(254,191,6,0.5); }
}
@keyframes pulse-glow-green {
    0%, 100% { box-shadow: 0 0 20px rgba(37,211,102,0.5), 0 4px 20px rgba(37,211,102,0.3); }
    50%       { box-shadow: 0 0 42px rgba(37,211,102,0.85), 0 8px 40px rgba(37,211,102,0.5); }
}
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

/* ===== PROTEÇÃO GLOBAL ===== */
button, input[type="button"], input[type="submit"] {
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
}
a[href*="wa.me"], a[href*="whatsapp.com"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-decoration: none;
}
@media (max-width: 767px) {
    nav a[href*="wa.me"], nav a[href*="whatsapp.com"] {
        display: none !important;
    }
}
