@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    --bg-page: #181818;
    --titles-gradient: linear-gradient(to right, #eaeaea 0%, #bcbcbc 50%, #858585 100%);

    --bg-cards: #353535;

}


* {
    box-sizing: border-box !important;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "IBM Plex Sans", sans-serif !important;
    background-color: var(--bg-page) !important;
    color: #fff !important;
    overflow-x: clip;
    
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

h1,h2,h3,h4,h5,h6 {
    font-family:"Noto Serif", serif !important;
}





/* MAPA DE ANIMAÇÕES */

.animate {
  opacity: 0;
  will-change: transform, opacity;
}

.fade {
  transform: none;
}

.fade-up {
  transform: translateY(24px);
}

.fade-down {
  transform: translateY(-24px);
}

.fade-left {
  transform: translateX(24px);
}

.fade-right {
  transform: translateX(-24px);
}

.animate.animate-in {
  opacity: 1;
  transform: translate(0, 0);
}

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-900 { transition-duration: 900ms; }

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-500 { transition-delay: 500ms; }
.delay-700 { transition-delay: 700ms; }

.ease-soft {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.ease-default {
  transition-timing-function: ease;
}

.animate {
  transition-property: opacity, transform;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Botao principal */

.btn-contato {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 14px 22px 14px 26px;
  border-radius: 999px;

  background: linear-gradient(135deg, #5f5f5f, #4b4b4b);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  text-decoration: none;
  cursor: pointer;

  transition: all 0.3s ease;
}

.btn-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  font-family:"Noto Serif", serif !important;
}

.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;

  background: #f1f1f1;
  color: #222;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

/* Hover */
.btn-contato:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-decoration: none ;
}

.btn-contato:hover .btn-icon {
  background: #ffffff;
  transform: translateX(4px);
}





/* HEADER */

.site-header {
  position: relative;
}
header .container {
    padding: 0;
}

/* Esse é o bloco que fica flutuando */
.header-wrapper {
  padding: 20px 0;
}
nav img {
    max-width: 180px;
}
/* Card visual */
.header-box {
  margin: 0 auto;
  max-width: 1200px; /* padrão container lg */
  padding: .9rem 1rem !important;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
}

/* Espaçamento dos links */
.navbar-nav .nav-item {
  margin: 0 20px;
}
.navbar-dark .navbar-nav .nav-link {
    font-family:"Noto Serif", serif !important;
    font-size: 16px;
    color: #fff !important;
    font-weight: 800;
    transition: all ease 0.3s;
}
.navbar-dark .navbar-nav .nav-link:hover {
    transform: translatey(-2px);
} 

@media (min-width: 1200px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: 18px;
    }
    
}
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        padding: 12px 5px;
    }
}
@media (max-width: 576px) {
    header .container {
    padding: 0 12px;
}
nav img {
    max-width: 150px;
}
}


/* HERO AREA */

#hero-area {
    padding: 0 0 70px 0;
}
#hero-area .container {
    position: relative;
    padding: 90px 25px;
}
#hero-area .container::before {
  content: "";
  background-image: url(../img/banner-hero.png);
  background-size: cover;
  /* Opacidade desejada */
  opacity: 0.1;
  /* Faz preencher todo o pai */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Coloca atrás do conteúdo */
  z-index: -1;
}


#hero-area h1 {
    font-size: 4.8em;
    font-weight: 900;
    background-image: linear-gradient(to right,#EAEAEA 0%, #BCBCBC 50%, #858585 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: transparent;
    display: inline-block;
    margin-right: 150px;
    line-height: 1.5;
}

#hero-area .hero-bottom {
    display: flex;
    gap: 240px;
}
#hero-area .hero-badge-card {
    background-color: rgba(214, 214, 214, 0.3);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 20px;
    padding: 10px 30px;
    min-width: 300px;
    border: 1px solid #bcbcbc;
    margin-top: 50px;
}
#hero-area .hero-badge-card span {
    font-size: 1.3em;
    font-weight: 400;
}
#hero-area .hero-badge-card p {
    margin: 0;
    font-size: 1em;
    font-weight: 600;
    font-family: "Noto serif", sans-serif !important;
}
#hero-area .hero-badge img {
    width: 55px;
    height: 66px;
}

#hero-area .hero-description {
    flex: 1;
    margin-top: -50px;
}
#hero-area .hero-description p {
    font-weight: 400;
    font-size: 1.2em;
}
#hero-area .hero-description .description-bottom {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
#hero-area .hero-description .description-bottom .projects {
    display: flex;
    align-items: center;
    gap: 10px;
}
#hero-area .hero-description .description-bottom .projects span {
    font-size: 1.1em;
    font-weight: 500;
}

@media (max-width: 1200px) {
    #hero-area h1 {
        font-size: 4.5em;
        margin-right: 100px;
    }
    #hero-area .hero-bottom {
        gap: 80px;
    }
    #hero-area .hero-description .description-bottom .projects span {
        font-size: 1em;
    }
    #hero-area .hero-description .btn-text {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    #hero-area h1 {
        font-size: 3.5em;
        margin-right: 0;
        text-align: center;
    }
    #hero-area .hero-bottom  {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    #hero-area .hero-bottom .hero-badge { display: none; }
    #hero-area .hero-bottom .hero-description { order: 1 } 

    #hero-area .hero-description {
        margin-top: 30px;
        text-align: center;
    }
    #hero-area .hero-description .description-bottom {
        justify-content: space-between;
    }
    #hero-area .hero-description .btn-text {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    #hero-area h1 {
        font-size: 3em;
    }
    #hero-area .hero-description .description-bottom {
        flex-direction: column;
    }
    #hero-area .hero-bottom .hero-description .btn-contato { order: 2 }
    #hero-area .hero-bottom .hero-description .projects { order: 1 } 
}
@media (max-width: 440px) {
    #hero-area h1 {
        font-size: 2.3em;
    }
    #hero-area .hero-description p {
        font-size: 1em;
    }
    #hero-area .hero-bottom .hero-description .projects img {
        width: 80px;
        height: auto;
    }
    #hero-area .container {
        padding: 70px 10px;
    }
}

/* ABOUT AREA */

#about {
    padding: 30px 0 70px 0;
}
#about .row {
    align-items: center;
}

#about .left-area {
    position: relative;
}
#about .left-area .img-desktop {
    border-radius: 20px;
}
#about .left-area .img-mobile {
    display: none;
}
#about .left-area .cta-card-area {
    position: absolute;
    border: 20px solid #181818;
    bottom: 0;
    right: 0;
    border-radius: 20px 0 20px 0;
    background-color: #181818;
}
#about .left-area .cta-card {
    background-color: var(--bg-cards);
    padding: 30px;
    max-width: 350px;
    text-align: center;
    border-radius: 20px;
}
#about .left-area .cta-card h5 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
}


#about .right-area h2 {
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 5px;
}
#about .right-area .bar-about {
    width: 250px;
    height: 2px;
    background-image: var(--titles-gradient);
    margin: 10px 0;
}
#about .right-area h3 {
    font-size: 2.2em;
    font-weight: bold;
    background-image: linear-gradient(to right,#EAEAEA 0%, #BCBCBC 50%, #858585 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: transparent;
    display: inline-block;
}
#about .right-area .about-bottom {
    margin-top: 40px;
}
#about .right-area .about-destaques {
    display: flex;
    gap: 20px;
    align-items: center;
}
#about .right-area .about-destaques img {
    width: 60px;
    height: 60px;
}
#about .right-area .about-destaques h6 {
    font-size: 1.2em;
    margin-bottom: 5px;
}
#about .right-area .about-destaques p {
    margin: 0;
    font-size: 0.9em;
}

@media (max-width: 1200px) {
    #about .left-area .cta-card {
        padding: 20px;
        max-width: 250px;
    }
    #about .left-area .cta-card h5 {
        font-size: 1.2em;
    }
}

@media (max-width: 992px) {
    #about .left-area .img-desktop {
        display: none;
    }
    #about .left-area .img-mobile {
        display: flex;
        justify-self: center;
    }
    #about .row {
        gap: 35px;
    }
    #about .left-area {order: 2;}
    #about .right-area {order: 1;}

    #about .left-area .cta-card-area {
        right: 120px;
    }
    #about .left-area .cta-card {
        max-width: 300px;
    }
    

}
@media (max-width: 768px) {
    #about .left-area .img-mobile {
        width: 100%;
    }
    #about .left-area .cta-card-area {
        right: 0;
    }
}
@media (max-width: 450px) {
    #about .left-area .cta-card {
        max-width: 250px;
        padding: 0;
        border-radius: 50%;
    }
    #about .right-area h3 {
        font-size: 1.6em;
    }
    #about .right-area h2 {
        font-size: 1.1em;
    }
    #about .right-area .about-destaques img {
        width: 50px;
        height: 50px;
    }
    #about .right-area .about-destaques p {
        font-size: 0.8em;
    }
    #about .left-area .cta-card h5 {
        display: none;
    }
}



/* SERVICES */

#services-section {
  padding: 90px 0;
  background: radial-gradient(circle at top, #1f1f1f 0%, #181818 60%);
}

.services-eyebrow {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 2px;
  color: #eaeaea;
  margin-bottom: 10px;
  font-weight: bold;
}
.services-header {
    display: flex;
    flex-direction: column;
}
.services-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(to right,#EAEAEA 0%, #BCBCBC 50%, #858585 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: transparent;
    display: inline-block;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #0f0f0f, #0b0b0b);
}

.service-item img {
    width: 100px;
    height: auto;
}

.service-item:hover {
  border-color: rgba(234, 234, 234,0.5);
  transform: translateY(-2px);
}

.service-icon {
  flex: 0 0 60px;
}

.service-content {
  flex: 1;
  padding: 0 30px;
}

.service-content h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.service-content p {
  margin: 0;
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.6;
}

.service-action {
  flex: 0 0 50px;
  text-align: center;
  font-size: 22px;
  color: #eaeaea;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-item:hover .service-action {
  transform: translateX(5px);
}
.service-action:hover {
    text-decoration: none;
    color: #575757;
}

/* Responsivo */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  .service-item img {
    width: 70px;
    height: auto;
  }

  .service-content {
    padding: 20px 0;
  }

  .service-action {
    align-self: flex-end;
  }
}

/* BANNER 01 */

#banner-01 {
    padding: 20px 0;
}

#banner-01 .container {
    border-radius: 20px;
    background-image: url(../img/bg-banner-01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 40px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35)
}

#banner-01 .banner-01-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#banner-01 .banner-01-content h2 {
    max-width: 600px;
    font-weight: 900;

}

@media (max-width: 1200px) {
    #banner-01 .banner-01-content h2 {
        max-width: 500px;
    }
}
@media (max-width: 992px) {
    #banner-01 .banner-01-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    #banner-01 {
    padding: 20px;
}
#banner-01 .container {
    padding: 100px 20px;
}
}

/* Porque nos escolher */

#why-choose-us {
  padding: 70px 0;
  color: #fff;
}

.section-eyebrow {
  display: block;
  font-size: 22px;
  color: #aaa;
  font-weight: bold;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  background-image: linear-gradient(to right,#EAEAEA 0%, #BCBCBC 50%, #858585 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: transparent;
    display: inline-block;
}

.section-text {
  color: #cecdcd;
  max-width: 520px;
  margin-bottom: 30px;
}

.btn-cta {
  border-radius: 50px;
  padding: 10px 22px;
}

.counter-box {
  background: #272727;
  border-radius: 16px;
  padding: 40px;
}

.counter-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #cecdcd;
}

.counter-item:last-child {
  border-bottom: none;
}

.counter-item strong {
  font-size: 38px;
  font-weight: 600;
}

.counter-item span {
  font-weight: bold;
}
.counter-item .counter-text {
    font-size: 26px;
    font-family: 'Noto Serif',sans-serif;
}
.feature-card {
  background: #272727;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card span {
  font-size: 22px;
  font-weight: bold;
}

.feature-card h5 {
  font-size: 14px;
  margin: 0;
  font-weight: 800;
  color: #cecdcd;
}
@media (max-width: 768px ) {
    .counter-item .counter-text {
        font-size: 20px;
    }
    .section-title {
        font-size: 32px;
    }
    .section-eyebrow {
        font-size: 18px;
    }

}
@media (max-width: 425px ) {
    .counter-item {
        flex-direction: column;
        text-align: center;
    }
}
/* PROCESS AREA */

.process-section {
  padding: 100px 0;
  background: radial-gradient(circle at bottom, #292929, #181818);
}

.process-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #bbb;
  text-transform: uppercase;
}

.process-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background-image: linear-gradient(to right,#EAEAEA 0%, #BCBCBC 50%, #858585 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    color: transparent;
    display: inline-block;
}

.process-description {
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.7;
}

.process-card {
  height: 100%;
  padding: 32px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(182, 182, 182, 0.08);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 234, 234, 0.4);
}

.process-number {
  font-size: 30px;
  font-weight: 800;
  color: #bbb;
  margin-bottom: 20px;
}

.process-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: #c2c2c2;
  line-height: 1.6;
}

@media (max-width: 768px) {
    .process-title {
        font-size: 32px;
    }
}

/* BANNER CTA */

#contato {
  background: radial-gradient(
    circle at top,
    #1f1f1f 0%,
    #181818 50%
  );
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  margin: auto;
  max-width: 900px;
  background: linear-gradient(
    180deg,
    #0f0f0f,
    #050505
  );
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  border: 1px solid #222;
}

.contact-card h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.contact-card .description {
  color: #bdbdbd;
  font-size: 1rem;
  margin-bottom: 30px;
}

.helper-text {
  display: block;
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 14px;
}

.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.email-form input {
  width: 100%;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px; 
  border: 1px solid #2a2a2a;
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.email-form input::placeholder {
  color: #666;
}

.email-form button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #3a3a3a, #1f1f1f);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.email-form button:hover {
  transform: translateX(2px);
  background: linear-gradient(135deg, #555, #2a2a2a);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}

.divider span {
  color: #bbb;
  font-size: 1rem;
}

@media (max-width: 425px) {
    .contact-card {
        padding: 60px 20px;
    }
    .contact-card h2 {
        font-size: 1.8rem;
    }
}


/* FOOTER */

.footer-site {
  background: linear-gradient(
    135deg,
    #050505,
    #131313 40%,
    #141414
  );
  color: #ffffff;
  padding: 64px 0 24px;
  border: 1px solid rgba(121, 121, 121, 0.55);
  margin:20px;
  border-radius: 20px;
}


.footer-logo {
  max-width: 180px;
}

.footer-title {
  font-size: 24px;
  font-weight: b00;
  margin-bottom: 16px;
  color: #dddcdc; 
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #cccccc;
  padding: 7px 0;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #7a7a7a;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  justify-content: space-between;
  gap: 12px;

  font-size: 15px;
  color: #999999;
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
}
.footer-bottom a:hover {
    text-decoration: none;
    color: inherit;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}



.footer-social a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);

  color: #bdbdbd;
  transition: all 0.25s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
    footer .logo-col {
        padding-bottom: 50px;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    footer .links-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    }
    footer .row {
        gap: 20px;
    }
    .footer-links li,
    .footer-contact li {
    font-size: 14px;
    }
    .footer-contact svg {
        display: none;
    }
    footer .footer-bottom {
        flex-direction: column;
        font-size: 13px;
    }
}



.whatsapp-float.premium {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;

  background: linear-gradient(145deg, #2fe97d, #1fae5a);
  padding: 12px 16px;
  border-radius: 999px;

  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);

  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float.premium img {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

/* Balão de texto */
.whatsapp-bubble {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}

/* Hover */
.whatsapp-float.premium:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Animação sutil */
@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.25),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.whatsapp-float {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .whatsapp-bubble {
    display: none;
  }

  .whatsapp-float.premium {
    padding: 14px;
    border-radius: 50%;
  }
}
