@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --green: #00c853;
    --green-dark: #00a844;
    --blue: #2962ff;
    --purple: #6200ea;
    --bg: #fafafa;
    --text: #1a1a2e;
    --text-light: #555;
    --card-bg: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}
nav .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
nav .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
nav .nav-logo img { height: 38px; }
nav .nav-logo span { font-size: 1.2rem; font-weight: 700; color: var(--text); }
nav .nav-links { display: flex; gap: 2rem; list-style: none; }
nav .nav-links a { color: var(--text-light); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
nav .nav-links a:hover { color: var(--green-dark); }
nav .nav-cta {
    padding: 0.6rem 1.5rem; background: var(--green); color: #fff;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    border-radius: 100px; transition: all 0.3s; border: none;
}
nav .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,200,83,0.3); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero-image {
    position: relative; z-index: 1; margin-top: 3rem; max-width: 800px; width: 100%;
}
.hero-image img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s;
}
.hero-image img:hover { transform: scale(1.02); }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,200,83,0.12), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(41,98,255,0.08), transparent),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(98,0,234,0.06), transparent);
    animation: heroShift 8s ease-in-out infinite alternate;
}
@keyframes heroShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(1deg); }
}

/* Floating shapes */
.hero-shape {
    position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}
.hero-shape.s1 { width: 300px; height: 300px; background: var(--green); top: 10%; left: -5%; animation-delay: 0s; }
.hero-shape.s2 { width: 200px; height: 200px; background: var(--blue); bottom: 15%; right: -3%; animation-delay: 2s; }
.hero-shape.s3 { width: 150px; height: 150px; background: var(--purple); top: 60%; left: 70%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; max-width: 850px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; background: rgba(0,200,83,0.1);
    border: 1px solid rgba(0,200,83,0.2); border-radius: 100px;
    font-size: 0.85rem; color: var(--green-dark); font-weight: 600;
    margin-bottom: 2rem; animation: fadeInDown 0.8s ease-out;
}
.hero h1 {
    font-size: 4.5rem; font-weight: 900; letter-spacing: -3px; line-height: 1.05;
    margin-bottom: 1.5rem; color: var(--text); animation: fadeInUp 1s ease-out;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 50%, var(--purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% 200%; animation: gradientMove 4s ease-in-out infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero p {
    font-size: 1.3rem; color: var(--text-light); font-weight: 300;
    max-width: 600px; margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; animation: fadeInUp 1s ease-out 0.4s both; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff; text-decoration: none; font-weight: 600; font-size: 1.05rem;
    border-radius: 100px; transition: all 0.3s; border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(0,200,83,0.4); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.5rem; background: #fff; color: var(--text);
    text-decoration: none; font-weight: 500; font-size: 1.05rem;
    border-radius: 100px; border: 2px solid #e0e0e0; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
section { padding: 6rem 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--green-dark); margin-bottom: 0.75rem;
}
.section-title { font-size: 3rem; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 1rem; line-height: 1.15; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 620px; font-weight: 300; margin-bottom: 3.5rem; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.step-card {
    background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 2rem;
    text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
}
.step-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue)); transform: scaleX(0);
    transition: transform 0.4s; transform-origin: left;
}
.step-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.step-card:hover::after { transform: scaleX(1); }
.step-number {
    width: 50px; height: 50px; border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #fff; font-weight: 800; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.95rem; color: var(--text-light); font-weight: 300; }

/* ===== MODELS ===== */
#modelos { background: linear-gradient(180deg, #f0faf3 0%, var(--bg) 100%); }
.models-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }
.model-card {
    background: #fff; border: 2px solid #eee; border-radius: 24px; padding: 2.5rem;
    position: relative; overflow: hidden; transition: all 0.4s;
}
.model-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.model-card.partner::before { background: linear-gradient(90deg, var(--green), var(--blue)); }
.model-card.owner::before { background: linear-gradient(90deg, #f1c40f, #e67e22); }
.model-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.08); }
.model-card.partner:hover { border-color: rgba(0,200,83,0.3); }
.model-card.owner:hover { border-color: rgba(241,196,15,0.3); }

.model-badge {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem;
}
.model-card.partner .model-badge { background: rgba(0,200,83,0.1); color: var(--green-dark); }
.model-card.owner .model-badge { background: rgba(241,196,15,0.15); color: #c68f00; }

.model-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.model-card > p { color: var(--text-light); font-size: 1rem; margin-bottom: 2rem; font-weight: 300; }

.model-features { list-style: none; margin-bottom: 2rem; }
.model-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.95rem; color: var(--text-light); }
.model-features .check {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; font-size: 0.7rem; margin-top: 2px;
}
.model-card.partner .check { background: rgba(0,200,83,0.1); color: var(--green-dark); }
.model-card.owner .check { background: rgba(241,196,15,0.15); color: #c68f00; }

.model-highlight { padding: 1.5rem; border-radius: 16px; text-align: center; }
.model-card.partner .model-highlight { background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(41,98,255,0.05)); }
.model-card.owner .model-highlight { background: linear-gradient(135deg, rgba(241,196,15,0.1), rgba(230,126,34,0.05)); }
.model-highlight .label { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-bottom: 0.3rem; }
.model-highlight .value { font-size: 2.2rem; font-weight: 900; }
.model-card.partner .model-highlight .value { color: var(--green-dark); }
.model-card.owner .model-highlight .value { color: #c68f00; }

/* ===== ELIGIBILITY ===== */
.eligibility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }
.eligibility-col h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.eligibility-col h3 .icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.eligible h3 .icon { background: rgba(0,200,83,0.1); color: var(--green-dark); }
.rules h3 .icon { background: rgba(41,98,255,0.1); color: var(--blue); }

.eligibility-list { list-style: none; }
.eligibility-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 1rem 1.25rem; margin-bottom: 0.6rem;
    background: #fff; border: 1px solid #eee; border-radius: 14px;
    font-size: 0.95rem; color: var(--text-light); transition: all 0.3s;
}
.eligibility-list li:hover { transform: translateX(5px); border-color: var(--green); box-shadow: 0 5px 20px rgba(0,0,0,0.04); }
.eligibility-list li .bullet { flex-shrink: 0; margin-top: 2px; font-size: 1rem; }
.eligible .bullet { color: var(--green-dark); }
.rules .bullet { color: var(--blue); }

/* ===== COVERAGE ===== */
#cobertura { text-align: center; background: linear-gradient(180deg, var(--bg), #e8f5e9 50%, var(--bg)); }
.coverage-banner {
    background: #fff; border: 2px solid #e0e0e0; border-radius: 24px;
    padding: 4rem 3rem; margin-top: 3rem; position: relative; overflow: hidden;
}
.coverage-banner::before {
    content: '🇧🇷'; position: absolute; top: -20px; right: -10px;
    font-size: 12rem; opacity: 0.06; pointer-events: none;
}
.coverage-banner h3 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.coverage-banner p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; font-weight: 300; }
.coverage-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 2.5rem; }
.stat .number { font-size: 3.5rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.stat .desc { font-size: 0.9rem; color: var(--text-light); margin-top: 0.3rem; }

/* ===== FORM ===== */
#contato { background: linear-gradient(180deg, var(--bg), #f0faf3); }
.partner-form {
    background: #fff; border: 2px solid #e0e0e0; border-radius: 24px;
    padding: 3rem; position: relative; overflow: hidden;
}
.partner-form::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
}
.form-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.85rem; font-weight: 600; color: var(--text);
    margin-bottom: 0.4rem; letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
    padding: 0.85rem 1rem; border: 2px solid #e8e8e8; border-radius: 12px;
    font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--text);
    background: #fafafa; transition: all 0.3s; outline: none;
}
.form-group input::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus {
    border-color: var(--green); background: #fff;
    box-shadow: 0 0 0 4px rgba(0,200,83,0.1);
}
.form-actions {
    margin-top: 2rem; text-align: center;
}
.btn-submit {
    padding: 1.1rem 3.5rem; font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(0,200,83,0.35);
}
.btn-submit:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(0,200,83,0.45); }
.form-disclaimer {
    margin-top: 1rem; font-size: 0.8rem; color: #999; max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.form-success {
    text-align: center; padding: 3rem; animation: fadeInUp 0.6s ease-out;
}
.form-success h3 { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-light); font-size: 1.05rem; }

/* ===== CTA ===== */
#contato .section-title { text-align: left; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid #eee; padding: 3rem 2rem; text-align: center; color: var(--text-light); font-size: 0.9rem; }
footer a { color: var(--green-dark); text-decoration: none; }

/* ===== MODEL FINANCING ===== */
.model-financing {
    margin-top: 1.5rem; padding: 1rem 1.5rem; border-radius: 12px;
    background: linear-gradient(135deg, rgba(241,196,15,0.08), rgba(230,126,34,0.05));
    border: 1px dashed rgba(241,196,15,0.3); text-align: center;
}
.model-financing span { font-size: 0.85rem; color: var(--text-light); }
.model-financing strong { display: block; font-size: 1.6rem; color: #c68f00; margin: 0.3rem 0; }

/* ===== SPECS ===== */
#especificacoes { background: linear-gradient(180deg, var(--bg), #e3f2fd 50%, var(--bg)); }
.specs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.spec-card {
    background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 2rem;
    text-align: center; transition: all 0.4s;
}
.spec-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: rgba(0,200,83,0.2); }
.spec-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(41,98,255,0.08));
    color: var(--green-dark); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.spec-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); font-weight: 600; }
.spec-value { font-size: 1.6rem; font-weight: 800; color: var(--text); margin: 0.3rem 0; }
.spec-desc { font-size: 0.85rem; color: var(--text-light); font-weight: 300; }

/* ===== SPECS ELECTRICAL ===== */
.specs-electrical {
    margin-top: 3rem; background: #fff; border: 2px solid #e0e0e0; border-radius: 24px;
    padding: 2.5rem; position: relative; overflow: hidden;
}
.specs-electrical::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
}
.specs-electrical h3 {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text);
}
.specs-electrical h3 svg { color: var(--green-dark); }
.specs-electrical-desc { font-size: 1rem; color: var(--text-light); font-weight: 300; margin-bottom: 2rem; max-width: 700px; }
.specs-electrical-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.spec-req {
    padding: 1.2rem; border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,200,83,0.04), rgba(41,98,255,0.03));
    border: 1px solid rgba(0,200,83,0.1);
}
.spec-req-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; }
.spec-req-desc { font-size: 0.85rem; color: var(--text-light); font-weight: 300; line-height: 1.4; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero h1 { font-size: 3rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .models-grid, .eligibility-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .specs-electrical-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-stats { gap: 2rem; }
    .section-title { font-size: 2.2rem; }
}
@media (max-width: 640px) {
    nav .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .specs-electrical-grid { grid-template-columns: 1fr; }
    .coverage-stats { flex-direction: column; gap: 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: 1; }
    .partner-form { padding: 1.5rem; }
}
