* { margin: 0; padding: 0; box-sizing: border-box; } :root { --roxo: #6B21A8; --roxo-claro: #8B5CF6; --roxo-escuro: #5B1894; --fundo: #FAF7FC; --texto: #1F2937; --texto-claro: #6B7280; --branco: #FFFFFF; --sombra: 0 4px 20px rgba(107, 33, 168, 0.08); --borda: #EDE9F4; } html { scroll-behavior: smooth; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--fundo); color: var(--texto); line-height: 1.6; } .container { width: 90%; max-width: 1100px; margin: 0 auto; } .header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); box-shadow: 0 2px 10px rgba(107, 33, 168, 0.06); z-index: 1000; padding: 0.8rem 0; } .header .container { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.6rem; font-weight: 800; color: var(--roxo); text-decoration: none; letter-spacing: -0.5px; } .plus { color: var(--roxo-claro); font-size: 1.9rem; font-weight: 900; } .nav { display: flex; align-items: center; } .nav-list { display: flex; list-style: none; gap: 2rem; } .nav-list a { text-decoration: none; color: var(--texto); font-weight: 500; font-size: 0.98rem; transition: color 0.25s ease; } .nav-list a:hover { color: var(--roxo); } .menu-toggle { display: none; font-size: 1.8rem; background: transparent; border: none; color: var(--roxo); cursor: pointer; } main { padding-top: 80px; } .section { padding: 4rem 0; } h2 { font-size: 1.9rem; color: var(--roxo); margin-bottom: 1.4rem; line-height: 1.2; } .section p { font-size: 1.05rem; color: var(--texto); margin-bottom: 1rem; max-width: 800px; } .hero { text-align: center; padding: 4.5rem 0 5.5rem; } .hero h1 { font-size: 3.4rem; color: var(--roxo); margin-bottom: 0.5rem; letter-spacing: -1px; } .hero .plus { font-size: 4rem; } .slogan { font-size: 1.4rem; color: var(--roxo-claro); font-weight: 600; margin-bottom: 1.4rem; } .hero-text { font-size: 1.1rem; color: var(--texto-claro); max-width: 650px; margin: 0 auto 2.2rem; } .btn { display: inline-block; background: linear-gradient(135deg, var(--roxo), var(--roxo-claro)); color: var(--branco); padding: 0.95rem 2.2rem; border-radius: 12px; font-size: 1rem; font-weight: 600; text-decoration: none; box-shadow: 0 6px 18px rgba(107, 33, 168, 0.22); transition: transform 0.2s ease, box-shadow 0.25s ease; } .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107, 33, 168, 0.28); } .feature { background: var(--branco); border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); text-align: center; } .steps { background: var(--branco); } .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2rem; } .card { background: var(--fundo); border: 1px solid var(--borda); border-radius: 16px; padding: 2rem; transition: transform 0.25s ease, box-shadow 0.25s ease; } .card:hover { transform: translateY(-4px); box-shadow: var(--sombra); } .card-number { font-size: 2.2rem; font-weight: 800; color: var(--roxo-claro); opacity: 0.7; display: block; margin-bottom: 0.6rem; } .card h3 { font-size: 1.25rem; color: var(--roxo); margin-bottom: 0.8rem; } .card p { margin: 0; color: var(--texto-claro); font-size: 0.98rem; } .commitment { background: linear-gradient(180deg, #F6F0FC, var(--fundo)); border-radius: 20px; margin: 0 1rem; } .contact-links { margin-top: 1.5rem; } .contact-item { font-size: 1.05rem; margin-bottom: 0.6rem; } .contact-item a { color: var(--roxo); font-weight: 500; text-decoration: none; border-bottom: 1px solid transparent; transition: border 0.2s ease; } .contact-item a:hover { border-bottom-color: var(--roxo-claro); } .footer { background: var(--branco); border-top: 1px solid var(--borda); padding: 2.8rem 0 2rem; margin-top: 2rem; text-align: center; } .footer-logo { font-size: 1.5rem; font-weight: 800; color: var(--roxo); margin-bottom: 0.3rem; } .footer-slogan { color: var(--roxo-claro); font-weight: 500; margin-bottom: 1.2rem; } .footer-nav { margin-bottom: 1.2rem; } .footer-nav a { color: var(--texto-claro); margin: 0 0.9rem; text-decoration: none; font-size: 0.95rem; transition: color 0.2s ease; } .footer-nav a:hover { color: var(--roxo); } .copyright { font-size: 0.9rem; color: var(--texto-claro); } .page-content { max-width: 800px; margin: 0 auto; padding: 2rem 0 4rem; } .page-content h1 { font-size: 2rem; color: var(--roxo); margin-bottom: 0.5rem; } .atualizacao { color: var(--texto-claro); font-size: 0.95rem; margin-bottom: 2rem; display: block; } .page-content h2 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; } .page-content p { margin-bottom: 0.8rem; } .voltar { display: inline-block; margin-top: 2rem; color: var(--roxo); text-decoration: none; font-weight: 500; } .voltar:hover { text-decoration: underline; } @media (max-width: 768px) { .menu-toggle { display: block; } .nav-list { position: absolute; top: 60px; left: 0; right: 0; background: var(--branco); flex-direction: column; padding: 1.2rem 2rem; gap: 1rem; box-shadow: 0 10px 15px rgba(107, 33, 168, 0.08); display: none; } .nav-list.active { display: flex; } .hero h1 { font-size: 2.4rem; } .hero .plus { font-size: 2.8rem; } .slogan { font-size: 1.1rem; } h2 { font-size: 1.5rem; } .cards-grid { grid-template-columns: 1fr; } .section { padding: 2.5rem 0; } .commitment { margin: 0; } } @media (max-width: 480px) { .logo { font-size: 1.3rem; } .plus { font-size: 1.6rem; } .btn { padding: 0.85rem 1.6rem; font-size: 0.95rem; } }