/* --- ESTILO CORPORATIVO / PREMIUM --- */

/* Hero Específico */
.hero-partner {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(5, 16, 36, 0.85); /* Escuro com transparência */
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif; /* Fonte Elegante */
    font-size: 3rem;
    color: #d4af37; /* Dourado */
    margin-bottom: 10px;
}

.hero-overlay p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 600px;
}

/* Wrapper */
.form-wrapper {
    max-width: 900px;
    margin: -50px auto 100px auto; /* Sobe um pouco sobre o Hero */
    position: relative;
    z-index: 2;
}

/* Formulário com estilo de cartão executivo */
.corp-form {
    background: #0b1e3b; /* Azul bem escuro */
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-top: 5px solid #d4af37; /* Detalhe dourado no topo */
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}
.form-section-header:first-child { margin-top: 0; }

.form-section-header i {
    color: #d4af37;
    font-size: 1.5rem;
}

.form-section-header h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

/* Grid de Inputs */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-box {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1; /* Ocupa a linha toda */
}

.input-box label {
    color: #aab8c9;
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Inputs Sofisticados */
.corp-form input, 
.corp-form select, 
.corp-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid #2a3d5e;
    color: #fff;
    padding: 15px;
    border-radius: 4px; /* Bordas menos arredondadas = mais sério */
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.corp-form input:focus, 
.corp-form textarea:focus {
    border-color: #d4af37; /* Foco Dourado */
    background: rgba(255,255,255,0.1);
    outline: none;
}

/* Botão Gold */
.form-footer {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #b48e18);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    flex: 1;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-gold:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 4px;
}

/* Tabela Corporativa */
.partners-list {
    margin-top: 60px;
}

.partners-list h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.corp-table {
    width: 100%;
    border-collapse: collapse;
    background: #0b1e3b;
    border-radius: 8px;
    overflow: hidden;
}

.corp-table th, .corp-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #1c2e4a;
}

.corp-table th {
    background: #07152b;
    color: #d4af37;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.badge-seg {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: 0.2s;
}
.btn-icon:hover { color: #d4af37; }

/* Responsivo */
@media (max-width: 768px) {
    .input-grid { grid-template-columns: 1fr; }
    .hero-overlay h1 { font-size: 2rem; }
}