/* Estilos gerais */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #17a99f;
}

/* Cabeçalho */
header {
    background-color: #17a99f;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    color: white; /* Torna o texto visível sobre o fundo verde */
    text-align: center; /* Centraliza o título, opcional */
}

/* Navegação */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    background-color: #fff;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul li a {
    text-decoration: none;
    color: #17a99f;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #333;
}

/* Seções */
.div-bar {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    border-radius: 8px;
}

.div-bar h2 {
    font-size: 2rem;
}

.div-bar p {
    font-size: 1rem;
    color: #666;
}

.div-bar ul {
    text-align: left;
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

/* Galeria de imagens */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Botões */
.btn {
    display: inline-block;
    background-color: #17a99f;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #139f8b;
}

.btn-contact {
    background-color: #333;
}

.btn-contact:hover {
    background-color: #555;
}

/* Contato */
.contact-section {
    background-color: #17a99f;
    padding: 40px;
    text-align: center;
    color: white;
    width: 100%;
    box-sizing: border-box;
    border-top: 5px solid #88c057;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.contact-info h3 {
    font-size: 24px;
}

.contact-info a {
    color: #17a99f;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Rodapé */
footer {
    background-color: #17a99f;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .div-bar {
        padding: 30px;
    }

    .content img {
        width: 90%;
    }

    .benefits li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .div-bar h2 {
        font-size: 20px;
    }

    .div-bar p {
        font-size: 16px;
    }
}
