* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
font-family: "Google Sans", sans-serif;     
  background: linear-gradient(135deg, #1b5e20, #2e7d32, #1b5e20, #145a1f);
  min-height: 100%;
  font-weight: 700; 
  overflow-x: hidden;
  max-width: 100%; 
  margin: 0;
  padding: 0;
  overflow-x: hidden;  
 
    
 * {
    box-sizing: border-box;
}
    
}


.animar-scroll {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.animar-scroll.active {
    opacity: 1;
    transform: translateY(0);
}





.lightbox {
    position: fixed;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 1000;
}







html {
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

.video-banner {
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


// <weight>: Use a value from 400 to 700
// <uniquifier>: Use a unique and descriptive class name

.google-sans-<uniquifier> {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}





/* HERO BANNER */
.hero-banner {
    width: 100%;
    height: 110vh;
    max-height: 1439px;

    background-image: url('../fundos/2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

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

/* CONTAINER CENTRAL */
.hero-banner__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BOX */
.hero-banner__box {
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;

    border-radius: 20px;
    text-align: center;

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

/* LOGO (MAIOR + DESTAQUE) */
.hero-banner__logo {
    width: 180px;

    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}

/* TEXTO (MAIOR + MAIS DESTACADO) */
.hero-banner__subtitle {
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;

    text-shadow:
        0 4px 10px rgba(0, 0, 0, 0.9),
        0 2px 5px rgba(0, 0, 0, 0.7);

    letter-spacing: 1px;
}

/* BOTÕES */
.hero-banner__buttons {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* BOTÃO */
.hero-banner__btn {
    display: block;
    width: 100%;
    padding: 14px;

    background-color: #28a745;
    color: #000;

    text-decoration: none;
    border-radius: 30px;

    font-weight: 600;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);

    transition: 0.3s;
}

/* HOVER */
.hero-banner__btn:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVO */
@media (max-width: 500px) {
    .hero-banner {
        background-image: url('../fundos/4.jpg');
    }

    .hero-banner__box {
        max-width: 90%;
        padding: 25px 15px;
    }

    .hero-banner__logo {
        width: 140px;
    }

    .hero-banner__subtitle {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    /* 👇 ÚNICA ALTERAÇÃO */
    .hero-banner__btn {
        width: 85%;
        margin: 0 auto;
    }
}


/* =========================
   TOPBAR
========================= */
.topbar {
    width: 100%;
    height: 60px;
    background-color: #28a745;

    display: flex;
    align-items: center;
}

/* BOTÃO PEDIDOS */
.topbar__btn {
    margin-left: 15px;
    padding: 10px 18px;

    background-color: #f5e6c8; /* bege claro */
    color: #000;

    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;

    transition: all 0.4s ease;
    animation: pulseColor 3s infinite;
}

/* ANIMAÇÃO SUAVE */
@keyframes pulseColor {
    0% {
        background-color: #f5e6c8;
    }
    50% {
        background-color: #8fd19e; /* verde claro */
    }
    100% {
        background-color: #f5e6c8;
    }
}

/* HOVER EXTRA */
.topbar__btn:hover {
    transform: scale(1.05);
}







/* OVERLAY ESCURO */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;

    transition: 0.4s;
    z-index: 999;
}

/* MODAL */
.pedido-modal {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: #ffffff;
    z-index: 1000;

    transition: 0.5s ease;
    overflow-y: auto;
}

/* ATIVO */
.pedido-modal.active {
    left: 0;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CONTEÚDO */
.pedido-modal__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.pedido-modal input,
.pedido-modal textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* CHECKBOX */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* BOTÃO ENVIAR */
.btn-enviar {
    background: #28a745;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* BOTÃO FECHAR */
.btn-fechar {
    margin-top: 10px;
    background: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 500px) {
    .pedido-modal {
        width: 90%;
    }
}



/* =========================
   EFEITOS PREMIUM FORMULÁRIO
========================= */

/* INPUTS E TEXTAREA */
.pedido-modal input,
.pedido-modal textarea {
    width: 100%;
    padding: 14px;

    border-radius: 10px;
    border: 2px solid #ddd;

    font-size: 15px;
    font-weight: 600;

    background: #fafafa;

    transition: all 0.3s ease;
}

/* FOCO BONITO */
.pedido-modal input:focus,
.pedido-modal textarea:focus {
    outline: none;

    border-color: #28a745;
    background: #fff;

    box-shadow:
        0 0 0 3px rgba(40,167,69,0.2),
        0 5px 15px rgba(0,0,0,0.1);

    transform: scale(1.02);
}

/* PLACEHOLDER SUAVE */
.pedido-modal input::placeholder,
.pedido-modal textarea::placeholder {
    color: #999;
    font-weight: 400;
}

/* CHECKBOX MODERNO */
.checkbox-group input[type="checkbox"] {
    appearance: none;

    width: 22px;
    height: 22px;

    border-radius: 6px;
    border: 2px solid #28a745;

    position: relative;
    cursor: pointer;

    transition: all 0.3s ease;
}

/* CHECKED */
.checkbox-group input[type="checkbox"]:checked {
    background-color: #28a745;
    transform: scale(1.1);
}

/* ÍCONE CHECK */
.checkbox-group input[type="checkbox"]:checked::after {
    content: "✓";
    color: #fff;

    font-size: 14px;
    font-weight: bold;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* HOVER CHECKBOX */
.checkbox-group label:hover input[type="checkbox"] {
    box-shadow: 0 0 8px rgba(40,167,69,0.5);
}

/* LABEL MAIS BONITA */
.checkbox-group label {
    padding: 6px 8px;
    border-radius: 8px;
    transition: 0.3s;
}

/* HOVER LABEL */
.checkbox-group label:hover {
    background: rgba(40,167,69,0.1);
}

/* TEXTAREA */
.pedido-modal textarea {
    min-height: 100px;
    resize: none;
}

/* BOTÃO COM MAIS IMPACTO */
.btn-enviar {
    position: relative;
    overflow: hidden;
}

/* EFEITO BRILHO */
.btn-enviar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

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

    transition: 0.6s;
}

/* ANIMAÇÃO NO HOVER */
.btn-enviar:hover::after {
    left: 100%;
}





    * { box-sizing: border-box; margin: 0; padding: 0; }


      .container {
  padding: 20px;  
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.section {
  flex: 1 1 48%;
  max-width: 48%;
}

.section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #FFFFFF;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
}

/* 🔥 ANIMAÇÃO BASE */
.gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15), 0 18px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.3s ease;

  opacity: 0;
}

/* 👈 esquerda */
.gallery img:nth-child(odd) {
  transform: translateX(-80px);
}

/* 👉 direita */
.gallery img:nth-child(even) {
  transform: translateX(80px);
}

/* 🔥 QUANDO APARECE */
.gallery img.show {
  opacity: 1;
  transform: translateX(0);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* LIGHTBOX (CORRIGIDO) */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close, .prev, .next {
  position: absolute;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.close { top: 20px; right: 30px; font-size: 40px; }
.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 700px) {
  .container {
    flex-direction: column;
  }

  .section {
    max-width: 100%;
    flex: 1 1 100%;
  }
}









.container2{
 margin-top: 40px;
 width: 100%;
 max-width: 500px;   
 display: block;
float:none;
 margin-left: auto;
 margin-right: auto;}


.container2 h2{
  margin-top: 20px;   
 color: white;    
 text-align: center!important;
 font-family: Arial, Helvetica, sans-serif;  
 float:none;
 margin-left: auto;
 margin-right: auto;}



/* CONTAINER DO BOTÃO */
.orcamento-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0 10px;
}

/* BOTÃO */
.btn-orcamento {
  padding: 16px 35px;

  background: #f3e5c8; /* bege claro */
  color: #000;

  text-decoration: none;
  font-weight: 700;
  font-size: 16px;

  border-radius: 30px;

  box-shadow: 
    0 8px 20px rgba(0,0,0,0.3),
    0 4px 10px rgba(0,0,0,0.2);

  transition: all 0.3s ease;

  animation: pulseColor 3s infinite;
}

/* HOVER */
.btn-orcamento:hover {
  transform: scale(1.05);
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.4),
    0 6px 15px rgba(0,0,0,0.3);
}

/* ANIMAÇÃO SUAVE */
@keyframes pulseColor {
  0% {
    background: #f3e5c8;
  }
  50% {
    background: #a8d5ba; /* verde claro */
  }
  100% {
    background: #f3e5c8;
  }
}

/* RESPONSIVO */
@media (max-width: 500px) {
  .btn-orcamento {
    width: 80%;
    text-align: center;
    font-size: 15px;
  }
}


/* CONTAINER CENTRALIZADO COM TEXTO */
#orcamento-centralizado {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* BOTÃO */
#btn-orcamento-central {
    padding: 16px 35px;

    background: #f3e5c8;
    color: #000;

    text-decoration: none;
    font-weight: 700;
    font-size: 16px;

    border-radius: 30px;

    box-shadow: 
        0 8px 20px rgba(0,0,0,0.3),
        0 4px 10px rgba(0,0,0,0.2);

    transition: all 0.3s ease;

    animation: pulseColor2 3s infinite;
}

/* HOVER */
#btn-orcamento-central:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.4),
        0 6px 15px rgba(0,0,0,0.3);
}

/* ANIMAÇÃO */
@keyframes pulseColor2 {
    0% {
        background: #f3e5c8;
    }
    50% {
        background: #a8d5ba;
    }
    100% {
        background: #f3e5c8;
    }
}

/* RESPONSIVO */
@media (max-width: 500px) {
    #btn-orcamento-central {
        width: 80%;
        text-align: center;
        font-size: 15px;
    }
}





/* CONTAINER PRINCIPAL */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

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

/* VÍDEO */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%) scale(1.05); /* leve zoom elegante */
}

/* OVERLAY ESCURO (DEIXA MAIS PROFISSIONAL) */
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.6)
    );

   
}

/* CONTEÚDO */
.video-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* TÍTULO */
.video-content h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;

    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

/* TEXTO */
.video-content p {
    font-size: 18px;
    font-weight: 500;

    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .video-banner {
        height: 70vh;
    }

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

    .video-content p {
        font-size: 14px;
    }
}









    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* HERO BANNER 2 */
    .hero-banner2 {
        width: 100%;
        height: 100vh;
        max-height: 1439px;
        

        background-image: url('../fundos2/1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

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

    .hero-banner2__content {
        width: 100%;
        max-width: 1200px;
        padding: 20px;
    }

    /* MOBILE */
    @media (max-width: 500px) {
        .hero-banner2 {
            height: 100vh;
            max-height: none;

            background-image: url('../fundos2/2.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
    }


/* CONTAINER DO TEXTO */
.hero-texto {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* TEXTO PADRÃO */
.hero-texto p {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin: 6px 0;

    letter-spacing: 1px;

    text-shadow: 0 3px 8px rgba(0,0,0,0.8);
}

/* LINHA DE DESTAQUE */
.hero-texto .destaque {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 900;

    color: #a8ffb0;

    text-shadow: 
        0 0 10px rgba(0,255,100,0.6),
        0 4px 10px rgba(0,0,0,0.9);
}

/* RESPONSIVO */
@media (max-width: 500px) {
    .hero-texto p {
        font-size: 16px;
    }

    .hero-texto .destaque {
        font-size: 18px;
    }
}



/* CONTAINER DO TEXTO */
.hero-texto {
    display: block;
    float:none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* TEXTO PADRÃO */
.hero-texto p {
    color: #1b5e20; /* 🌿 verde escuro */
    font-weight: 700;
    font-size: 20px;
    margin: 6px 0;

    letter-spacing: 1px;

    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* LINHA DE DESTAQUE */
.hero-texto .destaque {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 900;

    color: #0d3b16; /* 🌿 verde ainda mais escuro */

    text-shadow: 
        0 0 6px rgba(0,100,0,0.5),
        0 3px 8px rgba(0,0,0,0.6);
}

/* RESPONSIVO */
@media (max-width: 500px) {
    .hero-texto p {
        font-size: 20px;
    }

    .hero-texto .destaque {
        font-size: 18px;
    }
}





/* SEÇÃO */
.map-section {
    width: 100%;
    padding: 40px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

/* TÍTULO */
.map-title {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-align: center;

    margin-bottom: 25px;

    text-shadow: 0 4px 15px rgba(0,0,0,0.6);

    animation: fadeDown 1s ease;
}

/* WRAPPER DO MAPA */
.map-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 800px;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 
        0 15px 40px rgba(0,0,0,0.4),
        0 5px 15px rgba(0,0,0,0.2);

    transition: transform 0.3s ease;
}

/* EFEITO HOVER */
.map-wrapper:hover {
    transform: scale(1.01);
}

/* IFRAME */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ANIMAÇÃO */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .map-wrapper {
        height: 500px;
    }

    .map-title {
        font-size: 20px;
    }
}



/* FOOTER */
.footer {
    width: 100%;
    height: 500px;

    background: linear-gradient(
        135deg,
        #d6c2a1,
        #bfa178,
        #a8895e,
        #8c6b3f
    );

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

/* CONTEÚDO */
.footer-content {
    text-align: center;
    padding: 40px 20px;

    /* ANIMAÇÃO INICIAL */
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

/* QUANDO APARECE NA TELA */
.footer-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* TÍTULO */
.footer-content h2 {
    font-size: 30px;
    color: #000; /* 🔥 preto */
    margin-bottom: 15px;

    text-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* TEXTOS */
.footer-content p {
    font-size: 18px;
    color: #000;
    margin: 5px 0;

    font-weight: 600;

    text-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ITENS */
.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 15px;

    font-size: 18px;
    font-weight: 700;
    color: #000;

    transition: all 0.3s ease;
}

/* HOVER */
.footer-item:hover {
    transform: scale(1.08);
}

/* ÍCONES */
.footer-item svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer {
        height: auto;
        padding: 80px 20px;
    }

    .footer-content h2 {
        font-size: 22px;
    }

    .footer-content p,
    .footer-item {
        font-size: 16px;
    }
}


.assinatura-site {
    width: 100%;
    text-align: center;

    padding: 20px 10px;

    font-size: 14px;
    color: #555;

    background: transparent;

    border-top: 1px solid rgba(0,0,0,0.1);
}

/* LINK */
.assinatura-site a {
    color: #1b5e20;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* HOVER */
.assinatura-site a:hover {
    color: #2e7d32;
    text-decoration: underline;
}








/* BOTÃO WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    background: #25d366;
    border-radius: 50%;

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

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.3),
        0 5px 15px rgba(0,0,0,0.2);

    cursor: pointer;

    z-index: 999;

    opacity: 0;
    transform: translateY(30px) scale(0.9);

    transition: all 0.4s ease;
}

/* ÍCONE */
.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* QUANDO APARECE */
.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        0 8px 20px rgba(0,0,0,0.3);
}

/* EFEITO PULSE */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float {
    animation: pulse 2.5s infinite;
}

/* RESPONSIVO */
@media (max-width: 500px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}


/* BOTÃO LATERAL ESQUERDO */
.scroll-top-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    /* 🌿 VERDE CLARO TRANSPARENTE */
    background: rgba(168, 213, 186, 0.6);
    backdrop-filter: blur(8px);

    border-radius: 50%;

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

    cursor: pointer;

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.25),
        0 5px 15px rgba(0,0,0,0.15);

    z-index: 999;

    opacity: 0;
    transform: translateY(40px);

    transition: all 0.4s ease;
}

/* ÍCONE (SETA PRETA) */
.scroll-top-btn svg {
    width: 26px;
    height: 26px;
    fill: #000; /* 🔥 preto */
}

/* QUANDO APARECE */
.scroll-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER */
.scroll-top-btn:hover {
    transform: scale(1.1);

    background: rgba(168, 213, 186, 0.9);

    box-shadow: 
        0 15px 35px rgba(0,0,0,0.35),
        0 8px 20px rgba(0,0,0,0.25);
}

/* CLIQUE */
.scroll-top-btn:active {
    transform: scale(0.95);
}

/* PULSE SUAVE */
@keyframes pulseArrow {
    0% {
        box-shadow: 0 0 0 0 rgba(168,213,186,0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(168,213,186,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168,213,186,0);
    }
}

.scroll-top-btn {
    animation: pulseArrow 3s infinite;
}

/* RESPONSIVO */
@media (max-width: 500px) {
    .scroll-top-btn {
        width: 50px;
        height: 50px;
        left: 15px;
        bottom: 20px;
    }

    .scroll-top-btn svg {
        width: 22px;
        height: 22px;
    }
}


