<!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Portal do Passaralho</title> <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> <style> *{ margin:0; padding:0; box-sizing:border-box; } body{ background:#0d0d0d; color:#fff; font-family:'Roboto', sans-serif; } a{ text-decoration:none; color:inherit; } /* TOPO */ .topbar{ background:#000; border-bottom:3px solid #d89b00; padding:15px 30px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; } .logo-area{ display:flex; align-items:center;...