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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* HERO */
.hero {
    min-height: 70vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    overflow: hidden;
}

.overlay {
    display: none;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    color: #d4af37;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-45px);
}

.hero-logo img {
    width: 520px;
    max-width: 100%;
    margin-bottom: -70px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 8px;
    color: #d4af37;
    text-align: center;
}

.hero-content p {
    font-size: 22px;
    color: #d4af37;
    opacity: 0.95;
    text-align: center;
}

.hero-foto img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* TÍTULO DOS PROCEDIMENTOS */
.titulo-procedimentos {
    background: #f9f9f9;
    text-align: center;
    padding: 60px 20px 20px;
}

.titulo-procedimentos h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
}

.titulo-procedimentos p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* PROCEDIMENTOS */
.procedimentos {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background: #f9f9f9;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    font-size: 24px;
    padding: 18px 18px 8px;
}

.card p {
    font-size: 18px;
    padding: 0 18px 18px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.card a {
    display: block;
    margin: 18px;
    margin-top: auto;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    background: #000;
    color: #fff;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
}

.card a:hover {
    background: #d4af37;
    color: #000;
}

/* DETALHES */
.detalhes-procedimento {
    padding: 60px 5%;
    background: #f9f9f9;
}

.detalhes-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.detalhes-card h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.detalhes-card img {
    width: 100%;
    max-width: 360px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 22px;
}

.detalhes-card p {
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 21px;
    color: #444;
    line-height: 1.8;
}

.btn-agendar {
    display: inline-block;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin: 5px;
    font-size: 18px;
    font-weight: bold;
}

.btn-voltar {
    padding: 14px 28px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 6px;
    cursor: pointer;
    margin: 5px;
    font-size: 18px;
    font-weight: bold;
}

/* RODAPÉ */
.rodape {
    background: #ffffff;
    color: #000;
    text-align: center;
    padding: 20px 15px;
    border-top: 1px solid #ddd;
}

.rodape h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.rodape-contatos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 12px;
}

.rodape-contatos a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.rodape-contatos a:hover {
    color: #d4af37;
}

.rodape-contatos img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.rodape p {
    font-size: 12px;
    color: #666;
}

/* MENU LATERAL */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.menu-toggle:hover {
    background: #c49b20;
}

.menu-lateral {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: #000;
    padding: 30px 20px;
    z-index: 1002;
    transition: 0.3s ease;
}

.menu-lateral.ativo {
    left: 0;
}

.menu-lateral h2 {
    color: #d4af37;
    margin-bottom: 35px;
    font-size: 26px;
}

.menu-lateral a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    margin: 12px 0;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-lateral a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
    border-left: 4px solid #d4af37;
    padding-left: 18px;
}

.fechar-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 32px;
    cursor: pointer;
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 1000;
}

.overlay-menu.ativo {
    display: block;
}

/* NOVAS SEÇÕES */
.secao-extra {
    padding: 70px 5%;
    background: #f9f9f9;
}

.secao-extra:nth-child(even) {
    background: #ffffff;
}

.secao-conteudo {
    max-width: 1100px;
    margin: 0 auto;
}

.secao-conteudo h2 {
    text-align: center;
    font-size: 42px;
    color: #000;
    margin-bottom: 25px;
}

.secao-conteudo p {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

/* BLOG */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.blog-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;

    height: 100%;
}


.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card p {
    flex-grow: 1;

    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.btn-ler-mais {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    text-align: center;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-ler-mais:hover {
    background: #d4af37;
    color: #000;
}

/* BOTÃO EXTRA */
.btn-extra {
    display: block;
    width: fit-content;
    margin: 25px auto 0 auto;
    background: #43f104;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-extra:hover {
    transform: translateY(-2px);
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.galeria-item {
    background: #eaeaea;
    border-radius: 10px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

/* MAPA */
.mapa {
    margin-top: 35px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.mapa iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.btn-mapa {
    text-align: center;
    margin-top: 40px;
}

.btn-mapa a {
    display: inline-block;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-mapa a:hover {
    background: #d4af37;
    color: #000;
}

.texto-localizacao {
    text-align: center;
    margin-bottom: 20px;
}

/* MODAL DE IMAGEM */
.modal-imagem {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-imagem img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255,255,255,0.15);
    animation: zoomImagem 0.25s ease;
}

.fechar-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.fechar-modal:hover {
    color: #d4af37;
}

/* MODAL DO BLOG */
.modal-blog {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-blog-conteudo {
    background: #fff;
    max-width: 850px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 35px;
    border-radius: 12px;
    position: relative;
}

.modal-blog-conteudo h2 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-right: 35px;
}

.modal-blog-conteudo p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    white-space: pre-line;
}

.fechar-blog {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
}

.fechar-blog:hover {
    color: #d4af37;
}

@keyframes zoomImagem {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* TABLET */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 40px 30px;
    }

    .hero-content {
        gap: 45px;
    }

    .hero-logo {
        transform: translateY(-30px);
    }

    .hero-logo img {
        width: 420px;
        margin-bottom: -55px;
    }

    .hero-foto img {
        width: 270px;
        height: 360px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 20px;
    }
}

/* CELULAR */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 30px 18px;
    }

    .hero-content {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .hero-logo {
        order: 1;
        transform: none;
    }

    .hero-foto {
        order: 2;
    }

    .hero-logo img {
        width: 280px;
        margin-bottom: -35px;
    }

    .hero-foto img {
        width: 230px;
        height: 300px;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-top: -5px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .titulo-procedimentos h2,
    .secao-conteudo h2 {
        font-size: 32px;
    }

    .titulo-procedimentos p,
    .secao-conteudo p {
        font-size: 18px;
    }

    .procedimentos {
        padding: 35px 18px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card h3 {
        font-size: 24px;
    }

    .card p {
        font-size: 18px;
    }

    .detalhes-procedimento {
        padding: 35px 18px;
    }

    .detalhes-card {
        padding: 24px 18px;
    }

    .detalhes-card h2 {
        font-size: 30px;
    }

    .detalhes-card img {
        max-width: 100%;
        height: 210px;
    }

    .detalhes-card p {
        font-size: 19px;
        line-height: 1.8;
    }

    .btn-agendar,
    .btn-voltar {
        width: 100%;
        display: block;
        font-size: 18px;
    }

    .rodape {
        padding: 15px 10px;
    }

    .rodape h3 {
        font-size: 18px;
    }

    .rodape-contatos {
        flex-direction: column;
        gap: 12px;
    }

    .rodape-contatos a {
        font-size: 15px;
    }

    .rodape-contatos img {
        width: 22px;
        height: 22px;
    }

    .rodape p {
        font-size: 11px;
    }

    .menu-toggle {
        top: 15px;
        left: 15px;
        font-size: 24px;
    }

    .menu-lateral {
        width: 240px;
        left: -250px;
    }

    .modal-blog-conteudo {
        padding: 28px 22px;
    }

    .modal-blog-conteudo h2 {
        font-size: 24px;
    }

    .modal-blog-conteudo p {
        font-size: 17px;
    }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {
    .hero-logo img {
        width: 240px;
        margin-bottom: -28px;
    }

    .hero-foto img {
        width: 210px;
        height: 270px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .card h3 {
        font-size: 22px;
    }

    .card p {
        font-size: 17px;
    }

    .detalhes-card h2 {
        font-size: 26px;
    }

    .detalhes-card p {
        font-size: 18px;
    }

    .mapa iframe {
        height: 350px;
    }
}