/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #0a2e2e;
}


/* ================= VARIÁVEIS ================= */

:root {
    --verde-principal: #0f4c4c;
    --verde-secundario: #0a2e2e;
    --dourado: #d4af37;
    --dourado-escuro: #c29b2f;
    --branco: #ffffff;
    --cinza: #f5f5f5;
    --texto: #333333;
    --sombra: 0 8px 24px rgba(0, 0, 0, 0.18);
}


/* ================= BASE ================= */

html {
    scroll-behavior: smooth;
    background: linear-gradient(180deg, #0f4c4c, #0a2e2e);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--branco);
    color: var(--texto);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}


/*barra de rolagem*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a2e2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #0f4c4c);
    border-radius: 999px;
}


/* ================= CONTAINER ================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ================= HEADER ================= */

.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    z-index: 999;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.topo.scrolled {
    background: rgba(15, 76, 76, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--sombra);
}

.topo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* ================= LOGO ================= */

.logo-link {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    flex-shrink: 0;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    object-fit: cover;
     user-select: none;
    -webkit-user-drag: none;
}

img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}
.logo-link::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: conic-gradient( #d4af37, #ffffff, #d4af37, #c29b2f, #d4af37);
    animation: girar 4s linear infinite;
    filter: blur(1px);
    z-index: 1;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ================= MENU DESKTOP ================= */

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.menu li {
    list-style: none;
}

.menu a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.menu a:hover {
    color: var(--dourado);
}


/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    position: fixed;
    /* 👈 fixa na tela */
    top: 15px;
    /* distância do topo */
    right: 15px;
    /* distância da esquerda */
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1003;
    /* acima de tudo */
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    /* 👈 só vertical */
    border-radius: 999px;
    background: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}

.topo .container {
    padding-left: 60px;
    /* espaço pro hamburger */
}


/* ================= BANNER ================= */

.banner {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 40px;
}


/* vídeo preenchendo a tela */

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* overlay premium */

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58));
    z-index: 1;
}


/* conteúdo */

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    text-align: center;
    color: var(--branco);
    padding: 20px;
}

.banner-destaque {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--dourado);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.banner h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.banner p {
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
}


/* ================= BOTÕES ================= */

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-principal {
    background: var(--dourado);
    color: var(--verde-secundario);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.22);
}

.btn-principal:hover {
    background: var(--dourado-escuro);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28);
}

.btn-secundario {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
}

.btn-secundario:hover {
    background: #fff;
    color: var(--verde-principal);
}


/* ================= REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .menu {
        gap: 18px;
    }
    .menu a {
        font-size: 0.94rem;
    }
    .banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 72px;
        height: 72px;
    }
    .logo-link::before {
        width: 80px;
        height: 80px;
        top: -4px;
        left: -4px;
    }
    .hamburger {
        display: block;
    }
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--verde-principal);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.35s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }
    .menu.active {
        right: 0;
    }
    .menu a {
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .banner {
        min-height: 100vh;
        padding: 110px 18px 40px;
    }
    .banner h1 {
        font-size: 2rem;
    }
    .banner p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
    .banner-content {
        padding: 10px;
    }
    .banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .topo {
        padding: 10px 0;
    }
    .container {
        padding: 0 16px;
    }
    .banner-destaque {
        font-size: 0.78rem;
        padding: 7px 12px;
    }
    .banner h1 {
        font-size: 1.7rem;
    }
    .banner p {
        font-size: 0.94rem;
    }
}


/* ================= SERVIÇOS ================= */

.servicos {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
}

.servicos::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -70px;
    left: -70px;
    background: radial-gradient(circle, rgba(15, 76, 76, 0.08) 0%, rgba(15, 76, 76, 0) 70%);
    pointer-events: none;
}

.secao-topo {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.secao-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(15, 76, 76, 0.08);
    color: var(--verde-principal);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.secao-topo h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--verde-secundario);
    margin-bottom: 16px;
}

.secao-topo p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5c5c5c;
}


/* GRID */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}


/* CARD */

.servico-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 76, 76, 0.08);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servico-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(15, 76, 76, 0.02));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 175, 55, 0.28);
}

.servico-card:hover::before {
    opacity: 1;
}


/* ÍCONE */

.servico-icone {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--dourado);
    font-size: 1.7rem;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.10);
    transition: transform 0.3s ease, background 0.3s ease;
}

.servico-icone svg {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.servico-card:hover .servico-icone {
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.18);
}

.servico-card:hover .servico-icone svg {
    transform: scale(1.12);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}


/* TÍTULO E TEXTO */

.servico-card h3 {
    font-size: 1.28rem;
    line-height: 1.3;
    color: var(--verde-secundario);
    margin-bottom: 12px;
}

.servico-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #5d5d5d;
    margin-bottom: 22px;
    flex-grow: 1;
}


/* LINK */

.servico-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--verde-principal);
    transition: color 0.3s ease, transform 0.3s ease;
}

.servico-card a:hover {
    color: var(--dourado);
    transform: translateX(4px);
}

.servico-card a svg {
    flex-shrink: 0;
}

.bto-agr {
    border: 2px solid var(--dourado);
    color: var(--dourado);
    padding: 10px 16px;
    border-radius: 144px;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    font-weight: 600;
    transition: 0.3s;
}

.bto-agr a {
    text-align: center;
}

.servicos-grid {
    align-items: stretch;
}


/* CARD DE DESTAQUE */

.destaque-servico {
    background: linear-gradient(135deg, rgba(15, 76, 76, 0.98), rgba(10, 46, 46, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 16px 36px rgba(15, 76, 76, 0.22);
}

.destaque-servico::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.03));
    opacity: 1;
}

.destaque-servico h3,
.destaque-servico p,
.destaque-servico a {
    color: #fff;
}

.destaque-servico .servico-icone {
    background: rgba(212, 175, 55, 0.16);
}

.destaque-servico a:hover {
    color: var(--dourado);
}


/* RESPONSIVO */

@media (max-width: 1100px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .servicos {
        padding: 80px 0;
    }
    .secao-topo {
        margin-bottom: 38px;
    }
    .secao-topo h2 {
        font-size: 1.9rem;
    }
    .secao-topo p {
        font-size: 0.96rem;
    }
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .servico-card {
        padding: 24px 20px;
        border-radius: 20px;
    }
    .servico-icone {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }
    .servico-card h3 {
        font-size: 1.18rem;
    }
    .servico-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .secao-tag {
        font-size: 0.78rem;
        padding: 7px 14px;
    }
    .secao-topo h2 {
        font-size: 1.65rem;
    }
    .servico-card a {
        font-size: 0.95rem;
    }
}


/*produtos*/

.produtos {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a2e2e, #0f4c4c);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.produtos-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.produtos-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 4px;
}

.produtos-carousel::-webkit-scrollbar {
    display: none;
}

.produto-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 76, 76, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    flex-shrink: 0;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 175, 55, 0.28);
}

.produto-imagem {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f3f3f3;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-info {
    padding: 22px;
}

.secao-topo p h2 {
    color: #fff;
}

.produto-categoria {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--verde-principal);
    background: rgba(15, 76, 76, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
}

.produto-info h3 {
    font-size: 1.3rem;
    color: var(--verde-secundario);
    margin-bottom: 10px;
}

.produto-info p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #5d5d5d;
    margin-bottom: 20px;
    min-height: 82px;
}

.produto-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.produto-rodape strong {
    font-size: 1.1rem;
    color: var(--verde-secundario);
}

.produto-rodape a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid var(--dourado);
    color: var(--dourado);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s ease;
}

.produto-rodape a:hover {
    background: var(--dourado);
    color: var(--verde-secundario);
    transform: translateY(-2px);
}


/* BOTÕES DO CARROSSEL */

.carousel-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 76, 76, 0.92);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.carousel-btn:hover {
    background: var(--dourado);
    color: var(--verde-secundario);
    transform: scale(1.05);
}


/* RESPONSIVO */

@media (max-width: 768px) {
    .produtos {
        padding: 80px 0;
    }
    .produto-card {
        min-width: 280px;
        max-width: 280px;
    }
    .produto-imagem {
        height: 220px;
    }
    .produto-info {
        padding: 18px;
    }
    .produto-info h3 {
        font-size: 1.18rem;
    }
    .produto-info p {
        min-height: auto;
        font-size: 0.94rem;
    }
    .carousel-btn {
        display: none;
    }
}


/*agenda*/


/* ================= AGENDAMENTO ================= */

.agendamento {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff, #eef3f3);
    color: var(--texto);
    position: relative;
    overflow: hidden;
}

.agendamento::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -70px;
    right: -70px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
}

.agendamento::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(15, 76, 76, 0.08) 0%, rgba(15, 76, 76, 0) 70%);
    pointer-events: none;
}

.agendamento .container {
    position: relative;
    z-index: 2;
}


/* topo da seção */

.agendamento .secao-topo {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.agendamento .secao-topo h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--verde-secundario);
    margin-bottom: 16px;
}

.agendamento .secao-topo p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5c5c5c;
}


/* caixa da agenda */

.agenda-embed-box {
    width: 100%;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 76, 76, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    position: relative;
}


/* leve brilho premium */

.agenda-embed-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(15, 76, 76, 0.02));
    pointer-events: none;
    z-index: 1;
}


/* iframe da agenda */

.agenda-embed-box iframe {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 900px;
    border: none;
    display: block;
    background: #fff;
}


/* faixa opcional acima da agenda */

.agenda-aviso {
    text-align: center;
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--verde-principal);
}


/* responsivo */

@media (max-width: 992px) {
    .agendamento .secao-topo h2 {
        font-size: 2rem;
    }
    .agenda-embed-box iframe {
        height: 820px;
    }
}

@media (max-width: 768px) {
    .agendamento {
        padding: 80px 0;
    }
    .agendamento .secao-topo {
        margin-bottom: 30px;
    }
    .agendamento .secao-topo h2 {
        font-size: 1.85rem;
    }
    .agendamento .secao-topo p {
        font-size: 0.96rem;
        line-height: 1.7;
    }
    .agenda-embed-box {
        border-radius: 20px;
    }
    .agenda-embed-box iframe {
        height: 760px;
    }
}

@media (max-width: 480px) {
    .agendamento .secao-topo h2 {
        font-size: 1.65rem;
    }
    .agendamento .secao-topo p {
        font-size: 0.92rem;
    }
    .agenda-embed-box {
        border-radius: 16px;
    }
    .agenda-embed-box iframe {
        height: 680px;
    }
}


/*sobre*/


/* ================= SOBRE ================= */

.sobre {
    padding: 100px 0;
    background: #ffffff;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* IMAGEM */

.sobre-imagem {
    position: relative;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* efeito dourado */

.sobre-imagem::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--dourado);
    border-radius: 20px;
    z-index: -1;
}


/* TEXTO */

.sobre-conteudo h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
    color: var(--verde-secundario);
}

.sobre-conteudo p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}


/* LISTA */

.sobre-lista {
    list-style: none;
    margin: 20px 0;
}

.sobre-lista li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.sobre-lista li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--dourado);
    font-weight: bold;
}


/* BOTÃO */

.btn-sobre {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--dourado);
    color: var(--verde-secundario);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-sobre:hover {
    transform: scale(1.05);
    background: #c29b2f;
}


/* RESPONSIVO */

@media (max-width: 768px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sobre-conteudo h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .sobre-conteudo p {
        text-align: center;
    }
    .sobre-lista li {
        padding-left: 28px;
    }
    .btn-sobre {
        width: 250px;
        border-radius: 30px;
        background: var(--dourado);
        color: var(--verde-secundario);
        font-weight: bold;
        text-decoration: none;
        transition: 0.3s;
    }
    .sobre-imagem::before {
        display: none;
    }
    .sobre-lista {
        list-style: none;
        margin: 20px 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* centraliza tudo */
    }
    .sobre-lista li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        text-align: left;
        /* mantém texto alinhado bonito */
        width: fit-content;
        /* evita ocupar 100% */
    }
    .sobre-lista li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: var(--dourado);
        font-weight: bold;
    }
}

.btn-sobre {
    display: block;
    margin: 20px auto 0;
    text-align: center;
}


/* animação */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-sobre:hover {
    animation: none;
    transform: scale(1.05);
}


/*faq*/

.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb, #eef1f1);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}


/* ITEM */

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


/* PERGUNTA */

.faq-pergunta {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--verde-secundario);
}


/* ÍCONE */

.faq-pergunta span {
    font-size: 1.5rem;
    transition: 0.3s;
}


/* RESPOSTA */

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-resposta p {
    padding: 10px 0 20px;
    color: #555;
    line-height: 1.7;
}


/* ATIVO */

.faq-item.active .faq-resposta {
    max-height: 200px;
}

.faq-item.active .faq-pergunta span {
    transform: rotate(45deg);
}


/* RESPONSIVO */

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    .faq-container {
        margin: 30px auto 0;
    }
    .faq-pergunta {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        font-size: 1rem;
        padding: 20px 0 16px;
    }
    .faq-pergunta span {
        margin-top: 6px;
    }
    .faq-resposta p {
        text-align: center;
        font-size: 0.95rem;
        padding: 8px 8px 20px;
    }
}


/*mapa*/


/* ================= LOCALIZAÇÃO ================= */

.localizacao {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: #fff;
}

.localizacao-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.localizacao-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(7, 28, 28, 0.88), rgba(15, 76, 76, 0.78));
    z-index: 1;
}

.localizacao .container {
    position: relative;
    z-index: 2;
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.localizacao-info {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.localizacao-info h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.localizacao-texto {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}


/* validação google */

.google-validacao {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.google-nota {
    min-width: 90px;
    text-align: center;
}

.google-nota strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 6px;
}

.google-nota span {
    color: var(--dourado);
    letter-spacing: 2px;
    font-size: 1rem;
}

.google-avaliacoes p {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #fff;
}

.google-avaliacoes small {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}


/* dados */

.localizacao-dados {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.localizacao-dados p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.localizacao-dados a {
    color: var(--dourado);
    text-decoration: none;
}

.localizacao-dados a:hover {
    text-decoration: underline;
}


/* botões */

.localizacao-botoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-localizacao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-mapa {
    background: var(--dourado);
    color: var(--verde-secundario);
}

.btn-mapa:hover {
    background: #c29b2f;
    transform: translateY(-2px);
}

.btn-whats {
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-whats:hover {
    background: #fff;
    color: var(--verde-principal);
    transform: translateY(-2px);
}


/* mapa */

.localizacao-mapa {
    min-height: 100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.localizacao-mapa iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* responsivo */

@media (max-width: 992px) {
    .localizacao-grid {
        grid-template-columns: 1fr;
    }
    .localizacao-mapa {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .localizacao {
        padding: 90px 0;
    }
    .localizacao-info {
        padding: 26px 22px;
    }
    .localizacao-info h2 {
        font-size: 1.8rem;
    }
    .google-validacao {
        flex-direction: column;
        align-items: flex-start;
    }
    .google-nota {
        text-align: left;
    }
    .localizacao-botoes {
        flex-direction: column;
    }
    .btn-localizacao {
        width: 100%;
    }
    .localizacao-mapa {
        min-height: 320px;
    }
}


/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(180deg, #071c1c, #020909);
    color: #fff;
    padding-top: 80px;
}


/* GRID */

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


/* TITULOS */

.footer h3 {
    font-size: 1.6rem;
    color: #fff;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dourado);
}


/* TEXTO */

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}


/* LINKS GERAIS */

.footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}


/* HOVER */

.footer a:hover {
    color: var(--dourado);
    transform: translateX(5px);
}


/* ÍCONES */

.footer a svg {
    transition: 0.3s;
}

.footer a:hover svg {
    transform: scale(1.1);
}


/* CONTATO */

.footer-contact span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}


/* SOCIAL */

.footer-social a {
    align-items: center;
}


/* DIVISOR */

.footer-bottom {
    margin-top: 60px;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* TEXTO FINAL */

.footer-bottom p {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}


/* DEV CREDIT */

.dev-credit {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.dev-credit a {
    margin-left: 6px;
    color: var(--dourado);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.dev-credit a:hover {
    opacity: 0.8;
}


/* ================= RESPONSIVO ================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer a {
        justify-content: center;
    }
    .footer-contact span {
        text-align: center;
    }
}


/*whatsapp flutuante*/


/* ================= BOTÃO FIXO ================= */

.whatsapp-box {
    position: fixed;
    bottom: 200px;
    right: 20px;
    z-index: 9999;
}


/* ================= BOTÃO ================= */

.whatsapp-btn {
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulseStrong 1.5s infinite;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.8);
}


/* ONDA EXTERNA */

.whatsapp-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.6);
    animation: pulseWave 1.5s infinite;
    z-index: -1;
}


/* HOVER */

.whatsapp-btn:hover {
    transform: scale(1.15);
}


/* ÍCONE */

.p1 {
    color: #fff;
    width: 30px;
    height: 30px;
}

.whatsapp-msg {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.whatsapp-msg.ativo {
    opacity: 1;
    transform: translateY(0);
}


/* ================= ANIMAÇÕES ================= */


/* pulso forte */

@keyframes pulseStrong {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.9);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* onda expandindo */

@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


/* ================= MENSAGEM ================= */

.whatsapp-msg {
    position: absolute;
    right: 75px;
    bottom: 12px;
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.4s ease;
}


/* mostrar mensagem */

.whatsapp-box.active .whatsapp-msg {
    opacity: 1;
    transform: translateY(0);
}


/* setinha */

.whatsapp-msg::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: 14px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
}


/* ================= RESPONSIVO ================= */

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }
    .whatsapp-msg {
        font-size: 0.85rem;
        padding: 10px 12px;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease;
    }
    .whatsapp-box {
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }
    /* estado escondido */
    .whatsapp-msg.esconder {
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }
}


/* ================= FILTRO DE SERVIÇOS ================= */

.filtro-servicos {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}


/* BOTÃO BASE (herdando seu estilo visual) */

.btn-filtro {
    position: relative;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1.5px solid rgba(15, 76, 76, 0.2);
    background: rgba(255, 255, 255, 0.7);
    color: var(--verde-principal);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}


/* HOVER (igual seu padrão elegante) */

.btn-filtro:hover {
    transform: translateY(-2px);
    border-color: var(--dourado);
    color: var(--dourado);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.15);
}


/* BOTÃO ATIVO (destaque premium) */

.btn-filtro.ativo {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: var(--verde-secundario);
    border: none;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
}


/* efeito glow leve no ativo */

.btn-filtro.ativo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    opacity: 0.3;
}


/* ================= CATEGORIAS ================= */

.categoria {
    display: none;
}

.categoria.ativa {
    display: block;
    animation: fadeServico 0.35s ease;
}


/* animação suave */

@keyframes fadeServico {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= BOTÃO PULSANTE FORTE ================= */

.btn-pulse {
    position: relative;
    overflow: hidden;
    animation: pulseGold 1.4s infinite;
}


/* efeito de onda externa */

.btn-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.5);
    z-index: -1;
    animation: pulseWaveGold 1.4s infinite;
}


/* ANIMAÇÃO PRINCIPAL */

@keyframes pulseGold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8);
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 18px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}


/* ONDA EXPANDINDO */

@keyframes pulseWaveGold {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


/* PAUSA NO HOVER (fica profissional) */

.btn-pulse:hover {
    animation: none;
    transform: scale(1.08);
}

/*administrativo*/

/* ================= ADMIN LOGIN / EDIÇÃO ================= */

.admin-login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 9, 9, 0.78);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10050;
}

.admin-login-overlay.active {
    display: flex;
}

.admin-login-modal {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(180deg, #ffffff, #f6f8f8);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    position: relative;
}

.admin-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 76, 76, 0.08);
    color: var(--verde-secundario);
    font-size: 1.4rem;
    cursor: pointer;
}

.admin-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--dourado-escuro);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.admin-login-modal h2 {
    color: var(--verde-secundario);
    margin-bottom: 10px;
}

.admin-login-modal p {
    color: #4f5b5b;
    margin-bottom: 18px;
}

.admin-login-form {
    display: grid;
    gap: 14px;
}

.admin-login-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--verde-secundario);
}

.admin-login-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(15, 76, 76, 0.18);
    outline: none;
    font: inherit;
}

.admin-login-form input:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.admin-login-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-login-btn,
.admin-cancel-btn,
.admin-toolbar button {
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.admin-login-btn,
#adminSaveBtn {
    background: var(--dourado);
    color: var(--verde-secundario);
}

.admin-cancel-btn,
#adminLogoutBtn {
    background: rgba(15, 76, 76, 0.1);
    color: var(--verde-secundario);
}

.admin-login-btn:hover,
.admin-cancel-btn:hover,
.admin-toolbar button:hover,
.admin-close:hover {
    transform: translateY(-1px);
}

.admin-login-feedback {
    min-height: 22px;
    margin: 0;
    font-size: 0.94rem;
    font-weight: 600;
}

.admin-login-feedback.erro {
    color: #b42318;
}

.admin-login-feedback.sucesso {
    color: #0f766e;
}

.admin-toolbar {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(7, 28, 28, 0.92);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
    z-index: 10020;
}

.admin-toolbar.active {
    display: flex;
}

.admin-toolbar-info {
    display: grid;
    gap: 4px;
}

.admin-toolbar-info span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.admin-toolbar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.admin-editing [data-editable="text"],
body.admin-editing .faq-label {
    outline: 2px dashed rgba(212, 175, 55, 0.95);
    outline-offset: 4px;
    cursor: text;
}

body.admin-editing img[data-editable="image"] {
    outline: 3px dashed rgba(212, 175, 55, 0.95);
    outline-offset: 4px;
    cursor: pointer;
}

body.admin-editing img[data-editable="image"]:hover {
    transform: scale(1.01);
}

body.admin-editing .faq-pergunta {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .admin-login-modal {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .admin-toolbar {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-toolbar-actions {
        width: 100%;
    }

    .admin-toolbar button {
        flex: 1;
    }
}

..servico-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centraliza horizontal */
    text-align: center;    /* centraliza texto */
}
.servico-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servico-conteudo {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bto-agr {
    margin-top: auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.servico-card {
    min-height: 100%;
}

/* ================= ADMIN TOOLBAR ================= */

#siteEditorToolbar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    border-radius: 16px;

    background: rgba(10, 46, 46, 0.85); /* verde escuro do seu site */
    backdrop-filter: blur(10px);

    border: 1px solid rgba(212, 175, 55, 0.25); /* dourado suave */

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    animation: fadeInToolbar 0.4s ease;
}

/* animação entrada */
@keyframes fadeInToolbar {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================= BOTÕES ================= */

#siteEditorToolbar button {
    border: none;
    padding: 8px 14px;
    border-radius: 10px;

    font-size: 0.85rem;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;
}

/* BOTÃO SALVAR */
#editSaveBtn {
    background: linear-gradient(135deg, #d4af37, #c29b2f);
    color: #0a2e2e;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

#editSaveBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.45);
}

/* BOTÃO SAIR */
#editLogoutBtn {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

#editLogoutBtn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* ================= INPUT FILE (HIDDEN STYLE TRIGGER) ================= */

#adminImageInput {
    display: none;
}