/* Torna o cabeçalho fixo no topo */
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    /* fica por cima dos outros elementos */
    background: #006290;

    /* defina cor ou fundo, senão pode ficar transparente */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    /* opcional: sombra para destacar */
}

/* Garante que o conteúdo não fique escondido atrás do cabeçalho */
body {
    padding-top: 70px;

    /* ajuste esse valor = altura do header */
}

/* Banner principal */
#banner-840343381 {
    position: relative;
    padding: 200px 20px;
    background-image: url('/wp-content/uploads/2018/11/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    /* conteúdo à esquerda */
    overflow: hidden;
    color: #fff;
}

/* Overlay suave */
#banner-840343381 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
    z-index: 1;
}

/* Conteúdo do banner */
#banner-840343381 .banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: left;

    /* textos à esquerda */
    padding-left: 50px;
}

#banner-840343381 h1 {
    font-size: 3rem;
    margin-bottom: auto;
}

#banner-840343381 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Botões agrupados */
#banner-840343381 .banner-buttons {
    display: flex;
    gap: 7px;

    /* espaço entre botões */
    flex-wrap: wrap;

    /* passa para a linha de baixo se necessário */
    margin-top: 20px;
}

/* Botão primário */
#banner-840343381 .btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background-color: #f1f1f1;
    color: #006290;
    text-decoration: none;
    border-radius: 99px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#banner-840343381 .btn-primary:hover {
    background-color: #007acc;
    transform: translateY(-2px);

    /* leve animação de hover */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Botão secundário */
#banner-840343381 .btn-secondary {
    display: inline-block;
    padding: 11px 20px;
    background-color: #006290;
    color: #ffffff;
    text-decoration: none;
    border-radius: 99px;
    font-weight: bold;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

#banner-840343381 .btn-secondary:hover {
    background-color: #f1f1f1;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 1024px) {
    #banner-840343381 {
        padding: 180px 20px;
    }

    #banner-840343381 h1 {
        font-size: 2.5rem;
    }

    #banner-840343381 p {
        font-size: 1rem;
    }

    #banner-840343381 .banner-content {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    #banner-840343381 {
        padding: 150px 15px;
    }

    #banner-840343381 h1 {
        font-size: 2rem;
    }

    #banner-840343381 p {
        font-size: 0.95rem;
    }

    #banner-840343381 .banner-content {
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    #banner-840343381 {
        padding: 150px 10px;
    }

    #banner-840343381 h1 {
        font-size: 1.5rem;
    }

    #banner-840343381 p {
        font-size: 0.65rem;
    }

    #banner-840343381 .btn-primary,
    #banner-840343381 .btn-secondary {
        padding: 7px 10px;
    }

    #banner-840343381 .banner-content {
        padding-left: 20px;
    }
}

/* Botão WhatsApp circular e centralizado */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;

    /* círculo compacto */
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: #f1f1f1;
    border-radius: 50%;

    /* círculo perfeito */
    color: #006290;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover animado */
.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Ícone WhatsApp proporcional e centralizado */
.whatsapp-button svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* Garantir visibilidade em todas as telas */
.header-button-1,
.header-button-1 .whatsapp-button {
    display: flex !important;
}

.overlay-text-container {
    display: inline-block;

    /* mantém o fundo apenas ao redor do texto */
    padding: 7px 10px;
    border-radius: 6px;
    text-align: left;

    /* alinha o texto à esquerda */
}

/* Overlay apenas em telas pequenas (mobile) */
@media (max-width: 768px) {
    .overlay-text-container {
        background-color: #006290a3;

        /* overlay leve */
    }

    .overlay-text-container h3 {
        color: #f1f1f1;
        margin: 0;
    }
}

/* Desktop: sem overlay, texto escuro ou conforme o fundo */
@media (min-width: 769px) {
    .overlay-text-container h3 {
        color: #f1f1f1;

        /* cor visível no desktop */
        margin: 0;
    }
}

/* -------------------------
   Footer — HTML acima
   Cole no style.css do tema
   ------------------------- */
:root {
    --footer-bg-top: #4a4a4a;
    --footer-bg-bottom: #2f2f2f;
    --footer-heading: #e9e9e9;
    --footer-text: #e9e9e9;
    --footer-accent: #000000;
    --footer-border: rgba(255,255,255,0.06);
}

/* container / fundo */
.footer {
    background: linear-gradient(180deg, var(--footer-bg-top) 0%, var(--footer-bg-bottom) 100%);
    color: var(--footer-text);
    padding: 30px 16px 10px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* wrapper */
.footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 12px;
    box-sizing: border-box;
}

/* blocos (mobile = coluna; desktop = linha) */
.footer__block-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* bloco individual */
.footer__block-item {
    padding: 8px 6px;
    box-sizing: border-box;
}

/* título do bloco */
.footer__title {
    color: var(--footer-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

/* links */
.footer__linklist {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1.6;
}

.footer__link-item {
    display: block;
    color: var(--footer-text);
    text-decoration: none;
    padding: 4px 0;
    font-size: 14px;
}

.footer__link-item:hover {
    color: var(--footer-accent);
}

/* newsletter */
.footer__newsletter-wrapper {
    margin-top: 8px;
}

.form__input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.form__field {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border-radius: 24px;
    border: 1px solid var(--footer-border);
    background: #fff;
    color: #222;
    box-sizing: border-box;
    font-size: 14px;
}

.form__floating-label {
    display: none;
}

/* mantive placeholder para simplicidade */
.botao-newsletter {
    display: block;
    width: 220px;
    max-width: 100%;
    padding: 13px 24px;
    margin-top: 6px;
    border-radius: 30px;
    background: var(--footer-accent);
    color: #fff;
    font-weight: 700;
    border: 0;
}

/* collapsible (mobile) — fechado por padrão */
.footer__collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
}

.footer__collapsible-content {
    padding: 0 6px 16px 0;
}

/* quando o botão tiver aria-expanded="true" (útil caso use JS) */
.footer__title[aria-expanded="true"] + .footer__collapsible {
    max-height: 800px;
}

/* aside / mensagem central */
.footer__aside .mensagem-aviso p {
    font-size: 13px;
    text-align: center;
    margin: 18px 0 0;
    color: var(--footer-text);
}

/* pagamentos e logos */
.payment-list2 {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 6px;
}

.payment-icon {
    height: 28px;
    display: inline-block;
}

/* trust logos */
.trust-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 6px;
}

.trust-icon {
    height: 34px;
}

/* barra inferior */
.barra-inferior-footer {
    border-top: 1px solid var(--footer-border);
    margin-top: 18px;
    padding: 14px 6px;
    text-align: center;
}

.barra-inferior-footer p {
    margin: 0;
    color: #dcdcdc;
    font-size: 13px;
}

/* pequenas utilidades */
.heading.h6 {
    margin: 0;
}

/* ----------------
   Media queries
   ---------------- */
/* Mobile styles (<=640px) - blocos em coluna, colapsáveis */
@media (max-width:640px){
    .footer__wrapper {
        padding: 18px 12px;
    }

    .footer__block-list {
        gap: 0;
    }

    .footer__block-item {
        border-bottom: 1px solid var(--footer-border);
        padding: 12px 6px;
    }

    .footer__block-item--newsletter {
        border-bottom: none;
    }

    .footer__aside {
        margin-top: 16px;
    }

    .botao-newsletter {
        width: 100%;
    }

    .payment-list2 {
        justify-content: flex-start;
    }
}

/* Desktop (>=641px) — mostrar todo conteúdo (override do collapsible) */
@media (min-width:641px){
    .footer__block-list {
        flex-direction: row;
        gap: 0;
        align-items: flex-start;
    }

    .footer__block-item {
        flex: 1 1 0;
        padding: 20px 24px;
        border-bottom: none;
    }

    .footer__block-item--newsletter {
        max-width: 360px;
        flex: 0 0 360px;
    }

    .footer__collapsible {
        max-height: none;
        overflow: visible;
        transition: none;
    }

    .footer__title {
        cursor: default;
        padding: 0 0 14px 0;
    }

    .mensagem-aviso p {
        text-align: center;
        margin-top: 40px;
    }

    .payment-list2 {
        justify-content: center;
    }

    .footer-item-list {
        display: flex;
        gap: 40px;
        justify-content: space-between;
        align-items: center;
        margin-top: 36px;
    }
}

/* Wide screens */
@media (min-width:1000px){
    .footer__wrapper {
        padding: 50px 8px;
    }

    .mensagem-aviso p {
        font-size: 14px;
    }
}

.footer__logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.footer-logo {
    max-height: 60px;

    /* ajuste conforme a proporção da logo */
    max-width: 180px;
    height: auto;
    width: auto;
}

.social-icons {
    display: flex;
    justify-content: center;

    /* centraliza horizontalmente */
    gap: 10px;

    /* espaçamento entre os ícones */
}

.social-icons svg {
    width: 15px;

    /* ajuste o tamanho desejado */
    height: 28px;
    display: block;
    margin: auto;
}

.section-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #006290;
    letter-spacing: 1px;
}

.quem-somos {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.quem-somos h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

/* FAQ item */
.faq-item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #006290;

    /* cor padrão do item fechado */
    color: #fff;
    transition: background-color 0.3s;
}

/* Header clicável */
.faq-item .footer__collapsible-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ícone + / - */
.faq-item .footer__collapsible-header::after {
    content: '+';
    font-weight: bold;
    transition: transform 0.3s;
}

/* Item aberto */
.faq-item .footer__collapsible-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 100px;
    background-color: #1e3b5a;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Quando ativo, o JS adiciona a classe 'active' */
.faq-item .footer__collapsible-content.active {
    max-height: 500px;

    /* suficiente para o conteúdo */
    padding: 15px 20px;
}

.faq-item .footer__collapsible-content p,
.faq-item .footer__collapsible-content ul {
}

.faq-item .footer__collapsible-header.active::after {
    content: '-';
}

/* Alternar cores para cada item (opcional) */
.faq-item:nth-child(2) .footer__collapsible-header {
    background-color: #006290;
}

.faq-item:nth-child(3) .footer__collapsible-header {
    background-color: #006290;
}

---------------------
.features-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Faixa de slides */
.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;

    /* animação mais suave */
    will-change: transform;
}

/* Cada item */
.carousel-item {
    flex: 0 0 100%;

    /* mobile: ocupa a largura toda */
    text-align: center;
}

.carousel-item img {
    width: 70%;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Botões */
.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Bullets */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    gap: 6px;
    margin-bottom: 25px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.carousel-dots span.active {
    background: #333;
    transform: scale(1.2);
}

/* -------- DESKTOP -------- */
@media (min-width: 768px) {
    .carousel-track {
        transform: none !important;
        justify-content: space-between;
    }

    .carousel-item {
        flex: 0 0 18%;

        /* 5 imagens em linha */
    }

    .carousel-btn,
    .carousel-dots {
        display: none !important;
    }
}

--------------------------------
.contact-map {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

/* Mapa */
.contact-map .map-area {
    flex: 1;
    min-height: 300px;
}

/* Caixa de informações */
.contact-map .info-box {
    flex: 1;
    background-color: #12375a;

    /* azul escuro */
    color: #fff;
    padding: 40px 30px;
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map .info-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-map .info-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 8px 0;
}

/* Responsivo (empilha no mobile) */
@media (max-width: 768px) {
    .contact-map {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
    }

    .contact-map .map-area {
        height: 250px;
    }

    .contact-map .info-box {
        border-radius: 0 0 12px 12px;
        text-align: center;
    }
}

html,
body {
    overflow-x: hidden;
    position: relative;
}

--------------------------------

/* =================================================================== */
/* PRODUTOS EM DESTAQUE (VERSÃO CORRIGIDA E CENTRALIZADA)             */
/* =================================================================== */

.produtos-destaque {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Layout mobile (default): grid */
.produtos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;

    /* garante centralização */
}

/* CARD DO PRODUTO */
.produto-card {
    display: flex;
    flex: 0 0 360px;
    flex-direction: column;
    justify-content: space-between;

    /* distribui bem imagem, título e botão */
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.produto-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.produto-nome {
    font-size: 16px;
    font-weight: bold;
    color: #1c3b70;
    margin: 10px 0;
    min-height: 48px;

    /* mantém títulos alinhados */
}

/* Botão */
.btn-orcamento {
    width: 100%;
    background-color: #006290;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: auto;

    /* fixa o botão no fim do card */
}

.btn-orcamento:hover {
    background-color: #16305a;
}

/* Desktop: cards centralizados em linha */
@media screen and (min-width: 768px) {
    .produtos-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        /* centraliza horizontalmente */
        gap: 20px;
    }

    .produto-card {
        flex: 0 0 300px;

        /* largura fixa */
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .produto-nome {
        font-size: 1rem;

        /* diminui a fonte no tablet/mobile */
        line-height: 1.2;

        /* compacta altura do texto */
    }

    .btn-orcamento {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .produto-nome {
        font-size: 0.9rem;

        /* reduz mais no mobile estreito */
    }
}

----------------------------------
.botao-container {
    display: flex;

    /* flexbox para alinhamento */
    justify-content: center;

    /* centraliza horizontalmente */
    margin: 20px 0;
}

.botao-container .botao-saiba {
    display: inline-block !important;

    /* impede ocupar 100% */
    background-color: #006290;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    width: auto !important;

    /* força só o necessário */
    text-align: center;
}

------------------
//* Container exclusivo para centralizar */
.botao-container-kiron {
    display: flex !important;
    justify-content: center !important;
    margin: 20px 0 !important;
    position: relative !important;
    align-items: center;
    width: 100%;
}

/* Botão exclusivo */
.botao-saiba-kiron {
    display: inline-flex !important;

    /* Flex para alinhar ícone e texto */
    flex-direction: inline !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;

    /* Espaço entre ícone e texto */
    padding: 12px 28px !important;
    background-color: #006290 !important;
    color: #f1f1f1 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* Ícone dentro do botão */
.botao-saiba-kiron svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;

    /* cor branca do ícone */
    display: block;
}

/* Animação */
animation: pulse-kiron 0 infinite;

/* Efeito hover opcional */
.botao-saiba-kiron:hover {
    background-color: #0f2747 !important;
}

/* Keyframes exclusivos */
@keyframes pulse-kiron {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(25, 58, 106, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(25, 58, 106, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #19396a71;
    }
}

--------------------------

.faq-conteudo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-conteudo.ativo {
    max-height: 1000px;
    padding-left: 37px;
    padding-right: 37px;

    /* valor suficiente para comportar o conteúdo */
}

.faq-cabecalho.active {
    background: #0c2147;

    /* cor diferente quando ativo */
}

---------------------------.al-booknow-button,
.al-whatsapp-float {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 1) Book Now pill (header/button style similar ao site) */
.al-booknow-button {
    --green-1: #25d366;
    --green-2: #128c7e;
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(180deg, var(--green-1) 0%, var(--green-2) 100%);
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(18,140,126,0.18);
    border: 2px solid rgba(255,255,255,0.06);
    font-size: 15px;
    line-height: 1;
    margin-left: 10px;
    white-space: nowrap;
    transition: transform .16s ease, box-shadow .16s ease, opacity .12s ease;
}

/* small icon inside pill */
.al-booknow-button .al-btn-icon {
    display: inline-grid;
    place-items: center;
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.al-booknow-button:hover {
    transform: translateY(-3%);
}

/* 2) WhatsApp floating circular button (bottom-right) */
.al-whatsapp-float {
    position: fixed !important;
    right: clamp(16px, 3.5vw, 28px) !important;
    bottom: calc(env(safe-area-inset-bottom, 12px) + clamp(16px, 3.5vw, 28px)) !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transform: translateZ(0);
}

/* circle */
.al-whatsapp-float .al-whatsapp-icon {
    width: clamp(56px, 9vw, 72px);
    height: clamp(56px, 9vw, 72px);
    border-radius: 50%;
    background: linear-gradient(180deg,#006290 21%, #006290 100%);
    color: #fff;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 12px 36px rgba(18,140,126,0.20);
    border: 3px solid rgba(255,255,255,0.08);
    transition: transform .16s ease, box-shadow .16s ease;
}

/* svg icon */
.al-whatsapp-float .al-whatsapp-icon svg {
    width: 54%;
    height: 54%;
    display: block;
    fill: currentColor;
}

/* hover */
.al-whatsapp-float:hover .al-whatsapp-icon,
.al-whatsapp-float:focus .al-whatsapp-icon {
    transform: translateY(-6%) scale(1.03);
    box-shadow: 0 18px 46px rgba(18,140,126,0.28);
}

/* tiny badge (optional) */
.al-whatsapp-float .al-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    background: #ff3b30;
    color: #fff;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Accessibility: focus ring */
.al-whatsapp-float:focus-visible,
.al-booknow-button:focus-visible {
    outline: 3px solid rgba(37,211,102,0.18);
    outline-offset: 4px;
    border-radius: 999px;
}

/* Small-screen adjustments (avoid covering important footer controls) */
@media (max-width:420px) {
    .al-whatsapp-float {
        right: clamp(12px, 6vw, 18px) !important;
        bottom: calc(env(safe-area-inset-bottom, 10px) + clamp(12px, 6vw, 18px)) !important;
    }

    .al-whatsapp-float .al-whatsapp-icon {
        width: 52px;
        height: 52px;
    }

    .al-booknow-button {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* If the site already has a top header/link where you want Book Now, you can use this class */
.al-booknow-inline {
    margin-left: 12px;
}

#al-whatsapp-float,
.al-whatsapp-float {
    position: fixed !important;
    right: clamp(16px, 3.5vw, 28px) !important;
    left: auto !important;

    /* força a ignorar o left anterior */
    bottom: calc(env(safe-area-inset-bottom, 12px) + clamp(16px, 3.5vw, 28px)) !important;
    z-index: 2147483647 !important;
}

---
.hero-text {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 1rem;
    color: #1c3b70;

    /* destaque secundário */
    margin-bottom: 8px;
}

.hero-text h1 {
    font-size: 1.5rem;
    color: #5e87cd;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.form-box {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Inputs e selects corrigidos */
.form-box input[type="text"],
.form-box input[type="number"],
.form-box select {
    width: 100%;
    padding: 14px 16px;

    /* altura confortável */
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.4;
    box-sizing: border-box;
}

/* Checkbox LGPD */
.lgpd-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 12px;
}

.lgpd-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);

    /* deixa mais visível */
}

/* Botão */
.form-box button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(90deg, #006290, rgba(57, 57, 57, 0.497));
    color: #fff;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.form-box button:hover {
    opacity: 0.9;
}

-------------------------
/* Layout padrão (mobile-first): centralizado */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    background: url('wp-content/uploads/2018/11/unnamed.png') no-repeat center center;
    background-size: cover;
}

/* Desktop: duas colunas, formulário à direita */
@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        justify-content: flex-end;

        /* joga conteúdo para a direita */
        align-items: center;
        text-align: left;
        padding: 40px 80px;
    }

    .hero-text {
        flex: 1;
        max-width: 50%;
        text-align: left;
        margin-right: 40px;
    }

    .form-box {
        flex: 1;
        max-width: 400px;
    }
}

---------------------

.btn-orcamento {
    /* Opcional: Estilos para o botão */
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;

    /* Cor de exemplo */
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;

    /* Adiciona um espaço acima do botão */
}

------------------------------
/* Container principal */
.sobre-fotos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Foto destaque */
.foto-destaque {
    width: 100%;
    height: 250px;

    /* bom para horizontal */
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Galeria desktop (três menores lado a lado) */
.galeria-fotos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.galeria-fotos img {
    flex: 1;
    height: 120px;

    /* bom para verticais */
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Animação fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: flex-start;

    /* desktop: esquerda */
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 8px 30px 30px rgba(0,0,0,0.6);
    margin-left: 20px;

    /* espaço da esquerda */
}

/* Botão fechar */
.lightbox .fechar {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

.lightbox .fechar:hover {
    transform: scale(1.2);
    color: #ff5252;
}

/* Responsividade */
@media (max-width: 768px) {
    /* volta pro centro no mobile */
    .lightbox {
        justify-content: center;
    }

    .lightbox img {
        margin-left: 0;
        max-width: 95%;
    }

    /* galeria vira carrossel horizontal */
    .galeria-fotos {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }

    .galeria-fotos img {
        flex: 0 0 75%;

        /* ocupa boa parte da tela */
        height: auto;
        scroll-snap-align: start;
    }
}

----------------------------------------
/* Força o submenu a aparecer logo abaixo do "Manual" */
.header-nav .menu-item-has-children {
    position: relative;

    /* importante para o submenu ficar relativo ao pai */
}

.header-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;

    /* faz aparecer logo abaixo do item pai */
    left: 0;
    background: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-width: 180px;
    z-index: 9999;

    /* fica acima do cabeçalho */
}

/* Aparecer no hover */
.header-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Estilo dos links dentro do submenu */
.header-nav .sub-menu li a {
    color: #333 !important;
    padding: 8px 15px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
}

.header-nav .sub-menu li a:hover {
    background: #f5f5f5;
}

-----------------------------
/* Desktop: submenu absoluto abaixo do pai (mantém o que já usamos) */
.header-nav .menu-item-has-children {
    position: relative;
}

.header-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    min-width: 280px;
    z-index: 9999;
}

.header-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* ===== Mobile: comportamento por clique ===== */
@media (max-width: 768px) {
    /* Submenu dentro do fluxo (sem absolute) */
    .header-nav .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 12px;

        /* identa visualmente */
        background: #fff;
        border-left: 3px solid transparent;
    }

    /* Quando a classe .open estiver no li, mostramos o submenu */
    .header-nav .menu-item-has-children.open > .sub-menu {
        display: block;
    }

    .header-nav .sub-menu {
        display: none !important;

        /* sempre fechado inicialmente */
    }

    .header-nav .menu-item-has-children.open > .sub-menu {
        display: block !important;

        /* abre apenas quando tem a classe .open */
    }
}

/* Indicador de dropdown para o link pai */
.header-nav .menu-item-has-children > a {
    position: relative;
    padding-right: 28px;

    /* espaço para o ícone */
}

.header-nav .menu-item-has-children > a::after {
    content: '▾';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    pointer-events: none;
}

/* Links do submenu (touch friendly) */
.header-nav .sub-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
}

/* === Forçar submenu fechado no mobile e abrir por .open === */
@media (max-width: 768px) {
    /* cobre vários containers comuns de menu mobile */
    .header-inner .header-nav .menu-item-has-children > .sub-menu,
    .header-inner .mobile-nav .menu-item-has-children > .sub-menu,
    #main-menu .menu-item-has-children > .sub-menu,
    .off-canvas .menu-item-has-children > .sub-menu,
    .header-nav .menu-item-has-children > .sub-menu {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
        transition: none !important;
    }

    .header-inner .menu-item-has-children.open > .sub-menu,
    .header-inner .mobile-nav .menu-item-has-children.open > .sub-menu,
    #main-menu .menu-item-has-children.open > .sub-menu,
    .off-canvas .menu-item-has-children.open > .sub-menu,
    .header-nav .menu-item-has-children.open > .sub-menu {
        display: block !important;
        max-height: 1200px !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        transition: max-height .28s ease;
    }

    /* indicador visual (setinha) */
    .header-nav .menu-item-has-children > a {
        position: relative;
        padding-right: 28px;
    }

    .header-nav .menu-item-has-children > a::after {
        content: '▾';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        pointer-events: none;
    }
}

/* Mantém o hover desktop (fora da media query) */
.header-nav .menu-item-has-children {
    position: relative;
}

.header-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

----------------------------------------
html {
    scroll-behavior: smooth;
}

/* garante que, quando o botão tiver aria-expanded="true", o collapsible abra */
.footer__title[aria-expanded="true"] + .footer__collapsible {
    max-height: 1200px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    transition: max-height .28s ease !important;
}

/* se o tema usa display inline, forçamos block quando aberto */
.footer__title[aria-expanded="true"] + .footer__collapsible {
    display: block !important;
}

--------------------------
/* Submenus escondidos por padrão */
.header-nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #006290;
    min-width: 180px;
    z-index: 999;
}

/* Submenu aberto via JS */
.header-nav .menu-item-has-children.open > .sub-menu {
    display: block;
}

/* Sub-submenu (segundo nível) */
.header-nav .sub-menu .menu-item-has-children > .sub-menu {
    left: 100%;
    top: 0;
}
}
