﻿* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 15px; color: #3F257A; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.lead { font-size: 1.2rem; line-height: 1.8; color: #555; margin-bottom: 20px; }

.header { background: linear-gradient(135deg, #3F257A 0%, #47038E 100%); padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 50px; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { color: white; text-decoration: none; font-weight: 500; transition: all 0.3s; font-size: 0.95rem; }
.nav a:hover { color: #FEB302; transform: translateY(-2px); }
.btn-nav { background: #FEB302; color: #3F257A !important; padding: 10px 25px; border-radius: 25px; font-weight: 600; }
.btn-nav:hover { background: #FFAB19; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(254, 179, 2, 0.3); }

.hero { background: linear-gradient(135deg, #3F257A 0%, #47038E 100%); padding: 150px 0 100px; color: white; text-align: center; margin-top: 70px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(254, 179, 2, 0.1) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 1; }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero-title .highlight { color: #FEB302; background: linear-gradient(45deg, #FEB302, #FFAB19); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-cta { display: flex; gap: 20px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 15px 40px; font-size: 1.1rem; font-weight: 600; border-radius: 30px; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #FEB302; color: #3F257A; }
.btn-primary:hover { background: #FFAB19; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(254, 179, 2, 0.4); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: #3F257A; transform: translateY(-3px); }
.btn-block { width: 100%; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.stat { background: rgba(255,255,255,0.1); padding: 25px; border-radius: 15px; backdrop-filter: blur(10px); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: #FEB302; margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }
.sobre { background: #F7F6FA; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre-content h3 { color: #3F257A; margin-top: 30px; margin-bottom: 10px; font-size: 1.5rem; }
.sobre-content p { margin-bottom: 15px; }
.feature-box { background: white; padding: 25px; border-radius: 15px; margin-bottom: 20px; box-shadow: 0 5px 20px rgba(63, 37, 122, 0.08); transition: all 0.3s; }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(63, 37, 122, 0.15); }
.feature-box h4 { color: #3F257A; margin-bottom: 8px; font-size: 1.2rem; }

.dores { background: white; }
.dores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 50px; }
.dor-card { background: #F7F6FA; padding: 30px; border-radius: 15px; text-align: center; transition: all 0.3s; border: 2px solid transparent; }
.dor-card:hover { border-color: #FEB302; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(254, 179, 2, 0.15); }
.dor-icon { font-size: 3rem; margin-bottom: 15px; }
.dor-card p { color: #555; line-height: 1.6; }

.diferenciais { background: linear-gradient(135deg, #F7F6FA 0%, white 100%); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.card { background: white; padding: 35px; border-radius: 20px; text-align: center; transition: all 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.08); border: 2px solid transparent; }
.card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(63, 37, 122, 0.15); border-color: #3F257A; }
.card-icon { font-size: 3.5rem; margin-bottom: 20px; }
.card h3 { color: #3F257A; margin-bottom: 15px; font-size: 1.3rem; }
.card p { color: #666; line-height: 1.7; }

.como-funciona { background: white; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; position: relative; }
.step { text-align: center; padding: 30px; position: relative; }
.step-number { width: 80px; height: 80px; background: linear-gradient(135deg, #3F257A, #47038E); color: white; font-size: 2.5rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 10px 30px rgba(63, 37, 122, 0.3); }
.step h3 { color: #3F257A; margin-bottom: 15px; font-size: 1.3rem; }
.step p { color: #666; line-height: 1.7; }

.publico { background: #F7F6FA; }
.publico-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; margin-top: 50px; }
.publico-card { background: white; padding: 40px; border-radius: 20px; transition: all 0.3s; box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: center; }
.publico-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(63, 37, 122, 0.15); }
.publico-icon { font-size: 4rem; margin-bottom: 20px; }
.publico-card h3 { color: #3F257A; margin-bottom: 15px; font-size: 1.4rem; }
.publico-card p { color: #666; line-height: 1.8; }

.fontes { background: white; }
.fontes-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 50px; }
.fonte-tag { background: linear-gradient(135deg, #3F257A, #47038E); color: white; padding: 15px 30px; border-radius: 30px; font-weight: 600; transition: all 0.3s; }
.fonte-tag:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(63, 37, 122, 0.3); background: linear-gradient(135deg, #47038E, #3F257A); }

.cadastro { padding: 100px 0; background: linear-gradient(135deg, #3F257A 0%, #47038E 100%); color: white; }
.cadastro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cadastro-info h2 { font-size: 3rem; margin-bottom: 20px; color: white; }
.cadastro-info .lead { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 30px; }
.benefits-list { list-style: none; margin-bottom: 40px; }
.benefits-list li { padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.2); }
.cadastro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.mini-stat { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 15px; backdrop-filter: blur(10px); }
.mini-stat strong { display: block; font-size: 1.5rem; color: #FEB302; margin-bottom: 5px; }
.mini-stat span { font-size: 0.9rem; opacity: 0.9; }
.cadastro-form { background: white; padding: 50px; border-radius: 25px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.cadastro-form h3 { color: #3F257A; margin-bottom: 10px; font-size: 2rem; text-align: center; }
.form-intro { text-align: center; color: #666; margin-bottom: 30px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; color: #3F257A; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.cadastro-form input, .cadastro-form select, .cadastro-form textarea { width: 100%; padding: 15px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1rem; transition: all 0.3s; font-family: 'Inter', sans-serif; }
.cadastro-form input:focus, .cadastro-form select:focus, .cadastro-form textarea:focus { outline: none; border-color: #3F257A; box-shadow: 0 0 0 3px rgba(63, 37, 122, 0.1); }
.cadastro-form button { width: 100%; background: linear-gradient(135deg, #3F257A, #47038E); color: white; padding: 18px; border: none; border-radius: 10px; font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: all 0.3s; margin-top: 10px; }
.cadastro-form button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(63, 37, 122, 0.4); }
.form-note { text-align: center; font-size: 0.85rem; color: #999; margin-top: 15px; }

.footer { background: #1a1a1a; color: white; padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-col h4 { color: #FEB302; margin-bottom: 20px; font-size: 1.2rem; }
.footer-col p { margin-bottom: 12px; opacity: 0.8; line-height: 1.8; }
.footer-col a { color: white; text-decoration: none; opacity: 0.8; transition: all 0.3s; }
.footer-col a:hover { opacity: 1; color: #FEB302; }
.footer-social { margin-top: 20px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.7; }

@media (max-width: 1024px) {
    .sobre-grid, .cadastro-content { grid-template-columns: 1fr; gap: 40px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    .nav { display: none; }
    .hero { padding: 120px 0 60px; }
    .section { padding: 60px 0; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; text-align: center; }
    .steps { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .cadastro { padding: 60px 0; }
    .cadastro-form { padding: 30px 20px; }
    .cadastro-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .container { padding: 0 15px; }
    .stat-number { font-size: 2rem; }
}

/* ==== Adicionado para deploy/cadastro real ==== */
.btn-nav-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    margin-right: 8px;
}
.btn-nav-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}
.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
