/**
 * ╔═══════════════════════════════════════════════════════════════════╗
 * ║  GOL Technologies - Built CSS File                                ║
 * ╠═══════════════════════════════════════════════════════════════════╣
 * ║  Built: 2026-03-02T05:59:21.820Z
 * ║  This file was auto-generated by the build system.                ║
 * ║  Do not edit directly - modify the source files instead.          ║
 * ╠═══════════════════════════════════════════════════════════════════╣
 * ║  Source files:                                                    ║
 *   - src/_assets/css/pages/partnerships.css
 * ╚═══════════════════════════════════════════════════════════════════╝
 */

/* ========================================
   Partnership & Channel Strategy Page
   ======================================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    font-family: var(--font-mono);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Hero Visual - Partnership Network */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.partnership-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.pv-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    z-index: 3;
    animation: corePulse 3s ease-in-out infinite;
}

.pv-center svg {
    stroke: white;
}

.pv-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid;
}

.pv-ring-1 {
    width: 180px;
    height: 180px;
    border-color: rgba(59, 130, 246, 0.2);
    animation: ringPulse 4s ease-in-out infinite;
}

.pv-ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(139, 92, 246, 0.15);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.pv-ring-3 {
    width: 380px;
    height: 380px;
    border-color: rgba(6, 182, 212, 0.1);
    animation: ringPulse 4s ease-in-out infinite 2s;
}

.pv-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: all var(--transition-medium);
}

.pv-node:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.pv-node span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pv-node svg {
    stroke: var(--accent-cyan);
}

.pv-node-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat 6s ease-in-out infinite;
}

.pv-node-2 {
    bottom: 15%;
    left: 0;
    animation: nodeFloat 6s ease-in-out infinite 2s;
}

.pv-node-3 {
    bottom: 15%;
    right: 0;
    animation: nodeFloat 6s ease-in-out infinite 4s;
}

.pv-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.1));
    z-index: 1;
    transform-origin: left center;
}

.pv-connector-1 {
    width: 130px;
    transform: translate(0, -50%) rotate(-90deg);
}

.pv-connector-2 {
    width: 140px;
    transform: translate(0, -50%) rotate(210deg);
}

.pv-connector-3 {
    width: 140px;
    transform: translate(0, -50%) rotate(-30deg);
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.section-alt {
    background: rgba(15, 23, 42, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Partnership Model Cards */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.model-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.model-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.model-card:nth-child(2) .model-icon {
    background: rgba(139, 92, 246, 0.1);
}

.model-card:nth-child(3) .model-icon {
    background: rgba(6, 182, 212, 0.1);
}

.model-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-blue);
    font-family: var(--font-mono);
}

.model-badge-purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-purple);
}

.model-badge-green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
}

.model-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.model-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.model-features li svg {
    flex-shrink: 0;
}

.model-ideal {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 24px;
}

.ideal-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 6px;
    font-family: var(--font-mono);
}

.ideal-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.model-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card:nth-child(2) .benefit-icon { background: rgba(6, 182, 212, 0.08); }
.benefit-card:nth-child(3) .benefit-icon { background: rgba(139, 92, 246, 0.08); }
.benefit-card:nth-child(4) .benefit-icon { background: rgba(16, 185, 129, 0.08); }
.benefit-card:nth-child(5) .benefit-icon { background: rgba(245, 158, 11, 0.08); }
.benefit-card:nth-child(6) .benefit-icon { background: rgba(236, 72, 153, 0.08); }

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--glass-bg);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    background: var(--bg-primary);
}

.process-step:nth-child(2) .step-number { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.process-step:nth-child(3) .step-number { border-color: var(--accent-purple); color: var(--accent-purple); }
.process-step:nth-child(4) .step-number { border-color: var(--accent-green); color: var(--accent-green); }

.step-content {
    padding-top: 8px;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Partnership Form */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.form-info .section-label {
    text-align: left;
}

.form-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.form-container {
    position: relative;
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    outline: none;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px;
}

.form-success.active {
    display: block;
}

.success-icon {
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 120px 0;
}

.cta-container {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Loading Animation */
.loading-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pv-node-1 {
    animation: nodeFloat1 6s ease-in-out infinite;
}

@keyframes nodeFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .partnership-visual {
        width: 300px;
        height: 300px;
    }

    .pv-ring-3 {
        width: 280px;
        height: 280px;
    }

    .pv-ring-2 {
        width: 210px;
        height: 210px;
    }

    .pv-ring-1 {
        width: 140px;
        height: 140px;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-info {
        text-align: center;
    }

    .form-info .section-label {
        text-align: center;
    }

    .form-trust {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .partnership-visual {
        width: 250px;
        height: 250px;
    }

    .pv-ring-3 { width: 240px; height: 240px; }
    .pv-ring-2 { width: 180px; height: 180px; }
    .pv-ring-1 { width: 120px; height: 120px; }

    .pv-center { width: 60px; height: 60px; }
    .pv-center svg { width: 32px; height: 32px; }

    .pv-node { padding: 10px 14px; }
    .pv-node svg { width: 16px; height: 16px; }
    .pv-node span { font-size: 0.625rem; }

    .pv-node-2 { left: -10px; }
    .pv-node-3 { right: -10px; }

    .pv-connector { display: none; }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .cta-container {
        padding: 48px 24px;
    }

    .process-timeline::before {
        left: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .process-step {
        gap: 20px;
        padding: 24px 0;
    }
}
