*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --navy: #0f1b3d; --navy-light: #1a2750; --teal: #38b6c4; --teal-light: #5ec5d0; --teal-dark: #2a9d8f; --teal-gradient: linear-gradient(135deg, #38b6c4, #2a9d8f); --bg-light: #f0f9ff; --bg-gradient: linear-gradient(180deg, #f0f9ff 0%, #e8f8f5 50%, #f0f9ff 100%); --white: #ffffff; --gray-100: #f7f8fa; --gray-200: #e8eaef; --gray-600: #6b7280; --shadow-sm: 0 2px 8px rgba(15, 27, 61, 0.06); --shadow-md: 0 8px 30px rgba(15, 27, 61, 0.1); --shadow-lg: 0 20px 60px rgba(15, 27, 61, 0.15); --shadow-teal: 0 8px 30px rgba(56, 182, 196, 0.3); --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-xl: 32px; --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--navy); background: var(--bg-gradient); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a { text-decoration: none; color: inherit; } img { max-width: 100%; display: block; } ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-light); } ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; transition: var(--transition); background: transparent; } .nav.scrolled { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 0.7rem 2rem; } .nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; } .nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.3rem; color: var(--navy); } .nav-logo img { height: 36px; width: auto; } .nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; } .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--navy); opacity: 0.7; transition: var(--transition); position: relative; } .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal-gradient); transition: var(--transition); border-radius: 1px; } .nav-links a:hover { opacity: 1; } .nav-links a:hover::after { width: 100%; } .nav-cta { background: var(--teal-gradient); color: var(--white) !important; padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; opacity: 1 !important; transition: var(--transition); box-shadow: var(--shadow-teal); } .nav-cta::after { display: none !important; } .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(56, 182, 196, 0.4); } .lang-switcher { display: flex; align-items: center; gap: 0.25rem; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 50px; padding: 0.25rem; } .lang-btn { padding: 0.3rem 0.7rem; border: none; background: transparent; border-radius: 50px; font-family: inherit; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--gray-600); } .lang-btn.active { background: var(--teal-gradient); color: var(--white); box-shadow: var(--shadow-sm); } .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; } .nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); } .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 6rem 2rem 4rem; overflow: hidden; } .hero-bg { position: absolute; inset: 0; z-index: 0; } .hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 20s ease-in-out infinite; } .hero-bg .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(56, 182, 196, 0.3), transparent 70%); top: -200px; right: -100px; animation-delay: 0s; } .hero-bg .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(42, 157, 143, 0.25), transparent 70%); bottom: -150px; left: -100px; animation-delay: -7s; } .hero-bg .orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(56, 182, 196, 0.2), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -14s; } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -30px) scale(1.05); } 50% { transform: translate(-20px, 20px) scale(0.95); } 75% { transform: translate(20px, 10px) scale(1.02); } } .hero-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(15, 27, 61, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 27, 61, 0.03) 1px, transparent 1px); background-size: 60px 60px; } .hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(56, 182, 196, 0.1); border: 1px solid rgba(56, 182, 196, 0.2); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 2rem; animation: fadeInUp 0.8s ease-out; } .hero-badge .dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } } .hero-logo { margin: 0 auto 2rem; animation: fadeInUp 0.8s ease-out 0.2s both; } .hero-logo img { width: 380px; max-width: 80vw; height: auto; margin: 0 auto; } .hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; color: var(--navy); animation: fadeInUp 0.8s ease-out 0.4s both; } .hero h1 .gradient-text { background: var(--teal-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray-600); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; animation: fadeInUp 0.8s ease-out 0.6s both; } .hero-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.8s both; } .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.2rem; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none; font-family: inherit; } .btn-primary { background: var(--teal-gradient); color: var(--white); box-shadow: var(--shadow-teal); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(56, 182, 196, 0.45); } .btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--gray-200); } .btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-md); } .btn svg { width: 18px; height: 18px; } .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s ease-in-out infinite; z-index: 1; } .hero-scroll svg { width: 24px; height: 24px; color: var(--teal); opacity: 0.5; } @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } section { padding: 6rem 2rem; } .section-container { max-width: 1200px; margin: 0 auto; } .section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 1rem; } .section-label::before { content: ''; width: 30px; height: 2px; background: var(--teal-gradient); border-radius: 1px; } .section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--navy); } .section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; line-height: 1.7; } .about { background: var(--white); position: relative; } .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; } .about-visual { position: relative; display: flex; align-items: center; justify-content: center; } .about-visual .bird-icon { width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, rgba(56, 182, 196, 0.1), rgba(42, 157, 143, 0.05)); display: flex; align-items: center; justify-content: center; position: relative; } .about-visual .bird-icon svg { width: 160px; height: 160px; color: var(--teal); } .about-visual .orbit { position: absolute; border: 1px dashed rgba(56, 182, 196, 0.2); border-radius: 50%; animation: spin 30s linear infinite; } .about-visual .orbit-1 { width: 350px; height: 350px; } .about-visual .orbit-2 { width: 420px; height: 420px; animation-direction: reverse; animation-duration: 40s; } .about-visual .orbit-dot { position: absolute; width: 10px; height: 10px; background: var(--teal); border-radius: 50%; top: -5px; left: 50%; transform: translateX(-50%); } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .about-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--navy); } .about-text p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; } .about-names { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; } .name-tag { display: flex; align-items: center; gap: 0.75rem; background: var(--gray-100); padding: 0.8rem 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--gray-200); } .name-tag .icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .name-tag .icon.kolibri { background: linear-gradient(135deg, #fbbf24, #f59e0b); } .name-tag .icon.pinguino { background: linear-gradient(135deg, #60a5fa, #3b82f6); } .name-tag .icon svg { width: 22px; height: 22px; } .name-tag .info { display: flex; flex-direction: column; } .name-tag .info .word { font-weight: 700; font-size: 0.95rem; color: var(--navy); } .name-tag .info .meaning { font-size: 0.75rem; color: var(--gray-600); } .services { position: relative; } .services-header { text-align: center; margin-bottom: 4rem; } .services-header .section-subtitle { margin: 0 auto; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .service-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal-gradient); transform: scaleX(0); transition: var(--transition); } .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; } .service-card:hover::before { transform: scaleX(1); } .service-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(56, 182, 196, 0.1), rgba(42, 157, 143, 0.05)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; } .service-icon svg { width: 28px; height: 28px; color: var(--teal); } .service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--navy); } .service-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; } .service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.5rem; font-weight: 600; font-size: 0.85rem; color: var(--teal); transition: var(--transition); } .service-card .learn-more:hover { gap: 0.7rem; } .service-card .learn-more svg { width: 16px; height: 16px; } .service-card--centered { grid-column: 2; } .tech { background: var(--white); } .tech-header { text-align: center; margin-bottom: 3rem; } .tech-header .section-subtitle { margin: 0 auto; } .process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } .process-card { min-height: 190px; padding: 1.75rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: linear-gradient(145deg, var(--white), var(--gray-100)); box-shadow: var(--shadow-sm); color: var(--navy); transition: var(--transition); } .process-card:hover { transform: translateY(-4px); border-color: rgba(56, 182, 196, 0.35); box-shadow: var(--shadow-md); } .process-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.1rem; border-radius: 12px; color: var(--teal-dark); background: rgba(56, 182, 196, 0.12); } .process-icon svg { width: 24px; height: 24px; } .process-card h3 { margin-bottom: 0.55rem; font-size: 1.05rem; line-height: 1.3; } .process-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; } .cta { position: relative; text-align: center; } .cta-container { max-width: 800px; margin: 0 auto; background: var(--navy); border-radius: var(--radius-xl); padding: 4rem 3rem; position: relative; overflow: hidden; } .cta-container::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(56, 182, 196, 0.2), transparent 50%), radial-gradient(circle at 70% 30%, rgba(42, 157, 143, 0.15), transparent 50%); } .cta-content { position: relative; z-index: 1; } .cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; } .cta p { color: rgba(255, 255, 255, 0.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; } .cta .btn-primary { background: var(--white); color: var(--navy); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); } .cta .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); } .footer { background: var(--navy); color: rgba(255, 255, 255, 0.6); padding: 3rem 2rem 2rem; } .footer-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; } .footer-brand { display: flex; align-items: center; } .footer-brand img { height: 32px; width: auto; object-fit: contain; } .footer-links { display: flex; gap: 2rem; list-style: none; } .footer-links a { font-size: 0.85rem; transition: var(--transition); } .footer-links a:hover { color: var(--teal); } .footer-copy { width: 100%; text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; } .reveal { opacity: 1; transform: none; } .reveal.visible { opacity: 1; transform: translateY(0); } @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .service-card--centered { grid-column: 1 / -1; width: calc(50% - 1rem); justify-self: center; } .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .about-grid { gap: 3rem; } } @media (max-width: 768px) { .js .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; } .nav-links.active { display: flex; } .js .nav-toggle { display: flex; z-index: 1001; } .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .nav-toggle.active span:nth-child(2) { opacity: 0; } .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .services-grid { grid-template-columns: 1fr; } .service-card--centered { grid-column: auto; width: 100%; } .process-grid { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; text-align: center; } .about-visual { order: -1; } .about-visual .bird-icon { width: 200px; height: 200px; } .about-visual .bird-icon svg { width: 100px; height: 100px; } .about-visual .orbit-1 { width: 250px; height: 250px; } .about-visual .orbit-2 { width: 300px; height: 300px; } .about-names { justify-content: center; } .hero-logo img { width: 280px; } .cta-container { padding: 3rem 2rem; } .footer-container { flex-direction: column; text-align: center; } .footer-links { flex-wrap: wrap; justify-content: center; } } @media (max-width: 480px) { section { padding: 4rem 1.5rem; } .hero { padding: 5rem 1.5rem 3rem; } .hero-buttons { flex-direction: column; width: 100%; } .hero-buttons .btn { width: 100%; justify-content: center; } } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } :root { --teal-dark: #176b65; --gray-600: #535d6e; } img { height: auto; } section[id], .service-detail-item[id] { scroll-margin-top: 6rem; } :focus-visible { outline: 3px solid #176b65; outline-offset: 5px; } .footer :focus-visible { outline-color: #5ec5d0; } .skip-link { position: fixed; top: -8rem; left: 1rem; z-index: 2000; padding: .75rem 1rem; background: white; color: #0f1b3d; } .skip-link:focus { top: 1rem; } .nav-logo { flex-shrink: 0; } .nav-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; } .nav-links .lang-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; } .nav-links .lang-btn.active { background: #176b65; color: white; } .nav-links .lang-btn::after { display: none; } .footer-brand img { width: 160px; height: auto; max-width: 100%; border-radius: 8px; } .footer-links a { display: inline-block; padding: .6rem 0; } .section-label, .service-card .learn-more, .cta-link, .service-detail-info .tagline { color: #176b65; } .hero h1 .gradient-text { background: none; color: #176b65; -webkit-text-fill-color: currentColor; } .process-grid { list-style: none; padding: 0; } .process-icon { font-weight: 700; } .contact-address { display: block; margin-top: 1rem; color: white; overflow-wrap: anywhere; } @media (max-width: 768px) { .nav { background: #f0f9ff; } html:not(.js) .nav { position: relative; } html:not(.js) .nav-container { flex-wrap: wrap; gap: 1rem; } html:not(.js) .nav-links { display: flex; flex-wrap: wrap; gap: .75rem 1rem; } html:not(.js) .nav-toggle { display: none; } .js .nav-links { overflow-y: auto; padding: 5rem 1.5rem 2rem; } .js .nav-links.active { display: flex; } .process-grid { grid-template-columns: 1fr; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } } .inline-0 { color: var(--teal-light); justify-content: center; } .inline-1 { background: var(--teal-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }