/* Base Styles */
body, html {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(231, 231, 231));
    color: #fff;
}


/* 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: #074b26;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 70px;
}

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: linear-gradient(to right,  #023f49, #002d35);    
    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;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
/* Estilo normal do link */
nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
}

/* Estilo para o item ativo */
nav ul li a.active {
    color: #ffffff;
    font-weight: bold; /* Opcional: destaca o item ativo */
    background-color: #edb200;
    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: #005452;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    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('imagem/fundo_gren.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: 10vw; /* Um pouco maior em telas bem pequenas */
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;    }
}


/* 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.552);
}

/* Camada azul transparente */
#particles-js::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 4, 23, 0.356);
    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;
}
/* Telefonia */


.hero-telefonia {
  position: relative;
  width: 100%;
  min-height: 300px;   /* altura mínima */
  height: 60vh;        /* altura proporcional para desktop */
  background: url('imagem/ligacao_voip.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}
/* 🔹 Garante que nada ultrapasse a tela */
.hero-telefonia,
.hero-telefonia * {
  max-width: 100%;
  box-sizing: border-box;
}

/* 🔹 Remove qualquer overflow lateral */
body, html {
  overflow-x: hidden;
}

/* 🔹 Ajuste no botão para não sair para fora */
.btn-whatsapp {
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

/* Overlay para contraste */
.hero-telefonia::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
  padding: 0 15px;
}

.hero-content h3 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: -40px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
    margin-bottom: -20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Botão */
.btn-whatsapp {
  background: #ff9800;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s ease;
}
.btn-whatsapp:hover {
  background: #e68900;
}

@media (max-width: 768px) {
  .hero-telefonia {
    width: 100vw;        /* força largura exata da tela */
    height: auto;
    padding: 40px 15px;  /* dá espaço sem forçar rolagem */
  }
  .hero-content {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    word-break: break-word;
  }

  .hero-content h3 {
margin-bottom: -15px;
  }
}


/* Telefonia */

/* Estilização da seção de planos */
/* Container geral */
.planos-modernos {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 19px;
  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;
}

/* Estilo base dos cards */
.plano-box {
  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;
  color: #fff;
  transition: transform 0.3s ease;
}
.plano-box:hover {
  transform: scale(1.05);
}

/* ✅ Gradientes para cada plano */
.plano-box.turbo {
  background: linear-gradient(to right, #232323, #818184); 
  width: 280px;
}
.plano-box.plus {
  background: linear-gradient(to right, #2a2a2a, #161616); 
    width: 280px;

}
.plano-box.elite {
  background: linear-gradient(to right, #000000, #2f2f2f); 
    width: 280px;

}


.plano-box.super{
  background: linear-gradient(to right, #000000, #020207); 
    width: 280px;

}
/* Adicione também um gradiente exclusivo para o Básico */
.plano-box.basico {
  background: linear-gradient(to right, #737373, #afafaf); 
    width: 280px;

}

/* Textos */
.plano-title {
  font-size: 32px;
  margin-bottom: 10px;
}
.plano-beneficio {
  font-weight: bold;
}
.plano-detalhes {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 10px 0;
}
.plano-detalhes li {
  margin: 5px 0;
}
.plano-preco {
  font-size: 24px;
  margin: 10px 0;
}

/* Botão */
.btn-contratar {
  background-color: #00ff33;
  color: #080808;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-contratar:hover {
  background-color: #090101;
  color: white;
}

.vantagens {
    padding: 40px 20px;
    background: linear-gradient(to right, rgb(2, 128, 125), #002d35);    
}

.vantagens h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #171717;
}

.vantagens p {
    font-size: 16px;
    color: #ffffff;
    margin-top: -8px;
}

h3{
    color: rgb(255, 255, 255);
}

.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;
}
.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: #fff9f9;
    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: 14px;
    color: #000;
    margin-top: -10px;
}

.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: linear-gradient(to right, rgb(0, 59, 70), rgb(3, 9, 40)); 
    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;
  
  }

  a{
    text-decoration: none;
  }
  
  .card {
    background: linear-gradient(to right, rgb(0, 153, 150), #002d35);    
    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: #26a2cb;
    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: 188px;
    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(0, 153, 150), #002d35);    
    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;

  }
  
  .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: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-sobre:hover {
    background-color: #00e736;
    color: #fff;
  }
  
  .imagem-sobre {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .imagem-sobre img {
    max-width: 110%;
  }
  

/* 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,
        rgba(3, 1, 93, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(2, 3, 103, 0.7) 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: 80px;
      }
    .conteudo {
        width: 95%;
        padding: 1rem;
        
    }
    
    .botao {
        padding: 0.6rem 1.5rem;
    }
    .conteudo p{
        margin-top: -18px;

    }
    .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: linear-gradient(to right,  #023f49, #002d35);    
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 40px 20px; /* Adiciona padding lateral para mobile */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alterado para alinhar no topo */
    gap: 20px; /* Espaçamento entre as seções */
}

.left-section {
    text-align: left;
    flex: 1; /* Ocupa espaço disponível */
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px; /* Reduz margem inferior */
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.right-section {
    text-align: left;
    flex: 1; /* Ocupa espaço disponível */
}

.right-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.icon {
    font-size: 15px;
    margin-right: 10px;
}

.location::before {
    content: "\f041"; /* Ícone de localização */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
}

.phone::before {
    content: "\f095"; /* Ícone de telefone */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
}

.email::before {
    content: "\f0e0"; /* Ícone de e-mail */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fdfdff;
}

hr {
    border: none;
    height: 1px;
    background-color: #ffffff;
    margin: 20px 0;
}

.copyright {
    display: flex;
    justify-content: space-between; /* Distribui os elementos */
    align-items: center;
    flex-wrap: wrap; /* Permite quebra de linha em telas pequenas */
    gap: 10px; /* Espaçamento entre os elementos */
    margin-top: 20px;
}

.copyright p {
    font-size: 12px;
    margin: 0; /* Remove margens desnecessárias */
}

.agency {
    font-size: 14px;
    color: #ffffff;
}
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #1e1e1e;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
  }
  
  .cookie-consent p {
    margin: 0;
    text-align: center;
    font-size: 14px;
  }
  
  .cookie-consent a {
    color: #4fc3f7;
    text-decoration: underline;
  }
  
  .cookie-consent button {
    background-color: #4fc3f7;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-right: 70px;
  }
  
  .cookie-consent button:hover {
    background-color: #03a9f4;
  }
  

  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    animation: bounce 2s infinite;
  }
  
  .whatsapp-btn img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Efeito pulando */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @media (min-width: 600px) {
    .cookie-consent {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .cookie-consent p {
      text-align: left;
      font-size: 16px;
    }
  }

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Muda para layout de coluna */
        align-items: center; /* Centraliza os elementos */
        text-align: center; /* Centraliza o texto */
    }

.mundo{
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
    .left-section,
    .right-section {
        text-align: center; /* Centraliza o texto nas seções */
        flex: none; /* Remove o crescimento automático */
    }

    .logo {
        width: 250px; /* Reduz o tamanho do logo */
    }


    .social-icons {
        justify-content: center; /* Centraliza os ícones sociais */
    }

    .right-section h3 {
        font-size: 18px; /* Reduz o tamanho do título */
    }

    .contact-info {
        flex-direction: column; /* Coloca informações de contato em coluna */
        align-items: center; /* Centraliza os itens */
    }

    .icon {
        font-size: 20px; /* Reduz o tamanho dos ícones */
    }

    .copyright {
        flex-direction: column; /* Coloca o copyright em coluna */
        gap: 5px; /* Reduz o espaçamento */
    }
}