:root {
    --primary-color: #ff7eb3;
    --secondary-color: #65d6ce;
    --accent-color: #ffd166;
    --dark-color: #263238;
    --light-color: #ffffff;
    --soft-bg: #fff6fb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #ffecd2, #fcb69f, #a1c4fd, #c2ffd8);
    color: var(--dark-color);
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.logo p {
    font-size: 15px;
}

nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

nav a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 8%;
}

.hero-text {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.82);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.hero-text h2 {
    font-size: 42px;
    color: #d63384;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background-color: #e85c9e;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
}

section {
    padding: 70px 8%;
}

.about,
.structure,
.contact {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 40px 8%;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about h2,
.services h2,
.structure h2,
.contact h2 {
    text-align: center;
    font-size: 34px;
    color: #d63384;
    margin-bottom: 25px;
}

.about p,
.structure p,
.contact p {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}

.services {
    background-color: rgba(255, 255, 255, 0.45);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background-color: var(--light-color);
    padding: 28px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    border-top: 8px solid var(--accent-color);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    color: #0d9488;
    margin-bottom: 15px;
    font-size: 22px;
}

.structure-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.structure-boxes div {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 22px;
    text-align: center;
    color: var(--dark-color);
    font-weight: bold;
    border-radius: 18px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

form {
    max-width: 650px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: var(--dark-color);
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #f3a6c8;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(101, 214, 206, 0.6);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border: none;
    padding: 15px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 45px 8%;
}

.footer-content h3 {
    color: var(--accent-color);
    margin-bottom: 12px;
}

.footer-content p {
    margin-bottom: 8px;
}

.footer-bottom {
    background-color: #11191c;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}

/* Responsivo para celular/tablet */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .cards,
    .structure-boxes,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about,
    .structure,
    .contact {
        margin: 30px 5%;
    }
}

.voltar {
margin: center;
}

.location {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 40px 8%;
    padding: 60px 8%;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.location h2 {
    font-size: 34px;
    color: #d63384;
    margin-bottom: 15px;
}

.location p {
    font-size: 18px;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.contact-preference {
    margin: 10px 0;
}

.contact-preference p {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.contact-preference label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    font-weight: normal;
}

.contact-preference input {
    width: auto;
}

#status-message {
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
}