

/* Reset bÃ¡sico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo', sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* ===============================
   NAVBAR PC FOX TELECOM
   =============================== */

/* ===============================
   BLOCO 1: BotÃ£o Mobile Toggle
   =============================== */
.mobile-menu-toggle {
  display: none;       /* Escondido no desktop */
  font-size: 1.5rem;   /* Tamanho do Ã­cone */
  cursor: pointer;     /* Cursor de clique */
  color: #333;         /* Cor do Ã­cone */
}
/* FIM BLOCO 1 */

/* ===============================
   BLOCO 2: Menu Desktop
   =============================== */
.main-nav ul {
  display: flex;       /* Layout horizontal no desktop */
  gap: 25px;           /* EspaÃ§amento entre itens */
  margin-right: 30px;  /* Margem direita */
  list-style: none;    /* Remove bullets */
}

.main-nav a {
  color: #333;         /* Cor do link */
  font-weight: 600;    /* Negrito mÃ©dio */
  position: relative;  /* Para underline animado */
  padding: 5px 0;      /* EspaÃ§amento vertical */
  text-decoration: none;
  transition: all 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4305; /* Cor do underline */
  transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;          /* Underline completo no hover ou ativo */
}

.main-nav a:hover,
.main-nav a.active {
  color: #0b0b0bff;       /* Cor do link ativo/hover */
  
}
/* FIM BLOCO 2 */

/* ===============================
   BLOCO 3: Menu Mobile (responsivo)
   =============================== */
@media (max-width: 768px) {

  /* Navbar escondida por padrÃ£o */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;             /* Logo + top bar */
    right: 0;
    width: 100%;
    background: #ff6600;
    flex-direction: column;
    padding: 20px 0;
    z-index: 999;
  }

  /* Navbar ativa ao clicar no botÃ£o */
  .main-nav.active {
    display: flex;
  }

  /* Lista vertical */
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
  }

  /* Links centralizados e em branco */
  .main-nav a {
    color: #fff;
    text-align: center;
    padding: 10px 20px;
  }

  /* Exibe o botÃ£o mobile */
  .mobile-menu-toggle {
    display: block;
  }

  /* Ajuste container para flexbox */
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Para menu absoluto funcionar */
  }
}
/* FIM BLOCO 3 */


/* ===== HEADER MODERNO ===== */
a {
  text-decoration: none; /* Remove o sublinhado */
  outline: none; /* Remove a borda de foco */
}

/* Para garantir em todos os estados */
a:focus, a:active, a:hover {
  outline: none;
  text-decoration: none;
}

.header-moderno {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: #333;
  color: #fff;
  padding: 8px 0;
  font-size: 0.9rem;
  
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
}

.top-contato {
  display: flex;
  gap: 20px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contato-item i {
  color: #ff4305;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon {
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #ff4305;
  transform: translateY(-2px);
}

.btn-cliente {
  background: #ff4305;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-cliente:hover {
  background: #e03a04;
  transform: translateY(-2px);
}

/* Main Header */
.main-header {
  padding: 15px 0;
}

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

.logo {
  height: 50px;
  width: auto;
}
/* Adicione isso no seu CSS */
.logo-container h1 {
  color: #ff4305;
  font-size: 2.5rem; /* Mesmo tamanho do hero */
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);

  margin-left: 30px;
}

.logo-container h1 span {
  color: #ff4305;
  font-weight: 700;
  
}
/*o logo como imagem em alguns casos */
.logo-container .logo-text {
  display: inline-block;
}


/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

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

.hero-content {
  max-width: 600px;

  margin-left:80px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content h1 span {
  color: #ff4305;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-hero {
  background: #ff4305;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}

.btn-hero:hover {
  background: #e03a04;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image {
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.hero-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.hero-prev, .hero-next {
  background: rgba(255,255,255,0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.hero-prev:hover, .hero-next:hover {
  background: #ff4305;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active {
  background: #ff4305;
}

/* Responsivo */
@media (max-width: 992px) {
  .hero-slide .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 30px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .top-contato {
    display: none;
  }
  
  .top-social {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 10px 20px;
  }
}

/* ===== PLANOS URBANOS ===== */
.planos {
  background-color: #f8f8f8; /* Fundo cinza claro */
  padding: 60px 0;
}

.planos .section-title {
  color: #ff4305; /* Laranja PC Fox */
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.planos .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ff4305;
  margin: 15px auto 0;
}

.planos .plano-grupo {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.planos .plano {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #ff4305;
}

.planos .plano:hover {
  transform: translateY(-10px);
}

.planos .plano-destaque {
  transform: scale(1.05);
  z-index: 1;
}

.planos .plano-destaque:hover {
  transform: scale(1.05) translateY(-10px);
}

.planos .plano-header {
  text-align: center;
  margin-bottom: 20px;
}

.planos .plano-header img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.planos .plano h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.planos .plano-body {
  margin-bottom: 25px;
}

.planos .velocidade {
  color: #555;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  display: block;
  font-size: 1.5rem;       /* bem grande */
  font-weight: 900;        /* extra negrito */
  color: #ff6600;          /* cor vibrante (pode trocar pela sua cor principal) */
  text-align: center;      /* centralizado */
  margin: 25px 0 15px;     /* espaÃ§amento em cima/baixo */
  letter-spacing: 2px;     /* espaÃ§amento entre letras/nÃºmeros */
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0,0,0,0.25); /* sombra para destacar */
}

.planos .velocidade::before {
  content: '✓';
  color: #ff4305;
  font-weight: bold;
}



.planos .preco {
  color: #333;
  font-size: 1.8rem;
  margin: 20px 0;
  font-weight: bold;
}

.planos .preco strong {
  color: #ff4305;
}

.planos .btn-plano {
  width: 100%;
  padding: 12px;
  background: #ff4305;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.planos .btn-plano:hover {
  background: #e03a04; /* Laranja mais escuro no hover */
}

/* Cores especÃ­ficas para cada plano urbano */
.planos .plano.extreme {
  border-top-color: #ff4305; /* Laranja PC Fox para Extreme */
}

.planos .plano.premium {
  border-top-color: #f29100; /* Amarelo/Laranja para Premium */
}

.planos .plano.turbinado {
  border-top-color: #ff7200; /* Laranja para Turbinado */
}

.planos .plano.decola {
  border-top-color: #ff4305; /* Laranja PC Fox para Decola */
}

/* Responsividade */
@media (max-width: 768px) {
  .planos .plano {
    width: 100%;
    max-width: 350px;
  }
  
  .planos .plano-destaque {
    transform: scale(1);
  }
  
  .planos .plano-destaque:hover {
    transform: translateY(-10px);
  }
  
  .planos .section-title {
    font-size: 1.5rem;
  }
}

/* Substitua todo o bloco do plano premium por este: */

/* Estilo especial para o plano Premium */
.planos .plano.premium {
  border-top-color: #f29100;
  background: linear-gradient(135deg, #fff 0%, #fff 50%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
  animation: pulse 3s infinite;
}

.planos .plano.premium::before {
  content: "POPULAR";
  position: absolute;
  top: 10px;
  right: -30px;
  background: #f29100;
  color: white;
  padding: 3px 30px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.planos .plano.premium .plano-header {
  position: relative;
  z-index: 2;
}

.planos .plano.premium .plano-body {
  position: relative;
  z-index: 2;
}

.planos .plano.premium .btn-plano {
  background: #f29100;
  position: relative;
  z-index: 2;
}

.planos .plano.premium .btn-plano:hover {
  background: #e08600;
}

@keyframes pulse {
  0% { box-shadow: 0 5px 15px rgba(242, 145, 0, 0.3); }
  50% { box-shadow: 0 5px 25px rgba(242, 145, 0, 0.5); }
  100% { box-shadow: 0 5px 15px rgba(242, 145, 0, 0.3); }
}

/* ===== PLANOS RURAIS - ESTILO ATUALIZADO ===== */
.planos-rurais {
  background-color: #f8f8f8; /* Fundo cinza claro */
  padding: 60px 0;
}

.planos-rurais .section-title {
  color: #ff4305; /* Laranja PC Fox */
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.planos-rurais .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ff4305;
  margin: 15px auto 0;
}

.planos-rurais .plano-grupo {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.planos-rurais .plano {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #ff4305;
}

.planos-rurais .plano:hover {
  transform: translateY(-10px);
}

.planos-rurais .plano-header {
  text-align: center;
  margin-bottom: 20px;
}

.planos-rurais .plano-header img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.planos-rurais .plano h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.planos-rurais .plano-body {
  margin-bottom: 25px;
}

.planos-rurais .velocidade {
  color: #555;
  font-size: 1rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.planos-rurais .velocidade::before {
  content: 'âœ“';
  color: #ff4305;
  font-weight: bold;
}

.planos-rurais .preco {
  color: #333;
  font-size: 1.8rem;
  margin: 20px 0;
  font-weight: bold;
}

.planos-rurais .preco strong {
  color: #ff4305;
}

.planos-rurais .btn-plano {
  width: 100%;
  padding: 12px;
  background: #ff4305;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.planos-rurais .btn-plano:hover {
  background: #e03a04; /* Laranja mais escuro no hover */
}

/* Cores especÃ­ficas para cada plano rural */
.planos-rurais .plano.turbinado {
  border-top-color: #f29100; /* Amarelo/Laranja para Turbinado */
}

.planos-rurais .plano.decola {
  border-top-color: #ff7200; /* Laranja para Decola */
}

/* Responsividade */
@media (max-width: 768px) {
  .planos-rurais .plano {
    width: 100%;
    max-width: 350px;
  }
  
  .planos-rurais .section-title {
    font-size: 1.5rem;
  }
}

/* ===== SEÃ‡ÃƒO INCLUSO ===== */
section.incluso {
  background: #ff4305;
  padding: 20px;
  color: #fff;
  text-align: center;
}

section.sobre {
  padding: 30px 10px;
  background: #fff;
  text-align: center;
}

.historia h2 {
  color: #a60515;
  margin-bottom: 15px;
}

section.faq {
  padding: 30px 10px;
  background: #f9f9f9;
}

.faq h2 {
  color: #ff4305;
  margin-bottom: 20px;
}

.pergunta h3 {
  font-size: 1rem;
  color: #a60515;
  margin-bottom: 5px;
}

footer {
  background: #f2f2f2;
  padding: 30px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

footer h3 {
  color: #ff4305;
  margin-bottom: 10px;
}

.contato form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contato input,
.contato textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.contato button {
  padding: 10px;
  background: #ff4305;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.redes a img {
  width: 24px;
  margin: 0 5px;
}

.area-cliente a {
  background: #ff4305;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .plano {
    width: 100%;
  }
  footer {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== SEÃ‡ÃƒO ROTEADORES ===== */
.roteadores {
  background-color: #ff4305; /* Laranja PC Fox */
  padding: 40px 0;
  color: #fff; /* Texto branco */
}

.roteadores .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.roteadores .beneficios-linha {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.roteadores .box-info {
  background-color: rgba(255, 255, 255, 0.9); /* Fundo branco semi-transparente */
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.roteadores .box-info h3 {
  color: #a60515; /* Vermelho escuro */
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.roteadores .box-info p {
  color: #333; /* Texto escuro */
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .roteadores .box-info {
    padding: 20px;
  }
  
  .roteadores .box-info h3 {
    font-size: 1.3rem;
  }
  
  .roteadores .box-info p {
    font-size: 1rem;
  }
}

/* ===============================
   BLOCO: SeÃ§Ã£o Destaques (Raposa + BenefÃ­cios)
   =============================== */
/* Estrutura Principal */
.destaques {
  padding: 60px 0;
  background: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Desktop: Grid com 2 colunas */
.raposa-beneficios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 400px;
}

/* Controle da Imagem */
.raposa-wrapper {
  width: 100%;
}

.raposa-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
}

/* Lista de BenefÃ­cios */
.info-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ff4305; /* detalhe laranja */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p {
  color: #666;
  line-height: 1.5;
}

/* ===============================
   Responsividade Mobile
   =============================== */
@media (max-width: 768px) {
  .raposa-beneficios {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  
  .raposa-wrapper {
    max-width: 300px;
    text-align: center;
  }
  
  .raposa-img {
    width: 100%;
    max-width: 300px;
  }
  
  .info-lista {
    width: 100%;
  }
  
  .info-card {
    padding: 15px;
    border-left-width: 4px;
  }
}
/* FIM BLOCO */


/* SeÃ§Ã£o HistÃ³ria */
.historia {
  background-color: #fff;
  padding: 40px 0;
  margin: 0 auto;
  max-width: 1200px;
}

.historia .container {
  padding: 0 20px;
}

.historia-content {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
}

.historia h2 {
  color: #ff4305;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.historia p {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 576px) {
  .historia-content {
    padding: 20px;
  }
}

/* SeÃ§Ã£o FAQ - Estilo do Print */
.faq {
  background-color: #fff;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Exo', sans-serif;
}

.faq h1 {
  color: #ff4305;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pergunta {
  margin-bottom: 30px;
}

.pergunta h2 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pergunta p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 15px;
}

.pergunta strong {
  color: #ff4305;
  font-weight: 700;
}

/* Estilo para links e contatos */
.pergunta a {
  color: #ff4305;
  text-decoration: none;
  font-weight: 600;
}

.pergunta a:hover {
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .faq {
    padding: 40px 15px;
  }
  
  .faq h1 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .pergunta h2 {
    font-size: 1.1rem;
  }
  
  .pergunta p {
    font-size: 0.95rem;
  }
}
/* Footer - RodapÃ© */
footer {
  background-color: #222;
  color: #fff;
  padding: 50px 20px 30px;
  font-family: 'Exo', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h3 {
  color: #ff4305;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #ff4305;
}

.footer-contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact input,
.footer-contact textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  font-size: 0.9rem;
}

.footer-contact input::placeholder,
.footer-contact textarea::placeholder {
  color: #aaa;
}

.footer-contact button {
  padding: 12px;
  background-color: #ff4305;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-contact button:hover {
  background-color: #e03a04;
}

.footer-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-info .address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-info .address svg {
  fill: #ff4305;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: #ff4305;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.client-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client-area a {
  display: inline-block;
  padding: 15px 25px;
  background-color: #ff4305;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.client-area a:hover {
  background-color: #e03a04;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
  }
  
  .client-area {
    align-items: flex-start;
  }
}
/* ===== COBERTURA COMPACTA ===== */
.cobertura {
  background: #f5f5f5;
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-title {
  color: #333;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff4305;
}

.cobertura-compacta {
  max-width: 700px;
  margin: 0 auto;
}

.cobertura-mapa {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Container dos Bairros */
.bairros-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

/* TÃ­tulo com Linha Laranja */
.bairros-titulo {
  color: #333;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px; /* EspaÃ§o para a linha */
}

.bairros-titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; /* ComeÃ§a da borda esquerda */
  width: 100%; /* Ocupa 100% da largura do .bairros-box */
  height: 2px;
  background: #ff4305; /* Laranja PC Fox */
}

/* Lista de Bairros */
.bairros-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bairros-lista li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bairros-lista li:last-child {
  border-bottom: none;
}

.bairros-lista i {
  color: #ff4305;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .bairros-box {
    padding: 15px;
  }
  .bairros-titulo {
    font-size: 1.1rem;
  }
}
.cobertura-cta {
  text-align: center;
}

.btn-cta {
  background: #ff4305;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #e03a04;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(255, 67, 5, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .bairros-box {
    padding: 15px;
  }
}

/* ===== ESTILO DA SEÃ‡ÃƒO DE BAIRROS ===== */
.bairros-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}



.titulo-linha {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.titulo-linha::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #ff4305;
}

.bairros-lista {
  list-style: none;
  padding: 0;
}

.bairros-lista li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bairros-lista li:last-child {
  border-bottom: none;
}

.bairros-lista i {
  color: #ff4305;
}
/* ===== TÃTULOS DAS SEÃ‡Ã•ES ===== */

/* Estilo BASE para todos os tÃ­tulos de seÃ§Ã£o */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-padding .section-title {
  color: #333;
  font-size: 2rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* Linha decorativa (comum a todos) */
.section-padding .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff4305;
}

/* Estilo ESPECÃFICO para Planos */

.plano:not(:last-child) {
  margin-bottom: 0;
}
.planos .section-title {
  color: #ff4305; /* Cor laranja para planos */
}

/* Estilo ESPECÃFICO para Cobertura */
.cobertura .section-title {
  color: #333; /* Cor padrÃ£o para cobertura */
}

/* ===== SEÃ‡ÃƒO COBERTURA ===== */
.cobertura {
  background-color: #f9f9f9;
}

/* INICIO CSS DIFERENCIAIS */
.diferenciais {
  background: #ff6600;
  padding: 60px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.diferencial-card {
  background: #fff;
  color: #333;
  border: 2px solid #cc5200;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.diferencial-card svg {
  margin-bottom: 15px;
}

.diferencial-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #e65c00;
}

.diferencial-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}
 

/* TITULO CENTRALIZADO */
.section-title {
  display: block;
  width: 100%;        /* ocupa toda a largura do container */
  text-align: center; /* centraliza o texto */
  font-size: 2.2rem;
  margin: 0 auto 50px auto;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.section-title .empresa {
  color: #000000;        /* PC FOX TELECOM em branco */
  font-weight: 900;
}
