/* ========================================
   FORMULÁRIOS DE CONTATO E PARCERIA
   NetSensor - v1.5.3
   ======================================== */

/* Hero Sections */
.contact-hero,
.partnership-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before,
.partnership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.contact-hero h1,
.partnership-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.contact-hero p,
.partnership-hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Container Layout */
.contact-container,
.partnership-container {
    max-width: 1400px;
    margin: -40px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Sidebar Sections */
.contact-info,
.partnership-benefits {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-info h2,
.partnership-benefits h2 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

/* Info Items & Benefit Items */
.info-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #00ffff;
    transition: all 0.3s ease;
}

.info-item:hover,
.benefit-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.info-item i,
.benefit-item i {
    font-size: 1.8rem;
    color: #00ffff;
    margin-right: 20px;
    min-width: 40px;
}

.info-content h3,
.benefit-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-content p,
.benefit-content p {
    color: #aaa;
    line-height: 1.6;
}

.info-content a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #00ccff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ffff, #0099ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-link:hover {
    color: #0a0a0a;
    transform: translateY(-5px) scale(1.1);
    border-color: #00ffff;
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    animation: socialIconBounce 0.6s ease;
}

/* Partner Types Section */
.partner-types {
    margin-top: 2rem;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
}

.partner-types h3 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.partner-types ul {
    list-style: none;
    padding: 0;
}

.partner-types li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.partner-types li::before {
    content: '✓';
    color: #00ffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Form Containers */
.contact-form-container,
.partnership-form-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-container h2,
.partnership-form-container h2 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.contact-form-container .subtitle,
.partnership-form-container .subtitle {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label .required {
    color: #ff4444;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ffff' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* reCAPTCHA Container */
.recaptcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00ffff, #00ccff);
    border: none;
    border-radius: 10px;
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error & Success Messages */
.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.recaptcha-error {
    text-align: center;
    margin-top: -10px;
}

.success-message {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #0a0a0a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Cross-Navigation Links */
.partner-link,
.contact-link {
    margin-top: 2rem;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}

.partner-link p,
.contact-link p {
    color: #aaa;
    margin-bottom: 1rem;
}

.partner-link a,
.contact-link a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.partner-link a:hover,
.contact-link a:hover {
    color: #00ccff;
}

/* Contact Map */
.contact-map {
    margin-top: 60px;
    padding: 40px 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map h2 {
    font-size: 2rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container,
    .partnership-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1,
    .partnership-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p,
    .partnership-hero p {
        font-size: 1rem;
    }

    .contact-info,
    .contact-form-container,
    .partnership-benefits,
    .partnership-form-container {
        padding: 25px;
    }
}
