/* ==================== HERO ==================== */
.hero-parceiros {
    position: relative;
    background: url('img/Banners/parceria.webp') center 60%/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.hero-parceiros::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-parceiros h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-parceiros p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* ==================== OPORTUNIDADE ==================== */
.mercado {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.2s;
}

.grid-mercado {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.grid-mercado div {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    opacity: 0.9;
}

.grid-mercado div:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #ffc107;
    opacity: 1;
}

.grid-mercado i {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

/* ==================== BENEFÍCIOS ==================== */
.beneficios {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.4s;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    opacity: 0.9;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #ffc107;
    background: #ffffff;
    opacity: 1;
}

.card i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

/* Responsivo */
@media (max-width: 992px) {
    .grid-beneficios { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-beneficios { grid-template-columns: 1fr; }
}

/* ==================== MODELO ==================== */
.modelo {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.6s;
}

.modelo .intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #555;
}

.fluxo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.etapa {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    opacity: 0.9;
}

.etapa:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #ffc107;
    opacity: 1;
}

.etapa span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.etapa h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #222;
}

.cta-modelo { margin-top: 40px; }

/* ==================== ONBOARDING ==================== */
.onboarding {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.8s;
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.step {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 200px;
    max-width: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0.9;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #ffc107;
}

.step span {
    display: inline-block;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-bottom: 10px;
}

/* ==================== ECOSSISTEMA ==================== */
.ecossistema {
    padding: 60px 20px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 1s;
}

.grid-ecossistema {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.grid-ecossistema div {
    background: #7a7a7a28;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0.9;
}

.grid-ecossistema div:hover {
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6), 0 0 20px rgba(255,193,7,0.4);
    transform: translateY(-5px);
    opacity: 1;
}

.grid-ecossistema i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

/* ==================== CADASTRO ==================== */
.cadastro-parceiro {
    background: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 1.2s;
}

.cadastro-parceiro form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cadastro-parceiro input,
.cadastro-parceiro textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #222;
    color: #fff;
    transition: background 0.3s, transform 0.3s;
}

.cadastro-parceiro input:focus,
.cadastro-parceiro textarea:focus {
    background: #333;
    transform: scale(1.02);
}

.cadastro-parceiro button {
    padding: 12px;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cadastro-parceiro button:hover {
    background: #e0a800;
    transform: scale(1.05);
}

/* ==================== KEYFRAMES ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
