* { box-sizing: border-box; margin: 0; padding: 0; } :root { --bg-dark: #171f27; --bg-light: #f1f5f9; --card-dark: #1a1d29; --card-light: #ffffff; --text-dark: #ffffff; --text-light: #1f2937; --accent-color: #1f2937; --accent-hover: #171f27; --secondary-color: #10b981; --border-light: #d1d5db; --border-dark: #374151; --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-dark: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1); --gradient-primary: linear-gradient(135deg, #272a35 0%, #171f27 100%); --gradient-secondary: linear-gradient(135deg, #272a35 0%, #171f27 100%); } html, body { height: 100%; width: 100%; overflow-x: hidden; } body { display: flex; flex-direction: column; min-height: 100vh; font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--bg-dark); color: var(--text-dark); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); line-height: 1.6; scroll-behavior: smooth; } body.light-theme { background: var(--bg-light); color: var(--text-light); } body.light-theme .header { background: #00b3d4; border-bottom: 1px solid var(--border-light); backdrop-filter: blur(10px); color: #ffffff; } body.light-theme .header * { color: #ffffff; } body.light-theme .app-card { background: #00b3d4; color: #ffffff; border: none; } body.light-theme .app-card * { color: #ffffff; } body.light-theme .nav-menu a { color: #ffffff; font-weight: 600; } body.light-theme .nav-menu a:hover { color: #ffffff; opacity: 0.8; } body.light-theme .section-description { color: var(--text-light); opacity: 0.8; } body.light-theme .hero h1 { background: linear-gradient(45deg, #fff, #e2e8f0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } body.light-theme .hero-subtitle { color: #374151; opacity: 0.9; } body.light-theme .carousel-container::before, body.light-theme .carousel-container::after { background: linear-gradient(to right, rgba(241, 245, 249, 1), rgba(241, 245, 249, 0.8) 40%, rgba(241, 245, 249, 0.4) 70%, transparent); } body.light-theme .carousel-container::after { background: linear-gradient(to left, rgba(241, 245, 249, 1), rgba(241, 245, 249, 0.8) 40%, rgba(241, 245, 249, 0.4) 70%, transparent); } /* Smooth scrolling for internal links */ html { scroll-behavior: smooth; } .content { flex: 1; } .container { text-decoration: none; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; } .header { background: var(--card-dark); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-dark); } .header-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; } .logo { max-height: 100px; transition: transform 0.3s ease; } .img-config{ width: 20px; margin-right: 5px; } .logo:hover { transform: scale(1.05); } .nav-menu { display: flex; gap: 2rem; align-items: center; } .nav-link { color: var(--text-dark); text-decoration: none; font-weight: 500; transition: all 0.3s ease; position: relative; padding: 0.5rem 0; } body.light-theme .nav-link { color: #ffffff; } body.light-theme .nav-link:hover { color: #ffffff; opacity: 0.8; transform: translateY(-2px); } .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: var(--accent-color); transition: width 0.3s ease; } .nav-link:hover::after { width: 100%; } .nav-link:hover { color: var(--accent-color); transform: translateY(-2px); } .nav-link:active, .nav-link:focus { background: none; box-shadow: none; outline: none; } .theme-toggle { background: none !important; border: none !important; outline: none !important; cursor: pointer; padding: 0 !important; margin: 0; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; box-shadow: none !important; appearance: none; -webkit-appearance: none; -moz-appearance: none; } .theme-toggle:hover { transform: scale(1.1); background: none !important; border: none !important; outline: none !important; box-shadow: none !important; } .theme-toggle:focus { outline: none !important; box-shadow: none !important; background: none !important; border: none !important; } .theme-toggle:active { outline: none !important; box-shadow: none !important; background: none !important; border: none !important; } .theme-toggle:focus-visible { outline: none !important; box-shadow: none !important; } .theme-icon { transition: all 0.3s ease; width: 28px; height: 28px; object-fit: contain; } /* Hero Section */ .hero { background: var(--gradient-primary); text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; } .hero .container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg fill=white opacity=0.1 viewBox="0 0 1000 100"xmlns=http://www.w3.org/2000/svg><path d="M0,0 C150,50 350,50 500,20 C650,50 850,50 1000,0 L1000,100 L0,100 Z"></path></svg>') no-repeat bottom; background-size: cover; } .hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; margin-top: 0; background: linear-gradient(45deg, #fff, #e2e8f0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; line-height: 1.2; word-wrap: break-word; hyphens: auto; max-width: 100%; padding: 0 20px; } .hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; } .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; } /* Button Styles */ .cta-button { display: inline-flex; align-items: center; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; position: relative; overflow: hidden; } .cta-button.primary { background: var(--accent-color); color: white; box-shadow: var(--shadow-light); } .cta-button.primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-dark); } .cta-button.secondary { background: transparent; color: white; border: 2px solid white; } .cta-button.secondary:hover { background: white; color: var(--accent-color); transform: translateY(-2px); } .google-play-icon { width: 24px; height: 24px; margin-left: 0.5rem; object-fit: contain; } /* Apps Section */ .apps-section { padding: 5rem 0; } .apps-section h2 { font-size: 3.5rem; text-align: left; margin-bottom: 1rem; color: #ffffff; } body.light-theme .apps-section h2 { color: #171f27; } .section-description { text-align: left; font-size: 1.3rem; margin-bottom: 3rem; color: #ffffff; max-width: 600px; margin-left: 0; margin-right: 0; } body.light-theme .section-description { color: #171f27; } .apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .app-card { text-decoration: none; background: var(--card-dark); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-light); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); color: var(--text-dark); border: 1px solid var(--border-dark); position: relative; } .app-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease; } .app-card:hover::before { opacity: 0.1; } .app-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-dark); } .app-card img, .app-card video { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; } .app-card:hover img, .app-card:hover video { transform: scale(1.05); } .app-card video { border-radius: 15px 15px 0 0; } .app-content { padding: 1.5rem; position: relative; z-index: 1; } .app-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; } .app-description { font-size: 0.95rem; opacity: 0.8; margin-bottom: 1rem; line-height: 1.5; } .app-category { display: inline-block; background: var(--accent-color); color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; } .apps-cta { text-align: center; margin-top: 3rem; } /* Contact Section */ .contact-section { padding: 5rem 0; margin: 2rem 0; } .contact-section h2 { font-size: 2.5rem; text-align: start; margin-bottom: 1rem; color: #ffffff; } body.light-theme .contact-section h2 { color: #171f27; } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 3rem 0; } .contact-info h3, .contact-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; color: #ffffff; } body.light-theme .contact-info h3, body.light-theme .contact-form h3 { color: #171f27; } .contact-item { display: flex; align-items: center; margin-bottom: 1.5rem; padding: 1rem; background: var(--card-dark); border-radius: 10px; border: 1px solid var(--border-dark); } body.light-theme .contact-item { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .contact-item * { color: #ffffff; } .contact-icon { font-size: 1.5rem; margin-right: 1rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent-color); color: white; } .contact-icon-img { width: 24px; height: 24px; object-fit: contain; } .email-icon { background: var(--accent-color); } .location-icon { background: #4285f4; } .contact-item a { color: #ffffff; text-decoration: none; font-weight: 500; } .contact-item a:hover { text-decoration: underline; } /* Form Styles */ .contact-form { background: var(--card-dark); padding: 2rem; border-radius: 15px; border: 1px solid var(--border-dark); box-shadow: var(--shadow-light); } body.light-theme .contact-form { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .contact-form * { color: #ffffff; } body.light-theme .contact-form input, body.light-theme .contact-form textarea { background: rgba(255, 255, 255, 0.1); color: #ffffff; border-color: rgba(255, 255, 255, 0.3); } body.light-theme .contact-form input::placeholder, body.light-theme .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.7); } body.light-theme .contact-form * { color: #ffffff; } body.light-theme .contact-form input, body.light-theme .contact-form textarea { background: rgba(255, 255, 255, 0.1); color: #ffffff; border-color: rgba(255, 255, 255, 0.3); } body.light-theme .contact-form input::placeholder, body.light-theme .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.7); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #ffffff; } body.light-theme .contact-form h3 { color: #ffffff; } body.light-theme .form-group label { color: #ffffff; } .form-group input, .form-group textarea { width: 100%; padding: 0.75rem; border: 2px solid var(--border-dark); border-radius: 8px; background: transparent; color: #ffffff; font-size: 1rem; transition: all 0.3s ease; } .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.7); } body.light-theme .form-group input, body.light-theme .form-group textarea { border-color: rgba(255, 255, 255, 0.3); color: #ffffff; background: rgba(255, 255, 255, 0.1); } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); } .form-note { font-size: 0.9rem; opacity: 0.7; margin-top: 1rem; text-align: center; } body.light-theme .form-note { color: #ffffff; } /* Quick Contact */ .quick-contact { text-align: center; margin-top: 3rem; padding: 2rem; background: var(--gradient-secondary); border-radius: 15px; color: white; } /* Social Section */ .social-section { padding: 3rem 0; background: var(--card-dark); border-top: 1px solid var(--border-dark); } body.light-theme .social-section { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .social-section * { color: #ffffff; } .social-section h3 { text-align: center; margin-bottom: 2rem; font-size: 1.5rem; color: var(--accent-color); } .social-links { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; } .social-link { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; border-radius: 0; background: none; border: none; transition: all 0.3s ease; text-decoration: none; color: var(--text-dark); min-width: 120px; } body.light-theme .social-link { background: none; border: none; color: var(--text-light); } .social-link:hover { transform: translateY(-2px); box-shadow: none; } .social-link.instagram:hover { border-color: transparent; box-shadow: none; } .social-link.facebook:hover { border-color: transparent; box-shadow: none; } .social-link.tiktok:hover { border-color: transparent; box-shadow: none; } .social-link.youtube:hover { border-color: transparent; box-shadow: none; } .social-logo { width: 40px; height: 40px; object-fit: contain; margin-bottom: 0.5rem; } .social-name { font-size: 0.9rem; font-weight: 600; opacity: 0.8; } /* Footer */ .footer { background: var(--card-dark); border-top: 1px solid var(--border-dark); padding: 3rem 0 1rem; } body.light-theme .footer { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .footer * { color: #ffffff; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; } .footer-logo { max-height: 120px; transition: transform 0.3s ease; margin-bottom: 1rem; } .footer-links h4, .footer-contact h4 { color: #ffffff; margin-bottom: 1rem; font-size: 1.1rem; } .footer-links a { display: block; color: var(--text-dark); text-decoration: none; margin-bottom: 0.5rem; opacity: 0.8; transition: all 0.3s ease; } body.light-theme .footer-links a { color: #ffffff; } .footer-links a:hover { color: var(--accent-color); opacity: 1; transform: translateX(5px); } .footer-contact p { margin-bottom: 0.5rem; opacity: 0.8; } body.light-theme .footer-contact p { color: #ffffff; } .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-dark); opacity: 0.7; } body.light-theme .footer-bottom { border-color: rgba(255, 255, 255, 0.3); color: #ffffff; } /* Utility Classes */ .texto-dinamico { font-family: "Hedvig Letters Sans", serif; font-size: 1.1rem; transition: color 0.3s ease-in-out; line-height: 1.6; } body.light-theme .texto-dinamico { color: var(--text-light); } .desenvolvedor-info { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; text-align: justify; } .foto-perfil img { width: 150px; max-width: 100%; border-radius: 15px; box-shadow: var(--shadow-light); } /* Media Queries */ @media (max-width: 1024px) { .contact-container { grid-template-columns: 1fr; gap: 2rem; } .footer-content { grid-template-columns: 1fr; text-align: center; } .hero h1 { font-size: 2.2rem; line-height: 1.2; padding: 0 15px; } } /* Media Queries */ @media (max-width: 768px) { .container { max-width: 95%; padding: 0 1rem; } .header-container { flex-direction: row; gap: 1rem; justify-content: space-between; align-items: center; } .nav-menu { flex-wrap: wrap; justify-content: flex-end; gap: 1rem; } .hero h1 { font-size: 2rem; } .hero-subtitle { font-size: 1rem; } .hero-cta { flex-direction: column; align-items: center; } .apps-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; } .apps-section h2 { font-size: 2rem; } .contact-section h2 { font-size: 2rem; } .social-links { gap: 1rem; } .social-link { min-width: 100px; padding: 0.75rem; } .social-logo { width: 35px; height: 35px; } .social-name { font-size: 0.8rem; } .desenvolvedor-info { flex-direction: column; text-align: center; } .foto-perfil img { width: 120px; } .logo { max-height: 100px; } .contact-form { padding: 1.5rem; } } @media (max-width: 480px) { .container { max-width: 90%; padding: 0 0.5rem; } .apps-grid { grid-template-columns: 1fr; gap: 1rem; } .hero { padding: 4rem 0; } .hero h1 { font-size: 1.6rem; line-height: 1.3; padding: 0 10px; word-break: break-word; } .logo { max-height: 80px; } .nav-menu { gap: 0.75rem; } .social-link { width: 90px; min-width: 90px; padding: 0.5rem; } .social-logo { width: 30px; height: 30px; } .social-name { font-size: 0.75rem; } .apps-section h2, .contact-section h2 { font-size: 1.75rem; } .cta-button { padding: 0.75rem 1.5rem; font-size: 0.9rem; } .contact-form { padding: 1rem; } .quick-contact { padding: 1.5rem; } .footer-content { gap: 1.5rem; } .texto-dinamico { font-size: 1rem; } } /* About Page Styles */ .about-section { padding: 2rem 0; } .about-hero { background: transparent; border-radius: 0; color: var(--text-dark); margin-bottom: 4rem; overflow: visible; position: relative; } body.light-theme .about-hero { color: var(--text-light); } .about-hero::before { content: none; } .hero-content { text-align: center; padding: 4rem 2rem; position: relative; z-index: 1; } .about-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; } .hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; } .hero-badge { display: inline-block; background: rgba(255, 255, 255, 0.2); color: #ffffff; padding: 0.75rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.3); backdrop-filter: blur(10px); letter-spacing: 0.5px; } .stat-highlight { text-align: center; background: transparent; padding: 2rem 1.5rem; border-radius: 20px; backdrop-filter: none; border: 2px solid rgba(255, 255, 255, 0.3); min-width: 140px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .stat-highlight::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), transparent); opacity: 0; transition: opacity 0.3s ease; } .stat-highlight:hover { background: rgba(102, 126, 234, 0.08); border-color: rgba(102, 126, 234, 0.6); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2); } .stat-highlight:hover::before { opacity: 1; } .stat-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; animation: float 3s ease-in-out infinite; } .stat-highlight:nth-child(2) .stat-icon { animation-delay: 0.3s; } .stat-highlight:nth-child(3) .stat-icon { animation-delay: 0.6s; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } } .stat-highlight .stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 0.5rem; position: relative; z-index: 1; } .stat-highlight .stat-label { display: block; font-size: 0.9rem; opacity: 0.95; position: relative; z-index: 1; font-weight: 500; } body.light-theme .stat-highlight .stat-number { color: #1f2937; } body.light-theme .stat-highlight .stat-label { color: #374151; opacity: 0.85; } body.light-theme .stat-icon { color: #1f2937; } .about-content { max-width: 1000px; margin: 0 auto; } .about-content h2 { font-size: 2.5rem; margin: 4rem 0 2rem 0; color: #ffffff; text-align: left; } body.light-theme .about-content h2 { color: #171f27; } /* Company Story Section */ .company-story { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; margin: 3rem 0; align-items: center; } .story-text p { margin-bottom: 1.5rem; font-size: 1.1rem; line-height: 1.8; } .story-header { margin-bottom: 2rem; } .story-badge { display: inline-block; background: linear-gradient(135deg, #272a35 0%, #171f27 100%); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); } .story-text h2 { font-size: 2.8rem; font-weight: 800; color: #ffffff; margin: 0; line-height: 1.2; text-align: left; } body.light-theme .story-text h2 { color: #171f27; } .floating-card { background: var(--card-dark); padding: 2rem; border-radius: 20px; text-align: center; border: 1px solid var(--border-dark); box-shadow: var(--shadow-dark); transform: rotate(3deg); transition: transform 0.3s ease; } body.light-theme .floating-card { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .floating-card * { color: #ffffff; } .floating-card:hover { transform: rotate(0deg) scale(1.05); } .card-icon { font-size: 3rem; display: block; margin-bottom: 1rem; } .floating-card h3 { color: var(--accent-color); margin-bottom: 0.5rem; } /* Apps Timeline */ .apps-showcase { margin: 5rem 0; } .apps-showcase-header { text-align: center; margin-bottom: 3rem; } .apps-showcase-header h2 { font-size: 3.5rem; font-weight: 800; color: #ffffff; margin-bottom: 1rem; text-align: left; } body.light-theme .apps-showcase-header h2 { color: #171f27; } .section-intro { text-align: left; font-size: 1.2rem; opacity: 0.9; margin-bottom: 3rem; color: #ffffff; } body.light-theme .section-intro { color: #171f27; } .apps-timeline { position: relative; padding-left: 2rem; } .apps-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 4px; background: var(--gradient-primary); border-radius: 2px; box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); } .timeline-item { display: flex; align-items: flex-start; margin-bottom: 3rem; position: relative; animation: slideInLeft 0.6s ease-out; } @keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } } .timeline-item:nth-child(1) { animation-delay: 0.1s; } .timeline-item:nth-child(2) { animation-delay: 0.2s; } .timeline-item:nth-child(3) { animation-delay: 0.3s; } .timeline-item:nth-child(4) { animation-delay: 0.4s; } .timeline-item:nth-child(5) { animation-delay: 0.5s; } .timeline-icon { font-size: 1.5rem; background: var(--card-dark); border: 3px solid var(--accent-color); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; margin-right: 2rem; position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2); overflow: hidden; flex-shrink: 0; transition: all 0.3s ease; } .timeline-icon:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4); } .app-icon { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; } .app-icon[src="onradio.png"] { width: 110%; height: 110%; transform: translate(-1%, -3%); } body.light-theme .timeline-icon { background: #00b3d4; border-color: var(--accent-color); color: #ffffff; box-shadow: 0 10px 30px rgba(0, 179, 212, 0.3); } .timeline-content { background: var(--card-dark); padding: 2rem; border-radius: 15px; border: 1px solid var(--border-dark); flex: 1; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .timeline-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s ease; } body.light-theme .timeline-content { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .timeline-content * { color: #ffffff; } .timeline-content:hover { transform: translateX(10px); box-shadow: 0 15px 40px rgba(168, 24, 24, 0.2); border-color: var(--accent-color); } .timeline-content:hover::before { opacity: 1; } .timeline-content h3 { color: #ffffff; margin-bottom: 0.5rem; font-size: 1.5rem; font-weight: 700; position: relative; z-index: 1; } body.light-theme .timeline-content h3 { color: #171f27; } .app-meta { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: center; flex-wrap: wrap; position: relative; z-index: 1; } .app-category-badge { display: inline-block; padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: var(--accent-color); color: white; } .app-downloads { display: inline-block; font-size: 0.85rem; opacity: 0.8; color: var(--text-dark); } body.light-theme .app-downloads { color: #ffffff; } .app-badge { display: inline-block; padding: 0.7rem 1.5rem; border-radius: 25px; font-size: 0.9rem; font-weight: 600; margin-top: 1rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; background: var(--accent-color); color: white; position: relative; z-index: 1; overflow: hidden; } .app-badge::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.2); transition: left 0.4s ease; } .app-badge:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); } .app-badge:hover::before { left: 100%; } .app-badge.produtividade { background: linear-gradient(135deg, #3e4e5e, #171f27); } .app-badge.educacao { background: linear-gradient(135deg, #3e4e5e, #171f27); } .app-badge.utilitarios { background: linear-gradient(135deg, #3e4e5e, #171f27); } /* Founder Spotlight */ .founder-spotlight { margin: 5rem 0; position: relative; overflow: hidden; } .spotlight-header { text-align: center; margin-bottom: 3rem; } .spotlight-header h2 { font-size: 3.5rem; font-weight: 800; color: #ffffff; margin: 0 0 1rem 0; text-align: left; } body.light-theme .spotlight-header h2 { color: #171f27; } .spotlight-header p { font-size: 1.2rem; opacity: 0.9; color: #ffffff; text-align: left; } body.light-theme .spotlight-header p { color: #171f27; } .founder-container { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05)); border-radius: 25px; padding: 3rem; border: 1px solid rgba(102, 126, 234, 0.1); position: relative; } .founder-left { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; } .founder-image { position: relative; width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 4px solid rgba(102, 126, 234, 0.5); box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2)); } .founder-image:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4); border-color: rgba(102, 126, 234, 0.8); } .founder-image img { width: 130%; height: 130%; border-radius: 0; object-fit: cover; object-position: center; transform: translateY(-15px) translateX(-15%); border: none; box-shadow: none; position: relative; z-index: 2; display: block; } /* Social Links External (diretamente abaixo da foto) */ .social-links-external { display: flex; justify-content: center; gap: 35px; margin-top: 20px; } .social-links-external .social-link { color: var(--text-color); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; background: none !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; width: auto !important; height: auto !important; padding: 0 !important; margin: 0 !important; min-width: auto !important; display: inline-block !important; flex-direction: unset !important; align-items: unset !important; justify-content: unset !important; } .social-links-external .social-link svg { width: 32px; height: 32px; display: block; color: #ffffff; transition: all 0.3s ease; } body.light-theme .social-links-external .social-link { color: #171f27; } body.light-theme .social-links-external .social-link svg { color: #171f27; } .social-links-external .social-link:hover { transform: translateY(-8px) scale(1.15); } .social-links-external .social-link.github:hover svg { color: #ffffff; } .social-links-external .social-link.linkedin:hover svg { color:#ffffff; } .image-overlay { position: absolute; bottom: 140px; left: 130px; background: var(--gradient-primary); color: white; padding: 0.4rem 0.8rem; border-radius: 15px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 3; white-space: nowrap; } .founder-story h3 { font-size: 2.5rem; color: #ffffff; margin-bottom: 1rem; font-weight: 800; } body.light-theme .founder-story h3 { color: #171f27; } .founder-quote { font-size: 1.3rem; font-style: italic; color: #ffffff; margin-bottom: 2rem; padding: 1rem; border-left: 4px solid rgba(102, 126, 234, 0.5); background: rgba(102, 126, 234, 0.05); border-radius: 0 10px 10px 0; } body.light-theme .founder-quote { color: #171f27; border-left-color: rgba(0, 179, 212, 0.5); background: rgba(0, 179, 212, 0.05); } /* Story Timeline */ .story-timeline { margin: 2rem 0; } .story-point { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding: 1.2rem; background: var(--card-dark); border-radius: 12px #171f27; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .story-point::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); } body.light-theme .story-point { background: #00b3d4; border-color: #ffffff; color: #ffffff; } body.light-theme .story-point * { color: #ffffff; } .story-point:hover { transform: translateX(8px); box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2); border-color: #171f27; } .story-point:hover::before { transform: scaleX(1); } .point-year { background: var(--gradient-primary); color: white; padding: 0.6rem 1rem; border-radius: 18px; font-weight: 700; font-size: 0.8rem; min-width: 90px; text-align: center; white-space: nowrap; position: relative; z-index: 1; } .story-point p { margin: 0; line-height: 1.6; flex: 1; position: relative; z-index: 1; } /* Founder Skills */ .founder-skills { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; } .skill-tag { background: linear-gradient(135deg, var(--accent-color), #000000); color: white; padding: 0.6rem 1.2rem; border-radius: 25px; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid #171f27; position: relative; overflow: hidden; } .skill-tag .img-config{ margin-right: 0; display: block; } .skill-tag::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.15); transition: left 0.4s ease; } .skill-tag:hover { transform: translateY(-4px); box-shadow: 0 8px 20px #171f27; border-color: rgba(255, 255, 255, 0.6); } .skill-tag:hover::before { left: 100%; } /* Values Section */ .values-section { margin: 5rem 0; } .values-header { text-align: center; margin-bottom: 4rem; } .values-header h2 { font-size: 3.5rem; font-weight: 800; color: #ffffff; margin-bottom: 1rem; text-align: left; } body.light-theme .values-header h2 { color: #171f27; } .values-subtitle { font-size: 1.2rem; opacity: 0.9; color: #ffffff; text-align: left; } body.light-theme .values-subtitle { color: #171f27; } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; } .value-card { background: var(--card-dark); border: 1px solid var(--border-dark); border-radius: 20px; padding: 2.5rem; text-align: center; position: relative; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; display: flex; flex-direction: column; align-items: center; } .value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); } body.light-theme .value-card { background: #00b3d4; border-color: var(--border-light); color: #ffffff; } body.light-theme .value-card::before { background: linear-gradient(90deg, #0088a8, #00b3d4); } body.light-theme .value-card * { color: #ffffff; } .value-card:hover::before { transform: scaleX(1); } .value-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25); border-color: var(--accent-color); } .value-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; position: relative; z-index: 2; transition: transform 0.4s ease; } .value-card:hover .value-icon { transform: scale(1.15) rotate(-10deg); } .value-card h3 { color: #ffffff; margin-bottom: 1rem; font-size: 1.4rem; font-weight: 700; position: relative; z-index: 2; } body.light-theme .value-card h3 { color: #171f27; } .value-card p { line-height: 1.7; opacity: 0.9; position: relative; z-index: 2; margin: 0; } .value-accent { position: absolute; bottom: 0; right: 0; width: 100px; height: 100px; background: linear-gradient(135deg, var(--accent-color), transparent); border-radius: 0 0 0 100%; opacity: 0.05; z-index: 0; } /* Responsive Design for About Page */ @media (max-width: 768px) { .about-hero h1 { font-size: 2rem; } .hero-stats { gap: 1rem; } .stat-highlight { min-width: 110px; padding: 1.5rem 1rem; } .stat-icon { font-size: 2rem; } .stat-highlight .stat-number { font-size: 2rem; } .company-story { grid-template-columns: 1fr; gap: 2rem; } .floating-card { transform: none; margin: 2rem 0; } .apps-showcase-header h2 { font-size: 2.5rem; } .timeline-item { flex-direction: column; align-items: flex-start; } .timeline-icon { margin-right: 0; margin-bottom: 1rem; } .timeline-content { margin-left: 0; } .spotlight-header h2 { font-size: 2.5rem; } .founder-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 2rem; } .founder-left { gap: 1rem; } .founder-image { width: 160px; height: 160px; border: 2px solid rgba(102, 126, 234, 0.3); } .social-links-external { gap: 1rem; margin-top: 1.5rem; } .social-links-external .social-link { width: 50px; height: 50px; } .founder-image img { width: 130%; height: 130%; object-fit: cover; object-position: center; transform: translateY(-10px) translateX(-15%); border: none; box-shadow: none; } .timeline-journey { flex-direction: column; gap: 1rem; } .journey-step { min-width: auto; } .story-point { flex-direction: column; align-items: center; text-align: center; gap: 1rem; } .point-year { min-width: auto; } .values-grid { grid-template-columns: 1fr; gap: 1.5rem; } .values-header h2 { font-size: 2.5rem; } .founder-skills { gap: 0.6rem; } .skill-tag { padding: 0.5rem 1rem; font-size: 0.8rem; } } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .app-card, .contact-item, .cta-button { animation: fadeInUp 0.6s ease-out; } /* Focus styles for accessibility */ .nav-link:focus, .cta-button:focus, .theme-toggle:focus { outline: none; outline-offset: 0; } /* Form Messages */ .form-message { height: 10vh; padding: 1rem; margin: 1rem 0; border-radius: 8px; font-weight: 500; text-align: center; } .form-message.success { background-color: #07c4fd; color: #000000; border: 1px solid #07c4fd; } .form-message.error { background-color: #ff0015; color: #ffffff; border: 1px solid #ff0019; } body.light-theme .form-message.success { background-color: #173a5a; color: #ffffff; border-color: #173a5a; } body.light-theme .form-message.error { background-color: #ff0015; color: #ffffff; border-color: #ff0015; } /* Footer Social Links */ .footer-info { display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; } .footer-info h4 { margin: 0; font-size: 1rem; font-weight: 600; } body.light-theme .footer-info h4, body.light-theme .footer-links h4, body.light-theme .footer-contact h4 { color: #ffffff; } .footer-social { display: flex; gap: 20px; align-items: center; } .footer-social-link { display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all 0.3s ease; opacity: 0.8; text-decoration: none; color: var(--text-color); } .footer-social-link:hover { opacity: 1; transform: translateY(-2px); } .footer-social-link img { border-radius: 4px; } .footer-social-link span { font-size: 0.8rem; font-weight: 500; text-align: center; } body.light-theme .footer-social-link { color: #ffffff; max-height: 120px; transition: transform 0.3s ease; } /* Reviews Carousel Section */ .reviews-section { padding: 5rem 0; background: linear-gradient(135deg, #053b45 0%, #1a1f3a 100%); margin: 4rem 0; overflow: hidden; position: relative; } .reviews-carousel { width: 100%; overflow: hidden; position: relative; padding: 2rem 0; } .reviews-carousel h2 { font-size: 3.5rem; font-weight: 700; text-align: center; margin-bottom: 3rem; color: #ffffff; position: relative; z-index: 1; } body.light-theme .reviews-carousel h2 { color: #171f27; } body.light-theme .review-item { background: linear-gradient(135deg, #e8f4f8 0%, #f0fafb 50%, #e8f4f8 100%); border: 2px solid #171f27; color: #171f27; } body.light-theme .review-item:hover { border-color: #171f27; } body.light-theme .review-card { background: linear-gradient(135deg, #e8f4f8 0%, #f0fafb 50%, #e8f4f8 100%); border: 2px solid #171f27; color: #171f27; } body.light-theme .review-card:hover { border-color: rgba(5, 59, 69, 0.6); } body.light-theme .review-text { color: #171f27; } body.light-theme .review-author { color: #171f27; } .reviews-section::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%); pointer-events: none; } .reviews-section h2 { font-size: 2.8rem; font-weight: 700; text-align: center; margin-bottom: 2rem; color: white; position: relative; z-index: 1; order: -1; } .reviews-section h2::after { content: ''; display: block; width: 100px; height: 3px; background: var(--gradient-primary); margin: 1rem auto 0; } .carousel-container { width: 100%; overflow: hidden; position: relative; z-index: 1; padding: 2rem 0; display: flex; flex-direction: column; } .carousel-container::before, .carousel-container::after { content: ''; position: absolute; top: 0; width: 400px; height: 100%; background: linear-gradient(to right, rgba(23, 31, 39, 1), rgba(23, 31, 39, 0.8) 40%, rgba(23, 31, 39, 0.4) 70%, transparent); z-index: 10; pointer-events: none; } .carousel-container::after { right: 0; background: linear-gradient(to left, rgba(23, 31, 39, 1), rgba(23, 31, 39, 0.8) 40%, rgba(23, 31, 39, 0.4) 70%, transparent); } .carousel-track { display: flex; gap: 1.5rem; animation: scrollRight 20s linear infinite; padding: 1rem 1rem; will-change: transform; } .carousel-container.is-js-carousel .carousel-track { animation: none; cursor: grab; touch-action: pan-y; } .carousel-container.is-js-carousel .carousel-track.is-dragging { cursor: grabbing; } .carousel-container.is-js-carousel .carousel-track.is-dragging * { user-select: none; } @keyframes scrollRight { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - 1.5rem)); } } .carousel-track:hover { animation-play-state: paused; } .review-item { flex: 0 0 450px; min-width: 450px; background: linear-gradient(135deg, #171f27 0%, #171f27 50%, #053b45 100%); border: 2px solid rgba(79, 195, 247, 0.5); border-radius: 24px; padding: 2rem 1.5rem; backdrop-filter: blur(30px); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; } .review-item:hover { border-color: rgba(79, 195, 247, 0.9); transform: translateY(-15px) scale(1.05); } .review-play-store-logo { position: absolute; top: 1.5rem; left: 1.5rem; height: 32px; width: auto; z-index: 10; } .review-stars { font-size: 1.5rem; letter-spacing: 0.5rem; margin-bottom: 0.8rem; display: flex; justify-content: center; margin-top: 4rem; } .review-text { color: rgba(255, 255, 255, 0.9); line-height: 1.6; font-size: 1rem; margin: 0 0 0.8rem 0; font-weight: 400; text-align: center; position: relative; z-index: 2; } .review-author { display: block; color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; font-weight: 600; padding-top: 0.6rem; border-top: 1px solid rgba(79, 195, 247, 0.3); text-align: center; width: 100%; position: relative; z-index: 2; } .review-app { color: #ffffff; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.1rem; margin-top: 0.3rem; } .googleplay-logo { width: 20px; height: 20px; display: inline-block; } body.light-theme .review-app { color: #171f27; } .review-card { flex: 0 0 380px; min-width: 380px; background: linear-gradient(135deg, #053b45 0%, #0d5a66 50%, #053b45 100%); border: 2px solid rgba(79, 195, 247, 0.5); border-radius: 24px; padding: 0; backdrop-filter: blur(30px); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; } .review-card::before { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, transparent 100%); transition: top 0.6s ease; } .review-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #4fc3f7, #00bcd4, transparent); opacity: 0; transition: opacity 0.4s ease; } .review-card:hover { border-color: rgba(79, 195, 247, 0.9); transform: translateY(-15px) scale(1.05); } .review-card:hover::before { top: 0; } .review-card:hover::after { opacity: 1; } .review-content { padding: 2.5rem; display: flex; flex-direction: column; height: 100%; position: relative; z-index: 1; } .review-stars { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; } .review-stars span { font-size: 1.3rem; transition: transform 0.3s ease; } .review-card:hover .review-stars span { transform: scale(1.15); } .review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1.2rem; border-bottom: 1px solid rgba(99, 102, 241, 0.2); padding-bottom: 1.2rem; } .reviewer-info { display: flex; flex-direction: column; flex: 1; } .reviewer-info strong { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 0.5px; } .reviewer-app { color: #ffffff; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } .store-badge { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: white; padding: 0.6rem 1.2rem; border-radius: 30px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.8px; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); flex-shrink: 0; } .review-text { color: rgba(255, 255, 255, 0.9); line-height: 1.8; font-size: 0.95rem; margin: 0; font-weight: 400; flex: 1; } .store-badge { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: white; padding: 0.5rem 1rem; border-radius: 25px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); } .review-text { color: rgba(255, 255, 255, 0.85); line-height: 1.7; font-size: 0.95rem; margin: 0; font-weight: 400; } @media (max-width: 768px) { .reviews-section { padding: 3rem 0; } .reviews-section h2 { font-size: 2rem; } .carousel-track { gap: 1rem; padding: 1rem 1rem; } .review-card, .review-item { flex: 0 0 300px; min-width: 300px; padding: 2.5rem 2rem; } .carousel-container::before, .carousel-container::after { display: none; } } @media (max-width: 480px) { .reviews-section { padding: 2.5rem 0; } .reviews-section h2 { font-size: 1.8rem; margin-bottom: 0.5rem; } .carousel-container { padding: 1rem 0; } .carousel-track { gap: 0.75rem; padding: 0 0.5rem; } .review-item { flex: 0 0 250px; min-width: 250px; padding: 1rem 0.75rem; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; } .review-stars { font-size: 0.75rem; letter-spacing: 0.1rem; margin-bottom: 0.5rem; gap: 0.2rem; display: flex; justify-content: center; } .review-stars span { font-size: 0.75rem; } .review-text { font-size: 0.75rem; line-height: 1.3; margin: 0 0 0.3rem 0; width: 100%; } .review-author { font-size: 0.7rem; padding-top: 0.5rem; border-top: none; width: 100%; } .review-app { font-size: 0.65rem; gap: 0.2rem; margin-top: 0.2rem; justify-content: center; } .googleplay-logo { width: 14px; height: 14px; flex-shrink: 0; } .store-badge { padding: 0.2rem 0.4rem; font-size: 0.55rem; } } @media (max-width: 768px) { .reviews-section h2 { font-size: 2rem; margin-bottom: 2rem; } .review-card, .review-item { flex: 0 0 calc(50% - 1rem); min-width: 250px; padding: 1.5rem; } @keyframes scrollRight { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } } } @media (max-width: 480px) { .review-card, .review-item { flex: 0 0 90vw; min-width: 90vw; padding: 1.2rem; } .review-text { font-size: 0.9rem; } .reviews-section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; } }