		body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #343a40;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 2.5rem 1rem;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
		
		/* Estilos para o header container */
		.header-container {
			background-color: #ffffff; 
			color: #343a40; 
			padding: 1.5rem 2rem;
			display: flex;
			align-items: center;
			justify-content: space-between;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		}
		
		/* Estilos para a logo dentro do header */
		.header-container .header-logo {
			max-width: 100px; 
			height: auto;
			margin: 0; 
		}

		/* Estilos para a frase (tagline) do header */
		.header-container .header-tagline {
			font-size: 1.7rem;
			margin: 0; 
			opacity: 0.9;
		}

        header h1 {
            margin: 0 0 0.5rem;
            font-size: 2.8rem;
            font-weight: 600;
        }

        header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
		
		.hero-banner {
			background: url('imagens/banner_img_f.jpg') no-repeat center center/cover;
			color: #ffffff;
			text-align: center;
			padding: 6rem 1rem; 
			position: relative;
			overflow: hidden; 
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 400px; 
		}

		/* Overlay para escurecer a imagem de fundo e melhorar a legibilidade do texto */
		.hero-banner::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5); /
			z-index: 1;
		}

		.banner-content {
			position: relative;
			z-index: 2; 
			max-width: 800px;
			margin: 0 auto;
			padding: 1rem;
		}

		.banner-content h2 {
			font-size: 3.2rem; 
			margin-bottom: 1.5rem;
			font-weight: 600;
			line-height: 1.2;
			text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
		}

		.banner-content p {
			font-size: 1.4rem; 
			margin-bottom: 2.5rem;
			opacity: 0.9;
			text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
		}

		.btn-primary {
			display: inline-block;
			background-color: #3498db; 
			color: #ffffff;
			padding: 1rem 2.5rem;
			border-radius: 50px; 
			text-decoration: none;
			font-size: 1.2rem;
			font-weight: 600;
			transition: background-color 0.3s ease, transform 0.2s ease;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
		}

		.btn-primary:hover {
			background-color: #2980b9; 
			transform: translateY(-3px);
		}


        .app-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-grow: 1;
            align-items: start; 
        }

        .app-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            text-align: center;
            text-decoration: none;
            color: #343a40;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between; 
            align-items: center;
        }

        .app-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .app-card .icon {
            font-size: 4.5rem;
            color: #3498db; 
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
        }

        .app-card:hover .icon {
            color: #2980b9; 
        }

        .app-card h2 {
            font-size: 1.8rem;
            margin: 0 0 1rem;
            color: #2c3e50;
            font-weight: 600;
        }

        .app-card p {
            font-size: 1rem;
            color: #6c757d;
            flex-grow: 1; 
        }

        footer {
            background-color: #343a40;
            color: #ffffff;
            text-align: center;
            padding: 1.5rem 1rem;
            font-size: 0.9rem;
            margin-top: auto; 
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .header-logo {
				max-width: 180px; 
			}
			
			header h1 {
                font-size: 2rem;
            }

            header p {
                font-size: 1rem;
            }
			
			.header-container {
				flex-direction: column; 
				align-items: center;   
				padding: 1.5rem 1rem;  
			}

			/* Estilos para a logo em telas menores */
			.header-container .header-logo {
				max-width: 120px; 
				margin-bottom: 0.8rem; /
			}

			
			.header-container .header-tagline {
				font-size: 1.5rem; 
				text-align: center; 
			}

			.hero-banner {
				padding: 4rem 1rem;
				min-height: 300px;
			}
			.banner-content h2 {
				font-size: 2.2rem;
			}
			.banner-content p {
				font-size: 1.1rem;
			}
			.btn-primary {
				padding: 0.8rem 2rem;
				font-size: 1rem;
			}

            .app-container {
                grid-template-columns: 1fr; 
                padding: 2rem 1rem;
            }

            .app-card {
                padding: 2rem;
            }

            .app-card .icon {
                font-size: 3.5rem;
            }

            .app-card h2 {
                font-size: 1.5rem;
            }
        }
		
		@media (max-width: 480px) {
			.hero-banner {
				padding: 3rem 1rem;
			}
			.banner-content h2 {
				font-size: 1.8rem;
			}
			.banner-content p {
				font-size: 0.9rem;
			}
			.header-container .header-logo {
				max-width: 100px; 
			}
			.header-container .header-tagline {
				font-size: 0.9rem;
			}
		}