/* Definições globais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #000;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

header {
    background: linear-gradient(to right, #8e44ad, #3498db);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    background: #2c3e50;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #ecf0f1;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
h2.explore-services {
    color: rgb(0, 0, 0);
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap between cards as needed */
}

.service-card {
    flex: 1 1 30%; /* Adjust the width of the cards as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    background-color: #fff;
}
nav a:hover {
    color: #3498db;
}

.container {
    padding: 4rem;
    text-align: center;
    background: white;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.container h2 {
    color: #6a11cb;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.links a {
    text-decoration: none;
    color: #6a11cb;
    font-size: 1.5rem;
    background: #f1f1f1;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.links a:hover {
    background: #6a11cb;
    color: white;
    transform: scale(1.05);
}

.links a i {
    margin-right: 0.5rem;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}