/*primeira parte do site*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f2f2;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
 padding: 40px 100px 20px;
  z-index: 1000;
  transition: background 0.3s;
}

header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
}

header.scrolled nav a {
  color: #000;
}

.container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo img {
  height: 65px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 32px;
 
}

nav a {
  color: #000000e1;
  text-decoration: none;
  font-weight: 700;
}

.btn-header {
  background: #cf150e;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

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

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-header img {
  width: 16px;
  height: 16px;
}

.btn-header:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(207, 21, 14, 0.7);
}


.hero {
   height: 80vh;
  background: url("img/capa.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  padding-right: 8%; 
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
 position: relative;
  max-width: 700px;
  text-align: right; 
  color: #000;
  padding-top: 110px;
}


.hero h1 {
  font-size: 55px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero h1 span {
  color: #cf150e;
}

.hero p {
  margin-top: 25px;
  font-size: 18px;
  color: #000000cc;
  max-width: 760px;
  margin-inline: auto;
}



.hero-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: flex-end; 
  gap: 20px;
}


.btn-pulse {
  background: #cf150e;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;

  display: flex;             
  align-items: center;       
  justify-content: center;   
  gap: 8px;                  

  box-shadow: 0 0 15px rgba(255,45,45,0.6);
  animation: glow 1.5s infinite alternate;
  transition: transform 0.1s ease;
}

.btn-pulse img {
  width: 16px;
  height: 16px;
}

.btn-pulse:hover {
  animation: blink 0.6s infinite;
  transform: scale(1.05);
}


@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255,45,45,0.5);
  }
  to {
    box-shadow: 0 0 25px rgba(255,45,45,0.9);
  }
}


@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255,45,45,0.9);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 5px rgba(255,45,45,0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255,45,45,0.9);
  }
}

.btn-green {
  background: #1db954;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.btn-green:hover {
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.8);
  transform: scale(1.05);
}


.btn-green img {
  width: 16px;
  height: 16px;
}


.mouse {
  position: absolute;
  bottom: 18px;              
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}



.mouse span {
  width: 5px;
  height: 10px;
  background: #fff;
  display: block;
  margin: 7px auto;
  border-radius: 5px;
  animation: scroll 1.4s infinite;
}


@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.mobile-text {
  display: none;
}

@media (max-width: 768px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }
}


@media (max-width: 768px) {

 
 header {
    padding: 20px;
    min-height: auto;
    background: transparent;
  }

  header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

  nav {
    display: none;
  }


  .logo {
    position: static;
  }

  .logo img {
    height: 50px;
  }

  .btn-header {
    position: static;
    width: auto;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 25px;
  }


  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  .hero {
    height: 100vh;
    background: url("img/hero-celular-cumulus.png") center/cover no-repeat;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }



  .hero::before {
    border-radius: 0;
  }

 .hero-content {
    margin-bottom: 80px;
    padding-top: 160px; 
    text-align: center;
    max-width: 100%;
  }


  .hero h1 {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 30px; 
}


  .hero p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 80px; 
  font-weight: 550;
}


 .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
  }



  .btn-pulse,
  .btn-green {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

 
  .mouse {
    bottom: 15px;
  }

}

@media (min-width: 769px) and (max-width: 1366px) {

  .hero {
    height: 100vh;
    background: url("img/capa.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 0 8%;
    text-align: right; 
  }

  .hero-content {
    max-width: 600px;
    margin: 0;
    padding-top: 0;
    text-align: right; 
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end; 
    align-items: center;
    gap: 20px;
  }

  .btn-pulse,
  .btn-green {
    width: auto;
    max-width: none;
    padding: 16px 28px;
    font-size: 16px;
  }

}

/*segunda parte*/


.about-section {
  background: #f1f1f1;
  padding: 100px 5%;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 15px 0 20px;
  color: #d11109;
}

.about-description {
  color: #0e0e0e;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;


  background: #d11109;
  border-radius: 12px;

  flex-shrink: 0;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 0 0 rgba(255, 0, 0, 0);
}

.icon-box img {
  width: 30px;
}

.about-features li:hover .icon-box {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  transform: translateY(-2px);
}

.about-features h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #d11109;
}

.about-features p {
  font-size: 14px;
  color: #0e0e0e;
}



.about-btn {
  display: inline-block;
  background: #d11109;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #d1100988;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-checks {
    grid-template-columns: 1fr;
  }

   .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
}

/*serviços*/


.services-section {
  padding: 100px 5%;
 
   background: linear-gradient(
    to bottom,
    #d11710 0%,
    #fa2b23 60%,
    #ff4b45 100%
  );
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.services-header h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
}

.services-header p {
  color: #fff;
  margin-bottom: 60px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start; /* 👈 adiciona isso */
}

.services-section {
  overflow: hidden;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;

  transition: 0.4s;
  box-shadow: 0 0 0 rgba(230, 126, 34, 0);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 247, 239, 0.7);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px 20px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-content.dark {
  background: #fff;
  color: #000;
}

.service-content.orange {
  background: #000;
  color: #fff;
}

.service-btn {
  display: inline-block;
  background: #d11710;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  box-shadow: 0 0 15px rgba(230, 34, 34, 0.8);
}

.services-action {
  margin-top: 60px;
}

.bouton {
  display: inline-block;
  background: #d11710;
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bouton:hover {
  box-shadow: 0 0 25px rgba(230, 34, 34, 0.9);
  transform: translateY(-2px);
}

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

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 26px;
  }

  .services-section {
  padding: 100px 5%;

  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

}

/*aplicações*/


  .beneficios-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficios-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.beneficios-title span {
 background: linear-gradient(
    to bottom,
    #d11710 0%,
    #fa2b23 60%,
    #ff4b45 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.beneficio-card {
  background: linear-gradient(
    to bottom,
    #d11710 0%,
    #fa2b23 60%,
    #ff4b45 100%
  );
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(15, 180, 223, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.6s ease;
}

.beneficio-card img {
  width: 28px;
  height: 28px;
}

.beneficio-card p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 180, 223, 0.25);
}

.reveal-beneficios-title,
.reveal-beneficios-card {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-beneficios-title.show,
.reveal-beneficios-card.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .beneficios-title {
    font-size: 32px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

/*avaliações*/

.avaliacoes {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #d11710 0%,
    #fa2b23 60%,
    #ff4b45 100%
  );
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff; 
}

.avaliacoes h2 {
  font-size: 35px;
  margin-bottom: 40px;
  color: black;
}


.avaliacoes h2 span{
 background: linear-gradient(
    to bottom,
    #d11710 0%,
    #fa2b23 60%,
    #ff4b45 100%
  );
 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.avaliacoes p{
  color: black;
}

.avaliacoes-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.avaliacoes-container {
  position: relative;
}

.avaliacao-item {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fade 0.4s ease;
}

.avaliacao-item.active {
  display: flex;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.avaliacao-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.avaliacao-stars img {
  width: 20px;
}

.avaliacao-item h3 {
  margin: 5px 0;
  color: black;
}

.avaliacao-item span {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.avaliacao-item p {
  max-width: 600px;
  font-size: 16px;
  color: #555;
}

.avaliacao-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #d11710;
}

.avaliacao-btn.prev {
  left: 20px;
}

.avaliacao-btn.next {
  right: 20px;
}

.avaliacao-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.avaliacao-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.avaliacao-dot.active {
  background: #d11710;
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #d11710; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/*linha vermelha*/

.contato-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #cf150f;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contato-item img.contato-img {
  width: 30px;
  height: auto;
}

.contato-item:hover {
  transform: scale(1.05);
  background-color: #ff3b3b;
  color: white;
}

@media (max-width: 768px) {
  .produtos-header p.assistencia {
    font-size: 21px;
  }
  .contatos-header {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .contato-item img.contato-img {
    width: 25px;
  }
  .contato-item {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.animate-text {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-buttons {
  opacity: 1 !important;
  transform: translateY(0) !important;
}



.contato-linha {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 20px;
}

.contato-link img {
  width: 25px;
  height: 25px;
}

.contato-link:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

/*form*/


.cumulus-contato {
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cumulus-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.cumulus-form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cumulus-tag {
  color: #cd0c07;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.cumulus-form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.cumulus-subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.cumulus-form-box input,
.cumulus-form-box select,
.cumulus-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.cumulus-form-box input:focus,
.cumulus-form-box select:focus,
.cumulus-form-box textarea:focus {
  outline: none;
  border-color: #cd0c07;
}

.cumulus-form-box button {
  width: 100%;
  padding: 14px;
  background: #cd0c07;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cumulus-form-box button:hover {
  background: #000;
}

.cumulus-image-box {
  flex: 1;
}

.cumulus-image-box img {
  width: 100%;
  border-radius: 18px;
}

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

  .cumulus-form-box {
    padding: 25px;
  }

  .cumulus-form-box h2 {
    font-size: 26px;
  }

  .cumulus-subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .cumulus-form-box input,
  .cumulus-form-box select,
  .cumulus-form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/*linha vermelha*/

.produtos-header {
  width: 100vw;
  background-color: #cf150f;
  color: white;
  text-align: center;
  padding: 35px 10px;
  overflow: hidden; 
}

.produtos-header p.assistencia {
  font-size: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.contatos-header {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #cf150f;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contato-item img.contato-img {
  width: 30px;
  height: auto;
}

.contato-item:hover {
  transform: scale(1.05);
  background-color: #ff3b3b;
  color: white;
}

@media (max-width: 768px) {
  .produtos-header p.assistencia {
    font-size: 21px;
  }
  .contatos-header {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .contato-item img.contato-img {
    width: 25px;
  }
  .contato-item {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.animate-text {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.animate-buttons {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.contato-linha {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 20px;
}

.contato-link img {
  width: 25px;
  height: 25px;
}

.contato-link:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

/*footer*/


.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contato {
    flex: 1;
    min-width: 280px;
}

.footer-servicos {
    flex: 2;
    min-width: 280px;
}

.footer h3 {
    color: #ccc;
    font-size: 16px;
}

/* LISTA EM COLUNAS */
.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 40px;
}

.lista-servicos li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}

/* TÍTULO CLICÁVEL */
.toggle-servicos {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta {
    display: none;
    transition: transform 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
    }

    .lista-servicos {
        column-count: 1;
        display: none;
    }

    .lista-servicos.ativo {
        display: block;
    }

    .seta {
        display: inline-block;
    }

    .seta.rotacionar {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .espaco-mobile {
        height: 120px;
    }
}

/*seta para cima*/

.botao-seta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.botao-seta img {
    width: 50px;
    height: 50px;
    display: block;
}

.botao-seta:hover {
    transform: scale(1.1);
}

.cumulus-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  animation: cumulusGlow 1.5s infinite alternate;
  z-index: 9999;
  transition: 0.3s;
}

.cumulus-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.cumulus-whatsapp-float:hover {
  transform: scale(1.1);
}

/* EFEITO BRILHANTE ANIMADO */
@keyframes cumulusGlow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6),
                0 0 20px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1),
                0 0 45px rgba(37, 211, 102, 0.8);
  }
}

/* Mobile ajuste */
@media (max-width: 768px) {
  .cumulus-whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 20px;
  }

  .cumulus-whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}