:root {
    --primary-color: #9ee9a7;
    --secondary-color: #021f2f;
    --text-color: #333;
    --background-color: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--secondary-color);
}

header img {
    height: 50px; 
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav a:hover {
    color: #ddd; 
}

.hero a {
    margin-top: 2rem;
    width: 36rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; 
    font-size: 1rem; 
    border: 1.5px solid #fff; 
    cursor: pointer; 
    text-decoration: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: var(--secondary-color);
    color: white;
}

.hero-text > p {
    padding: 0.4rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.hero-content img {
    max-width: 500px;
    width: 100%;
}

.hero-content p {
    max-width: 500px;
    margin: 0;
}

.hero-button {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.hero-content button {
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: #2596be;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero-content button:hover {
    background-color: #ddd;
    color: #2596be;
}
.cell{
    display: flex;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    max-width: 50rem;
}

.card {
    width: 15rem;
    height: 17rem;
    margin: 3px;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 24px;
    margin-bottom: 10px;
    color:  var(--primary-color);
}

.card h5 {
    font-size: 16px;
    margin: 0;
}

.card h6 {
    font-size: 0.7rem;
    margin: 0.1rem;
}

img {
    width: 45rem;
    margin-top: 0.4rem;
    max-height:  35rem;
}

.contact {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: auto;
}

.contact label, .contact input, .contact textarea, .contact button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

.contact input, .contact textarea {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.contact button {
    background-color: white;
    color: var(--primary-color);
    padding: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.contact button:hover {
    background-color: var(--secondary-color);
    color: white;
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    align-items: center;
    justify-content:space-between;
    padding-right: 8rem;
    display: flex;
    height: 7rem;
}

footer div {
    text-align: center;
    margin-top: 1rem; 
    margin-bottom: 1rem;
}

footer > img {
    width: 14rem;
    height: 6rem;
    padding: 1rem;
}

.politic {
    display: flex;
    padding-left: 2rem;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
}

.politic a {
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 0.8rem;
    border: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background-color: var(--secondary-color);
}

.social-icons a {
    display: inline-block;
    color: #fff;
    background-color: var(--secondary-color);
    font-size: 24px;
    width: 2rem;
    border: none;
}

#btnTopo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s, visibility 0.3s;
}

#btnTopo:hover {
    background-color: var(--secondary-color);
}


