* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo img { width: 120px; }
.logo2 img { width: 250px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #3f8680;
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #3f8680;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    min-height: 380px;
    background: url('/assets/banner.png') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 6%;
    position: relative;
}

/* Overlay suave */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.75) 35%,
        rgba(255,255,255,0.40) 60%,
        rgba(255,255,255,0.10) 78%,
        rgba(255,255,255,0.00) 88%
    );

    z-index: 1;
}

/* Conteúdo do hero */
.hero-content {
    max-width: 520px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 0;
    color: #1f3f3f;
}

.hero h2 {
    font-size: 0;
    color: #3f8680;
}

.hero-content p {
    font-size: 1.15rem;
    color: #244b4b;
}

/* BOTÃO */

.btn-primary {
    background: #ffffff;
    color: #3f8680;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all .35s ease;

    position: relative;
    overflow: hidden;
    z-index: 3;
}

/* brilho animado */
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transition: .6s;
}

.btn-primary:hover {
    background: #3f8680;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.btn-primary:hover::before {
    left: 120%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* SEÇÕES */

section {
    padding: 70px 6%;
}

section h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #3f8680;
}

/* SOBRE */

.sobre {
    background: #f7fbfb;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.sobre .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sobre img {
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.sobre .text {
    flex: 1;
    text-align: justify;
}

/* TABELA */

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

th, td {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

th {
    background: #3f8680;
    color: white;
}

/* MAPA */

.mapa {
    padding: 80px 20px;
    background-color: #f7f9f8;
    text-align: center;
}

.mapa h2 {
    font-size: 32px;
    color: #2f4f4f;
    margin-bottom: 10px;
}

.mapa-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mapa-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* FOOTER */

footer {
    background: #3f8680;
    color: white;
    text-align: center;
    padding: 25px;
}

/* RESPONSIVO */

@media(max-width:768px){

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        min-height: 420px;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

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

/* BOTÃO CENTRALIZADO NA SEÇÃO HORÁRIOS */

.btn-central {
    display: block;          /* permite centralizar */
    width: fit-content;      /* botão fica do tamanho do conteúdo */
    margin: 35px auto 20px;  /* centraliza + cria espaço em cima e embaixo */
    text-align: center;
}

.aviso {
    text-align: center;
    margin-top: 0;
    color: #5f6f73;
    font-size: 0.95rem;
}

/* ÍCONES DO CONTATO (Whats / Endereço) */

.contato .info-item img {
    width: 28px;
    height: 28px;
    min-width: 28px;   /* impede esticar */
    object-fit: contain;
    display: block;
}

.contato .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left; /* evita centralizar o texto dentro */
}

/* CONTAINER DOS CONTATOS */
.contato .info {
    display: flex;
    justify-content: center;   /* centraliza no meio */
    align-items: center;
    gap: 50px;                 /* espaço entre Whats e Endereço */
    flex-wrap: wrap;           /* quebra no celular */
    text-align: center;
}

.seo-hidden {
    position: absolute;
    left: -9999px;
}
