        /* Reset básico */
        body, h1, h2, h3, p, ul, li {
            margin: 0;
            padding: 0;
            
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #121212;
            color: #f5f5f5;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #64b5f6;
            display: block;
        }

        a:hover {
            color: #42a5f5;
        }

        /*Cards*/
        .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }
        .card {
            display: flex;
            flex-direction: row;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            background-color: #262626;
        }
        .card-content {
            flex: 1;
        }
        h3 {
            font-size: 1.2em;
            color: #f5a623;
            animation: fadeIn 2s ease-in-out;
        }
        p {
            font-size: 1em;
            color: #666;
        }
        .cta {
            text-align: center;
            margin-top: 30px;
        }
        button {
            background-color: #9fafc0;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        button a {
            color: white;
            text-decoration: none;
        }
        button:hover {
            background-color: #0056b3;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../photos/test.jpeg'); /* Gradiente + imagem */
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
            position: relative;
            animation: fadeIn 2s ease-in-out;
        }

        .hero-content {
            z-index: 1;
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 10px;
            animation: slideIn 1.5s ease-in-out;
            text-shadow: 5px 5px #000000;
        }

        .hero p {
            font-size: 2em;
            opacity: 0.9;
            animation: slideIn 2s ease-in-out;
            color: #ffffff;
            text-shadow: 3px 3px#000000;
        }

        /* Navegação */
        nav {
            padding: 15px 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #121212; /* Mantém o tema escuro */
            animation: fadeIn 2s ease-in-out;
        }
        
        nav img {
            position: relative;
            max-width: 6em;  /* Define um tamanho fixo para manter a proporção */
            height: auto;
            margin-right: auto;  /* Empurra os links para o centro */
            border-radius: 1000000px;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-grow: 1;
            padding: 0;
        }
        
        nav ul li {
            margin: 0 20px;
        }
        
        nav a {
            color: #f5f5f5;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        nav a:hover {
            color: #64b5f6;
        }
        span {
            text-decoration: underline;
            text-decoration-color: #f5a623;
            text-decoration-thickness: 3px;
            text-transform: capitalize;
        }
        /* Destaque */
        .highlight {
            background-color: #1e1e1e;
            padding: 60px 20px;
            text-align: center;
        }

        h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #64b5f6;
            animation: fadeIn 2s ease-in-out;
            text-align: center;
        }
    

        p {
            font-size: 1.2em;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.9;
            animation: fadeIn 2.5s ease-in-out;
            color: #f5f5f5;
            
        }

        /* Cards de Serviços */
        .services {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 60px 20px;
            background-color: #1a1a1a;
            text-align: center;
        }

        .service-card {
            background-color: #262626;
            border-radius: 10px;
            padding: 30px;
            width: 30%;
            margin: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            background-color: #3d3d3d;
        }

        .service-card i {
            font-size: 2.5em;
            color: #64b5f6;
            margin-bottom: 15px;
        }



        .service-card p {
            font-size: 1em;
            opacity: 0.9;
        }

        /* Galeria */
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 60px 20px;
            background-color: #1e1e1e;
        }

        .gallery img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            margin: 10px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery img:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        /* Formulário de Contato */
        .contact {
            margin-top: 4%;
            background-color: #1a1a1a;
            padding: 60px 20px;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #64b5f6;
            animation: fadeIn 2s ease-in-out;
        }


        .contact form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact input, .contact textarea {
            padding: 10px;
            border: 1px solid #444;
            border-radius: 5px;
            background-color: #262626;
            color: #f5f5f5;
            font-size: 1em;
            transition: border-color 0.3s ease;
        }

        .contact input:focus, .contact textarea:focus {
            border-color: #64b5f6;
            outline: none;
        }

        .contact button {
            padding: 10px 20px;
            background-color: #0d47a1;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact button:hover {
            background-color: #1565c0;
        }

        /* Footer */
        footer {
            background-color: #0d47a1;
            color: #ffffff;
            text-align: center;
            padding: 20px 0;
        }

        footer p {
            font-size: 1em;
            text-align: center;
        }

        #softwares {
            text-align: center;
            padding: 40px 20px;
            background-color: #121212;
            color: #f5f5f5;
        }
        
        .software-card {
            display: flex;
            align-items: center;
            background: #1e1e1e;
            padding: 20px;
            border-radius: 8px;
            margin: 20px auto;
            width: 80%;
            max-width: 800px;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }
        
        .software-card:hover {
            transform: translateY(-5px);
        }
        
        .software-card i {
            font-size: 50px;
            color: #64b5f6;
            margin-right: 20px;
        }
        
        .software-info {
            text-align: left;
        }
        
        .software-info h3 {
            margin-bottom: 5px;
        }
        
        .btn {
            display: inline-block;
            padding: 8px 15px;
            margin-top: 10px;
            background: #64b5f6;
            color: #121212;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .btn:hover {
            background: #42a5f5;
        }

        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.2em;
            }

            .service-card {
                width: 100%;
                margin: 10px 0;
            }

            .gallery img {
                width: 100%;
                height: auto;
            }

            nav li {
                height: 0;
                width: 0;
                font-size: 0;
            }
            

        }