/* 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: #AD708F;

    /* 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: #AD708F;
    text-decoration: none;
    border-radius: 99px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#banner-840343381 .btn-primary:hover {
    background-color: #AD708F;
    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: #AD708F;
    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: #AD708F;
    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: #ad708e82;

        /* 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;
}

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

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

.produtos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.produto-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.produto-img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 10px;
}

.produto-categoria {
    font-size: 12px;
    color: #7a8aa5;
    margin: 5px 0;
    text-transform: uppercase;
}

.produto-nome {
    font-size: 14px;
    font-weight: bold;
    color: #1c3b70;
    margin: 5px 0;
}

.produto-descricao {
    font-size: 12px;
    color: #4b4b4b;
    margin-bottom: 10px;
}

.btn-orcamento {
    background-color: #AD708F;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

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

    /* tamanho padrão desktop */
    cursor: pointer;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .btn-orcamento {
        font-size: 14px;

        /* reduz a fonte para caber em uma linha */
        padding: 6px 12px;

        /* opcional, deixa o botão proporcional */
    }
}

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

/* Desktop: rolagem horizontal */
@media screen and (min-width: 768px) {
    .produtos-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
    }

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

        /* Largura fixa dos cards no desktop */
    }
}

.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: #1e3b5a;

    /* 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 {
    margin: 0 0 10px;
}

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

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

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

---------------------
.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: 50%;
    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;
}

.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: #AD708F;

    /* 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-destaque {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

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

.produtos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.produto-card {
    flex: 1 1 250px;

    /* cards responsivos */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
}

.produto-img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 10px;
}

.produto-categoria {
    font-size: 102x;
    color: #7a8aa5;
    margin: 5px 0;
    text-transform: uppercase;
}

.produto-nome {
    font-size: 18px;
    font-weight: bold;
    color: #AD708F;
    margin: 1px 0;
}

.produto-descricao {
    font-size: 15px;
    color: #4b4b4b;
    margin-bottom: 10px;
    flex-grow: 1;

    /* empurra o botão para baixo */
}

.btn-orcamento {
    margin-top: auto;
    background-color: #AD708F;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

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

/* Desktop: rolagem horizontal */
@media screen and (min-width: 768px) {
    .produtos-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
    }

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

        /* Largura fixa dos cards no desktop */
    }
}

----------------------------------
.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: #AD708F;
    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-block !important;
    width: auto !important;
    padding: 12px 28px !important;
    background-color: #f1f1f1 !important;
    color: #AD708F !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-sizing: border-box !important;

    /* Animação */
    animation: pulse-kiron 4s infinite;
}

/* Efeito hover opcional */
.botao-saiba-kiron:hover {
    background-color: #a96888 !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;

    /* 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,#AD708F 21%, #AD708F 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;
}