/* Eco Fonte Ambassador Program - Premium Version */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #FE8F00;
    --primary-hover: #F79238;
    --dark: #0F172A; /* Deep Navy Charcoal */
    --dark-section: #1E293B; /* Slightly lighter for interlacing */
    --grey-main: #918987;
    --grey-dark: #8F8684;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 8rem 0;
}

.section-dark {
    background-color: var(--dark-section);
    color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark p {
    color: var(--white);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(254, 143, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(254, 143, 0, 0.4);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 3rem 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px; /* Slightly more compact logo */
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('./assets/img/hero_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(15, 23, 42, 1) 0%, 
        rgba(15, 23, 42, 0.95) 30%, 
        rgba(15, 23, 42, 0.5) 60%, 
        rgba(15, 23, 42, 0) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* More space for text */
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.25rem, 6vw, 3.75rem); /* Reduced size */
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary);
    display: block;
    margin-top: 0.5rem;
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 550px;
    line-height: 1.5;
}

.hero-form-wrapper {
    width: 100%;
    max-width: 320px; /* Slightly more compact */
    margin-left: auto;
}

.glass-form-buzzlead {
    padding: 0;
    min-height: 320px; 
}

/* Rewards Section (Clean) */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.reward-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #F1F5F9;
    border-bottom: 4px solid var(--primary); /* Thick orange bottom border */
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(254, 143, 0, 0.15);
}

.reward-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--grey-main);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.reward-card .value {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

/* Steps Section (Dark) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Form Section (Clean) */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* FAQ (Dark) */
.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-trigger {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: var(--transition);
    opacity: 0;
    color: var(--grey-main);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 2rem;
    opacity: 1;
}

/* Footer Styling */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
}

.footer-logo {
    height: 35px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-desc {
    opacity: 0.6;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links li i {
    color: var(--primary);
    width: 16px;
}

.lgpd-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.lgpd-box p {
    font-size: 0.8rem;
    opacity: 0.5;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    opacity: 0.4;
    font-size: 0.8rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .rewards-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
    header { padding: 1.5rem 0; }
    .hero { height: auto; min-height: 100vh; padding: 6rem 0 3rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; opacity: 0.9; margin-bottom: 2rem; }
    .logo img { height: 28px; }
    .hero-content { text-align: center; margin-bottom: 3rem; }
    .hero-form-wrapper { margin: 0 auto; max-width: 320px; }
    .hero-grid, .rewards-grid, .steps-grid, .form-grid { 
        grid-template-columns: 1fr !important; 
        gap: 1.5rem; 
    }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { margin-top: 4rem; }
    .section { padding: 4rem 0; }
    .form-wrapper { padding: 2rem; }
}

/* Ocultar botão "Ver Recompensas" do Buzzlead */
.bz-link-catalog, 
.bz-btn-reward, 
.bz-link-reward,
.bz-reward-link,
#bz-btn-reward,
#buzzlead-root .bz-link-catalog,
#buzzlead-root .bz-btn-reward {
    display: none !important;
}

