 body {
            margin: 0;
            padding: 0;
            font-family: "Public Sans", sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            background-color: #f9f9f9;
        }
        header, main, footer {
            width: 100%;
            max-width: 1200px;
            padding: 20px;
            box-sizing: border-box;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #4480ff;
            color: white;
        }
        header img {
            width: 50px;
            height: 50px;
        }
        header nav a {
            margin: 0 15px;
            text-decoration: none;
            color: white;
            font-weight: bold;
        }
		
			header, footer {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

header {
    background-color: #4480ff;
    color: white;
}

        h1 {
            font-size: 48px;
            color: #333;
            text-align: center;
            margin: 20px 0;
        }
        h1 span.text {
            border-right: 2px solid #333;
            animation: blink 0.75s infinite;
        }
        section {
            margin: 20px 0;
            text-align: center;
        }
        .services, .products, .team, .contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin: 10px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            width: calc(33.333% - 40px);
            box-sizing: border-box;
        }
        .card img {
            width: 100%;
            height: auto;
            border-bottom: 1px solid #ddd;
            margin-bottom: 15px;
        }
		
		
	
       footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
        }
        @keyframes blink {
            0%, 50% {
                border-color: transparent;
            }
            100% {
                border-color: #333;
            }
        }
        @media screen and (max-width: 768px) {
            .card {
                width: calc(50% - 40px);
            }
        }
        @media screen and (max-width: 480px) {
            .card {
                width: calc(100% - 40px);
            }
            h1 {
                font-size: 32px;
            }
        }
		
		
		#contact {
    background-color: #f9f9f9;
    padding: 20px;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

#contact textarea {
    height: 150px; /* Altura ajustável */
}

#contact button[type="submit"] {
    background-color: #4480ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#contact button[type="submit"]:hover {
    background-color: #3366cc;
}
#contact button[type="reset"] {
    background-color: #4480ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#contact button[type="reset"]:hover {
    background-color: #3366cc;
}