/* Base Styles */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to right, #ffffff, #e7e7e7);
    color: #111;
}
/* Classe base para ocultar elementos inicialmente */
.hidden {
    opacity: 0;
    transform: translateY(20px); /* Move o elemento para baixo */
    transition: all 0.6s ease-out; /* Transição suave */
}

/* Classe para mostrar elementos */
.visible {
    opacity: 1;
    transform: translateY(0); /* Volta o elemento à posição original */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #acacac;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;

}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    line-height: 45px;
    margin-right: 50px
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


/* Estilos básicos */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f3f3f3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none; /* Oculto por defecto en pantallas grandes */
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 120px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
/* Estilo normal do link */
nav ul li a {
    text-decoration: none;
    color: #191919;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #cf8300;
}

/* Estilo para o item ativo */
nav ul li a.active {
    color: #ffffff;
    font-weight: bold; /* Opcional: destaca o item ativo */
    background-color: #051a67;
    border-radius: 10px;
    padding: 5px;;
}


/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Mostrar el botón hamburguesa */
    }

    nav ul {
        display: none; /* Ocultar el menú por defecto */
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    nav ul.active {
        display: flex; /* Mostrar el menú cuando esté activo */
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}

#particles-js {
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('img/TECHMU.jpg'); /* Aqui usamos a imagem enviada */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Overlay de texto sobre as partículas */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

/* Estilo do título */

#typing-text {
    font-size: 6vw; /* Escala com o tamanho da tela */
    color: white;
    white-space: normal;
    overflow: hidden;
    border-right: 3px solid white;
    animation: blink 0.7s infinite;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Ajuste extra para telas muito pequenas */
@media (max-width: 480px) {
    #typing-text {
        font-size: 7vw; /* Um pouco maior em telas bem pequenas */
    }
}


/* Estilo do parágrafo */
.text-overlay p {
    font-size: 1.5em;
    line-height: 1.2;
    max-width: 80%;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Camada azul transparente */
#particles-js::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(34, 1, 1, 0.407);
    z-index: 1;
    pointer-events: none;
}


/* Texto dentro da imagem inicial */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
}

/* Ajuste para as seções começarem após a imagem */
section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Estado inicial fora da tela */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.fade-in.active {
  opacity: 1;
}



/* Estilização da seção de planos */
.planos-modernos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(231, 231, 231));
  }

  .titulo_planos{
    color: #000000;
    text-align: center;
    font-size: 50px;
    margin-top: -10px;
    margin-bottom: -2px;
  }
  
  .plano-box {
    background: linear-gradient(to right, rgb(142, 24, 4), rgb(210, 1, 1));
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 270px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }  
  .plano-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
  }

     .plano-detalhes {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 10px 0;
  }
  
  .plano-detalhes li {
    margin: 5px 0;
    color: #ffffff;
  }
  
  .plano-preco {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
  }
  
  .btn-contratar {
    background-color: #019d20;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn-contratar:hover {
    background-color: #35c554;
  }
  
.vantagens {
    padding: 40px 20px;
    background: linear-gradient(to right, rgb(253, 18, 18), rgb(90, 5, 5));
}

.vantagens h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #171717;
}

.vantagens p {
    font-size: 16px;
    color: #ffffff;
    margin-top: -8px;
}

h3{
    color: rgb(0, 0, 0);
}

.vantagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Modal Zoom */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-conteudo {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsivo */
.vantagem {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.vantagem:hover {
    transform: scale(1.05);
}
.vantagem img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.vantagemh4{
  color: #ffffff;
    text-align: center;
    font-size: 40px;
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.vantagem h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.vantagem p {
    font-size: 14px;
    color: #030303;
}

.faq-section {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(218, 218, 218));
    margin-top: 0px;
}

  .faq-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .faq-image img {
    width: 320px;
    height: 370px;
    object-fit: cover;
    padding: 10px;
  }
  
  .faq-text h4 {
    color: #0e094d;
    font-weight: bold;
    margin-top: -60px;
  }
  
  .faq-text h2 {
    color: #181818;
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  .faq-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #323232;
  }
  
  .btn {
    background-color: #7f0c0c;
    color: rgb(255, 255, 255);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
  }

  .autoatendimento {
    margin-top: 3rem;
  }
  
  .autoatendimento h2 {
    color: #272727;
    font-size: 1.5rem;
  }
  
  .autoatendimento p {
    color: #2e2e2e;
    margin-bottom: 2rem;
  }

  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .card {
    background-color: #9f0b0b;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    width: 200px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card img {
    width: 70px;
    margin-bottom: 0.2rem;
  }
  
  .card span {
    display: block;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Responsivo */
  @media (min-width: 768px) {
    .faq-top {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-align: left;
    }

    .faq-text {
      max-width: 400px;
      margin-left: 2rem;
    }
  }

/* 🔹 Responsividade para telas menores (celulares) */
@media screen and (max-width: 768px) {
    .vantagens-container {
        flex-direction: column;
        align-items: center;
    }

    .vantagem {
        width: 90%;
        max-width: 320px;
    }
}

#streamings {
    padding: 60px 20px;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(231, 231, 231));
    text-align: center;
  }
  
.filmes_txt{
    color: black;
text-align: center;
font-weight: bold;
 }

  .titulo_streamings {
    font-size: 28px;
    color: #0e176f;
    margin-bottom: 10px;
    margin-top: -50px;
  }
  
  .streaming-card {
    background: #ebbd05;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 20px;
  }

  .logo-topo img {
    max-width: 100px;
    margin: 20px auto 10px;
  }
  
  .imagem-destaque img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .descricao-curta {
    padding: 15px;
    font-size: 14px;
    color: #101010;
  }
  
  .descricao-curta p {
    margin: 0;
    line-height: 1.5;
    max-height: 4.5em; /* limita 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Swiper config */
  .swiper {
    padding: 20px 0;
  }
  
  .swiper-slide {
    width: 300px;
    height: 100%;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #442b9d;
  }
  
  .sobre-nos {
    padding: 60px 20px;
    background: linear-gradient(to right, rgb(126, 2, 2), rgb(66, 1, 1));
    border-radius: 50px;
  }
  
  .container-sobre {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .texto-sobre {
    flex: 1 1 500px;
  }
  
  .mundo{
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #ffffff;
  }
  
  .texto-sobre p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
  }
  
  .btn-sobre {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    color: #ffbf00;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-sobre:hover {
    background-color: #000000;
    color: #fff;
  }
  
  .imagem-sobre {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .imagem-sobre img {
    max-width: 110%;
  }
  

/* planos rurais */

/* Título */
.titulo_rural {
  text-align: center;
  font-size: 3em;
  margin: 40px 0 20px;
  color: #ffffff;
  font-family: unset;
  margin-top: -20px;
  z-index: 1;
}

/* Seção com fundo em tela cheia */
.planos-rurais {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 150px 5px;
  background-image: url('/img/rural.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  margin-bottom: -49px;
  margin-top: -50px;
}

/* Overlay escurecendo o fundo */
.planos-rurais::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Caixas dos planos */
.plano-rural {
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, rgb(182, 2, 2), rgb(66, 1, 1));
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  max-width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.plano-rural:hover {
  transform: translateY(-5px);
}

.plano-rural h3 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

.plano-rural ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  color: #ffffff;
}

.plano-rural .preco {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #ffffff;
}

.plano-rural .btn-rural {
  background-color: #00c20a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plano-rural .btn-rural:hover {
  background-color: #000000;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .titulo_rural {
    font-size: 2em;
    padding: 0 10px;
  }

  .planos-rurais {
    flex-direction: column;
    align-items: center;
    padding: 60px 10px;
  }

  .plano-rural {
    width: 70%;
  }
}



/* Estilo Moderno para Carrossel */
.carrossel-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carrossel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Proporção widescreen */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.imagem-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.imagem-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgb(2, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(12, 1, 1, 0.834) 100%
    );
    z-index: 1;
}

.conteudo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.conteudo h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.conteudo p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
    line-height: 1.6;
    margin-top: -25px;
}

.botao {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.botao:hover {
    background: linear-gradient(135deg, #FF8C00, #FF7700);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Efeito de transição entre slides */
.slide:not(.active) {
    transform: scale(0.95);
}

/* Responsividade */
@media (max-width: 992px) {
    .carrossel {
        aspect-ratio: 3/2;
    }
    
    .conteudo {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carrossel {
        aspect-ratio: 1/1;
    }
    
    .autoatendimento h2 {
       margin-top: 50px;
      }
    .conteudo {
        width: 95%;
        padding: 1rem;
        
    }
    
    .botao {
        padding: 0.6rem 1.5rem;
    }

    .conteudo p{
        margin-top: 10px;

    }

    .sobre-nos {
      margin-bottom: -50px;
    }    
}

@media (max-width: 480px) {
    .carrossel {
        aspect-ratio: 2/3;
    }
    
    
    .conteudo h2 {
        font-size: 1.5rem;
    }
    
    .conteudo p {
        font-size: 0.9rem;
    }
}

/* Estilos base */

#footer{
    background: #f3f3f3;
    padding: 60px 8%;
    font-family: Arial, sans-serif;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* LOGO */
.footer-left{
    flex: 1;
    min-width: 250px;
}

.footer-logo{
    width: 260px;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-text{
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    max-width: 400px;
}

/* REDES */
.social-icons{
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a{
    width: 45px;
    height: 45px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover{
    transform: translateY(-5px);
}

.social-icons img{
    width: 22px;
}

/* CONTATOS */
.footer-center{
    flex: 1;
    min-width: 280px;
}

.footer-center h3{
    font-size: 36px;
    margin-bottom: 30px;
    color: #111;
}

.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: #444;
    font-size: 18px;
    line-height: 1.5;
}

/* MASCOTE */
.footer-mascot{
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 220px;
}

.footer-mascot img{
    width: 220px;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* ANIMAÇÃO */
@keyframes float{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* RODAPÉ */
.footer-bottom{
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p{
    color: #666;
    font-size: 14px;
}

.jlweb{
    text-decoration: none;
    color: #111;
    font-size: 14px;
    transition: 0.3s;
    font-weight: bold;
}

.jlweb:hover{
    color: #27aa03;
}

/* RESPONSIVO */
@media(max-width: 900px){

    .footer-container{
        flex-direction: column;
        text-align: center;
    }

    .footer-text{
        margin: auto;
    }

    .social-icons{
        justify-content: center;
    }

    .contact-item{
        justify-content: center;
        text-align: left;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
    }

    .footer-mascot img{
        width: 170px;
    }

    .footer-center h3{
        font-size: 28px;
    }

}

/*footer*/
#footer {
    background: #fff;
    padding: 80px 10% 25px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    width: 380px;
    max-width: 100%;
    margin-bottom: 25px;
}

.footer-text {
    max-width: 380px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.social-icons a {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #ffffff;
}

.social-icons img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.footer-right h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 35px;
}

.contact-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}

.contact-info p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.anatel-logo {
    width: 220px;
    max-width: 100%;
    margin-top: 35px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 11px;
    color: #555;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #01a039;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-box {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

.whatsapp-message {
    display: none;
    position: relative;
    background: #fff;
    padding: 15px 40px 15px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.18);
    max-width: 340px;
    animation: fadeIn 0.4s ease;
}

.whatsapp-message p {
    margin: 0;
    color: #333;
    font-size: 18px;
    line-height: 1.4;
}

.close-whatsapp {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 10px;
    color: #999;
    cursor: pointer;
}

.whatsapp-button {
    width: 40px;
    height: 40px;
    background: #20d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button img {
    width: 29px;
    height: 29px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */

@media (max-width: 900px) {
    #footer {
        padding: 60px 6% 25px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 45px;
    }

    .footer-text {
        margin: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info {
        text-align: left;
    }

    .footer-right h3 {
        font-size: 30px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .whatsapp-box {
        right: 12px;
        bottom: 15px;
    }

    .whatsapp-message {
        max-width: 260px;
        padding: 13px 35px 13px 15px;
    }

    .whatsapp-message p {
        font-size: 14px;
    }

    .whatsapp-button {
        width: 58px;
        height: 58px;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

.footer-mascot{
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.footer-mascot img{
    width: 120px;
    max-width: 100%;
    animation: mascotFloat 3s ease-in-out infinite;
}


@media(max-width: 900px){

    .footer-mascot{
        justify-content: center;
    }

    .footer-mascot img{
        width: 90px;
    }

}

/* SPLASH SCREEN MOBILE efeito carregamento mobile */
#mobile-loader {
    display: none;
}

@media (max-width: 768px) {

    #mobile-loader {
        position: fixed;
        inset: 0;
  background: linear-gradient(135deg, #fefdff, #cfcfcf);
        z-index: 999999;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity 0.6s ease;
    }

    #mobile-loader img {
        width: 380px;
        animation: zoomLogo 1.2s ease;
    }

    @keyframes zoomLogo {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}
/* SPLASH SCREEN MOBILE efeito carregamento mobile */
