/* Estilos específicos para a página de parceiro */

/* Hero Section */
.parceiro-hero {
    background-color: #071a33;
    padding: 160px 0 60px; /* Espaçamento superior aumentado para destacar o conteúdo */
    min-height: auto;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #071a33 0%, #0a2a4e 100%);
}

/* Quadrados flutuantes */
.slime-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: none; /* Removendo os quadrados flutuantes */
}

.floating-square {
    display: none; /* Removendo os quadrados flutuantes */
}

.parceiro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(30, 80, 150, 0.3) 0%, rgba(10, 42, 78, 0) 50%);
    z-index: 2;
}

.parceiro-hero::after {
    display: none;
}

/* Removendo todas as shapes decorativas */
.hero-shapes {
    display: none;
}

/* Layout principal da seção hero */
.parceiro-hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.parceiro-info {
    flex: 1;
    color: #fff;
    padding-right: 20px;
}

.parceiro-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #00BFFF;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3); /* Efeito de brilho azul no título */
}

.parceiro-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Removendo Stats Container */
.stats-container {
    display: none;
}

/* Formulário de parceria */
.parceiro-form {
    flex: 1;
    background: rgba(7, 26, 51, 0.85);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.18); /* Sombra escura sutil, sem brilho azul */
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1.5px solid rgba(0, 191, 255, 0.18);
    backdrop-filter: blur(2.5px);
    transition: box-shadow 0.3s, border 0.3s;
}

.parceiro-form::before {
    display: none; /* Removendo efeito de gradiente */
}

.parceiro-form > * {
    position: relative;
    z-index: 1;
}

.parceiro-form h2 {
    color: #00BFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.parceiro-form label {
    color: #7fd6ff;
    font-weight: 600;
}

.parceiro-form input,
.parceiro-form select {
    background: rgba(255,255,255,0.07);
    border: 1.2px solid rgba(0, 191, 255, 0.13);
    color: #fff;
}

.parceiro-form input:focus,
.parceiro-form select:focus {
    border-color: #00BFFF;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.18);
    background: rgba(255,255,255,0.13);
}

.parceiro-form > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
    width: 50%;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

input:not([type="checkbox"]), select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: rgba(255, 255, 255, 0.07);
    color: #fff;
    height: 45px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:not([type="checkbox"])::placeholder, select::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:not([type="checkbox"]):focus, textarea:focus, .domain-input input:focus {
    border-color: #00BFFF !important;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2) !important;
    outline: none;
    background-color: rgba(5, 20, 40, 0.9) !important;
    color: #fff;
}

select:focus {
    border-color: #00BFFF !important;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2) !important;
    outline: none;
    background-color: inherit !important;
    color: #fff;
}

select option, select optgroup {
    background-color: #0a2a4e !important;
    color: #fff !important;
}

select option:checked,
select option:active,
select option:disabled {
    background-color: #0a2a4e !important;
    color: #bfc9d1 !important;
}

.domain-group {
    margin-bottom: 20px;
}

.domain-input {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.07);
    height: 45px;
}

.protocol {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.domain-input input {
    border: none;
    border-radius: 0;
    background: transparent;
    height: 100%;
}

.select-wrapper {
    position: relative;
    height: 45px;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 35px;
    background-color: rgba(255, 255, 255, 0.07);
    color: #fff;
    height: 100%;
    cursor: pointer;
}

.select-wrapper select option {
    background-color: #0a2a4e;
    color: #fff;
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

/* Ocultar completamente qualquer checkbox nativo */
input[type="checkbox"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

/* Checkbox customizado para o formulário */
.checkbox-group {
    margin-top: 20px;
    margin-bottom: 25px;
    padding-top: 5px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0 !important;
    cursor: pointer;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: none !important;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.15);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #00BFFF !important;
    border-color: #00BFFF !important;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding-top: 1px;
}

.link-highlight {
    color: #00BFFF !important;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.link-highlight:hover {
    color: #00BFFF !important;
    text-decoration: underline;
}

/* Botão de envio do formulário */
.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    background: #666;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: not-allowed;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    height: 50px;
    opacity: 0.7;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-full:hover, .btn-full:focus {
    background: #666;
    box-shadow: none;
}

.btn-full.active {
    background: linear-gradient(90deg, #0099ff, #00BFFF);
    opacity: 1;
    cursor: pointer;
    box-shadow: none;
}

.btn-full.active:hover {
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.25);
    transform: translateY(-2px);
}

.btn-full::before, .btn-full::after {
    display: none;
}

.form-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsividade */
@media (max-width: 991px) {
    .parceiro-hero-content {
        flex-direction: column;
        gap: 30px;
    }
    .parceiro-info, .parceiro-form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .parceiro-info {
        padding-right: 0;
    }
    .parceiro-hero {
        padding: 140px 0 50px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-row .form-group {
        width: 100%;
    }
    .parceiro-hero {
        padding: 60px 0 30px;
        margin-top: 110px;
    }
    .parceiro-info h1 {
        font-size: 2rem;
    }
    .parceiro-form {
        padding: 25px 20px;
    }
    .parceiro-info {
        display: none;
    }
    .parceiro-form {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .parceiro-hero {
        padding: 40px 0 20px;
        margin-top: 90px;
    }
    .parceiro-form h2 {
        font-size: 1.5rem;
    }
    .parceiro-form > p {
        font-size: 0.9rem;
    }
    input:not([type="checkbox"]), select, textarea, .domain-input, .select-wrapper {
        height: 50px;
    }
    .checkbox-container {
        padding-left: 28px;
    }
    .checkmark {
        height: 18px;
        width: 18px;
    }
    .checkbox-text {
        font-size: 0.85rem;
    }
}

.footer {
    background: #030B17 !important;
    border-left: 3px solid #00BFFF !important;
    border-right: 3px solid #00BFFF !important;
}

.header::after {
    background: #00BFFF !important;
}

.footer-column h3 {
    border-bottom: none !important;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    background: #00BFFF !important;
    box-shadow: none !important;
}

.footer-column ul li a:hover, .footer-column ul li a:focus {
    color: #00BFFF !important;
}

.footer-column .highlight, .footer-column .highlight:after {
    background: #00BFFF !important;
    color: #00BFFF !important;
}

.footer-column .highlight {
    box-shadow: 0 2px #00BFFF !important;
}

.domain-input input:focus {
    border-color: #00BFFF !important;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2) !important;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-column:nth-child(2) h3::after,
.footer-column:nth-child(3) h3::after {
    background: linear-gradient(to right, #00BFFF, transparent) !important;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5) !important;
    width: 40px !important;
    height: 2px !important;
    border-radius: 2px !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    content: '' !important;
    opacity: 1 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at left, rgba(0, 191, 255, 0.09), transparent 60%),
                radial-gradient(circle at right, rgba(0, 191, 255, 0.15), transparent 50%) !important;
    z-index: -1;
    opacity: 0.8;
}

.parceiro-info h1 {
    color: #00BFFF;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.parceiro-info ul li i {
    color: #00BFFF;
    font-size: 1.1rem;
    margin-right: 10px;
}

.parceiro-info p,
.parceiro-info ul li {
    color: #fff;
}

.parceiro-info ul li {
    font-size: 1.05rem;
}

.parceiro-info p[style*="color: #7fd6ff"] {
    color: #00BFFF !important;
} 