
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f4f4f4;
            color: #333;
            overflow-x: hidden;

        }

        header {
            background-color: #ffc036;
            color: black;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .hero-section {
            width: 100%;
            height: 100vh;
            background-image: url("./assets/logo2.png");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 20px;
            text-align: center;
            margin: 0;
        }

        .hero-section h2 {
            color: #000;
            font-size: 3em;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-weight: bold;
            font-size: 1.5em;
            margin-bottom: 30px;
        }

        .hero-section a {
            background-color: #ffc107;
            color: #333;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2em;
            transition: background-color 0.3s;
        }

        .hero-section a:hover {
            background-color: #e0a800;
        }

        .features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }

        .feature {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 10px;
            flex: 1 1 calc(33% - 40px);
            box-sizing: border-box;
            max-width: calc(33% - 40px);
        }

        .feature h3 {
            margin-top: 0;
            color:#ffc036;
        }
        .image{


            width: 100%; /* Ocupa 100% da largura da viewport */
            height: 100vh; /* Opcional: Ocupa 100% da altura da viewport */
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url("./assets/card.png");
            background-repeat: no-repeat;
            background-size: cover; /* Faz a imagem cobrir toda a área */
            background-position: center; /* Centraliza a imagem */
            margin: 0; /* Remove qualquer margem indesejada */

        }
        .text-image-section {
            display: flex;
            align-items: center; /* Centraliza verticalmente */
            justify-content: space-between; /* Espaço entre o texto e a imagem */

            max-width: 1200px;
            margin: 0 auto;
        }

        .text-content {
            flex: 1;
            padding-right: 20px; /* Espaço entre o texto e a imagem */
        }

        .text-content h2 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #007bff;
        }

        .text-content p {
            font-size: 1.2em;
            color: #333;
        }

        .image-content {
            flex: 1;
            display: flex;
            justify-content: center;


        }

        .image-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px; /* Opcional: adiciona bordas arredondadas à imagem */
        }


        .download-section {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .download-section h2 {
            margin-bottom: 20px;
        }

        .download-section a {
            background-color: #ffc107;
            color: #333;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2em;
            transition: background-color 0.3s;
        }

        .download-section a:hover {
            background-color: #e0a800;
        }

        footer {
            background-color: #007bff;
            color: white;
            padding: 20px;
            text-align: center;
        }

        footer p {
            margin: 0;
        }
