Spaces:
Sleeping
Sleeping
| /* SoftEdge Corporation - React Components Styles */ | |
| .react-app { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| transition: all 0.6s ease; | |
| } | |
| .react-app.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .react-container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 2rem; | |
| background: rgba(30, 41, 59, 0.8); | |
| backdrop-filter: blur(20px); | |
| border-radius: 1rem; | |
| border: 1px solid rgba(148, 163, 184, 0.1); | |
| box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); | |
| } | |
| .react-header { | |
| text-align: center; | |
| margin-bottom: 2rem; | |
| padding-bottom: 1rem; | |
| border-bottom: 1px solid rgba(148, 163, 184, 0.2); | |
| } | |
| .react-header h3 { | |
| color: #06b6d4; | |
| font-size: 1.5rem; | |
| font-weight: 600; | |
| margin-bottom: 0.5rem; | |
| } | |
| .react-header p { | |
| color: #94a3b8; | |
| font-size: 0.9rem; | |
| } | |
| /* Navigation */ | |
| .react-nav { | |
| display: flex; | |
| gap: 0.5rem; | |
| margin-bottom: 2rem; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| } | |
| .nav-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| padding: 0.75rem 1rem; | |
| background: rgba(51, 65, 85, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.5rem; | |
| color: #cbd5e1; | |
| font-size: 0.9rem; | |
| font-weight: 500; | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| } | |
| .nav-item:hover { | |
| background: rgba(6, 182, 212, 0.1); | |
| border-color: rgba(6, 182, 212, 0.3); | |
| color: #06b6d4; | |
| transform: translateY(-2px); | |
| } | |
| .nav-item.active { | |
| background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2)); | |
| border-color: rgba(6, 182, 212, 0.4); | |
| color: #06b6d4; | |
| box-shadow: 0 0 20px rgba(6, 182, 212, 0.2); | |
| } | |
| .nav-icon { | |
| font-size: 1rem; | |
| } | |
| /* Content */ | |
| .content-container { | |
| min-height: 400px; | |
| } | |
| .content-section { | |
| text-align: center; | |
| } | |
| .content-section h2 { | |
| color: #f1f5f9; | |
| font-size: 2rem; | |
| font-weight: 700; | |
| margin-bottom: 1rem; | |
| background: linear-gradient(135deg, #06b6d4, #3b82f6); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .content-section > p { | |
| color: #94a3b8; | |
| font-size: 1.1rem; | |
| margin-bottom: 2rem; | |
| max-width: 600px; | |
| margin-left: auto; | |
| margin-right: auto; | |
| } | |
| /* Feature Grid */ | |
| .feature-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 1.5rem; | |
| margin-top: 2rem; | |
| } | |
| .feature-card { | |
| background: rgba(51, 65, 85, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.75rem; | |
| padding: 1.5rem; | |
| transition: all 0.3s ease; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| border-color: rgba(6, 182, 212, 0.3); | |
| box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1); | |
| } | |
| .feature-icon { | |
| font-size: 2rem; | |
| margin-bottom: 1rem; | |
| } | |
| .feature-card h3 { | |
| color: #f1f5f9; | |
| font-size: 1.25rem; | |
| font-weight: 600; | |
| margin-bottom: 0.5rem; | |
| } | |
| .feature-card p { | |
| color: #94a3b8; | |
| font-size: 0.9rem; | |
| line-height: 1.5; | |
| } | |
| /* Services Grid */ | |
| .services-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 1.5rem; | |
| margin-top: 2rem; | |
| } | |
| .service-card { | |
| background: rgba(51, 65, 85, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.75rem; | |
| padding: 1.5rem; | |
| transition: all 0.3s ease; | |
| text-align: left; | |
| } | |
| .service-card:hover { | |
| transform: translateY(-5px); | |
| border-color: rgba(6, 182, 212, 0.3); | |
| box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1); | |
| } | |
| .service-icon { | |
| font-size: 2.5rem; | |
| margin-bottom: 1rem; | |
| } | |
| .service-card h3 { | |
| color: #f1f5f9; | |
| font-size: 1.25rem; | |
| font-weight: 600; | |
| margin-bottom: 0.5rem; | |
| } | |
| .service-card p { | |
| color: #94a3b8; | |
| font-size: 0.9rem; | |
| line-height: 1.5; | |
| margin-bottom: 1rem; | |
| } | |
| .tech-stack { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 0.5rem; | |
| } | |
| .tech-tag { | |
| background: rgba(6, 182, 212, 0.1); | |
| color: #06b6d4; | |
| padding: 0.25rem 0.75rem; | |
| border-radius: 9999px; | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| border: 1px solid rgba(6, 182, 212, 0.2); | |
| } | |
| /* Projects Grid */ | |
| .projects-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); | |
| gap: 1.5rem; | |
| margin-top: 2rem; | |
| } | |
| .project-card { | |
| background: rgba(51, 65, 85, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.75rem; | |
| padding: 1.5rem; | |
| transition: all 0.3s ease; | |
| text-align: left; | |
| } | |
| .project-card:hover { | |
| transform: translateY(-5px); | |
| border-color: rgba(147, 51, 234, 0.3); | |
| box-shadow: 0 10px 25px rgba(147, 51, 234, 0.1); | |
| } | |
| .project-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: flex-start; | |
| margin-bottom: 1rem; | |
| } | |
| .project-header h3 { | |
| color: #f1f5f9; | |
| font-size: 1.25rem; | |
| font-weight: 600; | |
| flex: 1; | |
| } | |
| .status { | |
| padding: 0.25rem 0.75rem; | |
| border-radius: 9999px; | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| text-transform: uppercase; | |
| } | |
| .status.concluído { | |
| background: rgba(34, 197, 94, 0.1); | |
| color: #22c55e; | |
| border: 1px solid rgba(34, 197, 94, 0.2); | |
| } | |
| .status.em-andamento { | |
| background: rgba(251, 191, 36, 0.1); | |
| color: #fbbf24; | |
| border: 1px solid rgba(251, 191, 36, 0.2); | |
| } | |
| .project-card p { | |
| color: #94a3b8; | |
| font-size: 0.9rem; | |
| line-height: 1.5; | |
| margin-bottom: 1rem; | |
| } | |
| /* About Section */ | |
| .about-content { | |
| max-width: 800px; | |
| margin: 0 auto; | |
| } | |
| .team-section { | |
| margin-bottom: 2rem; | |
| } | |
| .team-section h3 { | |
| color: #f1f5f9; | |
| font-size: 1.5rem; | |
| font-weight: 600; | |
| margin-bottom: 1.5rem; | |
| text-align: center; | |
| } | |
| .team-members { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); | |
| gap: 1rem; | |
| } | |
| .team-member { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| background: rgba(51, 65, 85, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.5rem; | |
| padding: 1rem; | |
| transition: all 0.3s ease; | |
| } | |
| .team-member:hover { | |
| border-color: rgba(6, 182, 212, 0.3); | |
| transform: translateY(-2px); | |
| } | |
| .member-avatar { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 50%; | |
| background: linear-gradient(135deg, #06b6d4, #3b82f6); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-weight: 600; | |
| font-size: 1.1rem; | |
| } | |
| .member-info h4 { | |
| color: #f1f5f9; | |
| font-size: 1rem; | |
| font-weight: 600; | |
| margin-bottom: 0.25rem; | |
| } | |
| .member-info p { | |
| color: #94a3b8; | |
| font-size: 0.8rem; | |
| } | |
| .mission-section h3 { | |
| color: #f1f5f9; | |
| font-size: 1.5rem; | |
| font-weight: 600; | |
| margin-bottom: 1rem; | |
| text-align: center; | |
| } | |
| .mission-section p { | |
| color: #94a3b8; | |
| font-size: 1rem; | |
| line-height: 1.6; | |
| text-align: center; | |
| } | |
| /* Contact Form */ | |
| .contact-form { | |
| max-width: 500px; | |
| margin: 0 auto; | |
| background: rgba(51, 65, 85, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.75rem; | |
| padding: 2rem; | |
| } | |
| .form-group { | |
| margin-bottom: 1.5rem; | |
| text-align: left; | |
| } | |
| .form-group label { | |
| display: block; | |
| color: #f1f5f9; | |
| font-size: 0.9rem; | |
| font-weight: 500; | |
| margin-bottom: 0.5rem; | |
| } | |
| .form-group input, | |
| .form-group textarea { | |
| width: 100%; | |
| padding: 0.75rem; | |
| background: rgba(30, 41, 59, 0.5); | |
| border: 1px solid rgba(148, 163, 184, 0.2); | |
| border-radius: 0.5rem; | |
| color: #f1f5f9; | |
| font-size: 0.9rem; | |
| transition: all 0.3s ease; | |
| } | |
| .form-group input:focus, | |
| .form-group textarea:focus { | |
| outline: none; | |
| border-color: rgba(6, 182, 212, 0.4); | |
| box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1); | |
| } | |
| .submit-btn { | |
| width: 100%; | |
| padding: 0.75rem; | |
| background: linear-gradient(135deg, #06b6d4, #3b82f6); | |
| color: white; | |
| border: none; | |
| border-radius: 0.5rem; | |
| font-size: 1rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| } | |
| .submit-btn:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3); | |
| } | |
| .success-message { | |
| text-align: center; | |
| padding: 2rem; | |
| background: rgba(34, 197, 94, 0.1); | |
| border: 1px solid rgba(34, 197, 94, 0.2); | |
| border-radius: 0.75rem; | |
| } | |
| .success-message h3 { | |
| color: #22c55e; | |
| font-size: 1.25rem; | |
| margin-bottom: 0.5rem; | |
| } | |
| .success-message p { | |
| color: #94a3b8; | |
| margin-bottom: 1rem; | |
| } | |
| .success-message button { | |
| padding: 0.5rem 1rem; | |
| background: rgba(34, 197, 94, 0.2); | |
| color: #22c55e; | |
| border: 1px solid rgba(34, 197, 94, 0.3); | |
| border-radius: 0.5rem; | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| } | |
| .success-message button:hover { | |
| background: rgba(34, 197, 94, 0.3); | |
| } | |
| /* Footer */ | |
| .react-footer { | |
| text-align: center; | |
| margin-top: 2rem; | |
| padding-top: 1rem; | |
| border-top: 1px solid rgba(148, 163, 184, 0.2); | |
| } | |
| .react-footer p { | |
| color: #94a3b8; | |
| font-size: 0.9rem; | |
| } | |
| /* Responsive Design */ | |
| @media (max-width: 768px) { | |
| .react-container { | |
| padding: 1rem; | |
| } | |
| .react-nav { | |
| flex-direction: column; | |
| align-items: stretch; | |
| } | |
| .nav-item { | |
| justify-content: center; | |
| } | |
| .feature-grid, | |
| .services-grid, | |
| .projects-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .team-members { | |
| grid-template-columns: 1fr; | |
| } | |
| .content-section h2 { | |
| font-size: 1.5rem; | |
| } | |
| } | |
| /* Animations */ | |
| @keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| .content-section { | |
| animation: fadeInUp 0.6s ease-out; | |
| } | |
| .react-nav { | |
| animation: fadeInUp 0.6s ease-out 0.2s both; | |
| } | |
| /* Loading states */ | |
| .loading { | |
| opacity: 0.7; | |
| pointer-events: none; | |
| } | |
| .loading::after { | |
| content: ''; | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| width: 20px; | |
| height: 20px; | |
| margin: -10px 0 0 -10px; | |
| border: 2px solid rgba(6, 182, 212, 0.3); | |
| border-top: 2px solid #06b6d4; | |
| border-radius: 50%; | |
| animation: spin 1s linear infinite; | |
| } | |
| @keyframes spin { | |
| 0% { transform: rotate(0deg); } | |
| 100% { transform: rotate(360deg); } | |
| } | |