        @font-face {
            font-family: 'Nunito';
            src: url('./css/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
            }

        @font-face {
            font-family: 'Delius';
            src: url('./css/Delius-Regular.ttf') format('truetype');
            }

        h1 {
            font-family: 'Nunito';
            font-style: italic;
        }

        h2, h3 {
        color: #e6ccff;
        font-family: 'Nunito';
        }
        /* Fundo geral da página */
        body {
            margin: 0;
            color: white;
            background: linear-gradient(to bottom, #1a0033, #000011);
            font-family: 'Delius';
        }

        /* Navbar flutuante */
        .navbar {
            position: fixed; 
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.4); 
            z-index: 10;
        }

        .navbar .nav-link {
            color: white !important;
            /*font-weight: bold;*/
        }
        .navbar .nav-link:hover {
            color: #e6ccff !important;
        }

        /* Fundo do Hero */
.hero {
  background: linear-gradient(135deg, rgba(80,20,150,0.6), rgba(0,60,120,0.6));
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

        @keyframes zoomBG {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Estrelas piscando */
        .stars {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            box-shadow: 100px 200px white, 500px 100px white,
                        800px 300px white, 1200px 500px white, 1500px 200px white;
            animation: twinkle 2s infinite alternate;
            z-index: 1;
        }

        @keyframes twinkle {
            from { opacity: 0.2; }
            to { opacity: 1; }
        }


        /* Brilho suave no texto */
        .glow {
            text-shadow: 0 0 10px #fff, 0 0 20px #a67efb, 0 0 30px #a67efb;
            animation: glowAnim 2s ease-in-out infinite alternate;
        }

        @keyframes glowAnim {
            from { text-shadow: 0 0 10px #fff, 0 0 20px #a67efb, 0 0 30px #a67efb; }
            to { text-shadow: 0 0 20px #fff, 0 0 30px #a67efb, 0 0 40px #a67efb; }
        }


        /* Seção de serviços */
        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .service-card:hover { transform: translateY(-5px); }

        /* Rodapé */
        footer {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px 0;
            text-align: center;
        }
/*
        .footer {
            background: #0d001f; /* pouco mais claro que o fundo (#1a0033 → #000011) * /
            color: #cfcfd1; /* texto off-white, suave * /
            padding: 40px 20px;
            text-align: center;
        }

        .footer a {
            color: #9a8fff; /* links discretos, ainda visíveis * /
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
*/
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 10px; /* espaçamento entre os ícones */
            flex-wrap: wrap; /* deixa quebrar para outra linha se a tela for muito estreita */
            margin-top: 15px;
            }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            text-decoration: none;
            }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px; /* espaço entre texto e ícone */
            }