/*
  =========================================================
  ii9Telecom — FOLHA DE ESTILO OFICIAL (CORRIGIDA)
  Refatoração: Manus AI
  Data: 01/03/2026
  =========================================================
*/

/* 0. VARIÁVEIS E BASE */
:root {
  --primary-dark: #0b2a4a;
  --primary-blue: #0f4c81;
  --primary-light: #1366b1;
  --accent-blue: #00e0ff;
  --whatsapp-green: #25d366;
  --text-dark: #0a2a66;
  --bg-light: #f3f8ff;
  --white: #ffffff;
  --font-main: 'Montzart', Arial, sans-serif;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 22px rgba(15,76,129,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@font-face {
  font-family: 'Montzart';
  src: url('/dist/public/fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* 1. HEADER TOP */
.header-top {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-blue));
  color: var(--white);
  font-size: 13px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info, .social-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-info span, .social-info span, .social-icons a {
  display: flex;
  align-items: center;
  gap: 6px;
}

#login a {
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}

#login a:hover {
  background: rgba(255,255,255,0.25);
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  justify-content: center;
}

.social-icons a:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

/* 2. NAVIGATION */
nav {
  background-color: var(--white);
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo1 {
  height: 65px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
}

nav ul li a:hover {
  color: var(--primary-light);
}

/* Dropdown */
#suporte {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: var(--shadow-md);
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  z-index: 100;
}

#suporte:hover .dropdown {
  display: block;
}

.dropdown li {
  padding: 0;
}

.dropdown li a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.dropdown li a:hover {
  background-color: var(--bg-light);
}

/* Central do Assinante */
.subscriber-button {
  background-color: var(--primary-blue);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subscriber-button:hover {
  background-color: var(--primary-light);
  transform: scale(1.03);
}

/* 3. HERO SECTION */
.hero-pro {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: var(--white);
  background: linear-gradient(rgba(11,42,74,0.8), rgba(15,76,129,0.85)), 
              url('/dist/public/img/Bannerii9.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,224,255,0.1), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-content-pro {
  max-width: 850px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-pro h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-pro h1 span {
  color: var(--accent-blue);
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

.hero-buttons-pro {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-whats-pro {
  background-color: var(--whatsapp-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.btn-planos-pro {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
}

.btn-planos-pro:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.hero-proof {
  font-size: 14px;
  opacity: 0.85;
}

/* 4. GATILHOS RÁPIDOS */
.gatilhos-rapidos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.gatilho-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary-blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,76,129,0.1);
}

.gatilho-item i {
  color: var(--accent-blue);
  font-size: 20px;
}

/* 5. PLANOS (INFO BOX) - NOVO DESIGN */
:root {
  --card-blue: #0080ff;
  --card-yellow: #ffc107;
  --text-card-dark: #333;
  --text-card-light: #fff;
  --shadow-card: 0 10px 20px rgba(0,0,0,0.15);
}

#planos {
  padding: 60px 20px;
  background-color: var(--white);
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: start; /* Alinha os cards pelo topo */
}

.info-box {
  position: relative;
  width: 100%;
  height: auto; /* Altura ajustável */
  min-height: 250px;
  background-color: var(--card-blue);
  border-radius: 20px;
  color: var(--text-card-light);
  text-align: center;
  padding: 25px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.info-box h3 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.preco-container {
  display: block;
  margin: 10px 0;
}

.info-box .preco-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  vertical-align: super;
}

.info-box .preco-valor {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.info-box .preco-decimal {
  font-size: 20px;
  vertical-align: super;
}

.info-box .preco-unidade {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

.info-box.destaque {
  background-color: var(--card-yellow);
  color: var(--text-card-dark);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding: 35px 25px; /* Aumenta o padding para o destaque */
  min-height: 280px; /* Aumenta a altura mínima */
}

.info-box.destaque h3,
.info-box.destaque p,
.info-box.destaque .preco-label,
.info-box.destaque .preco-valor,
.info-box.destaque .preco-decimal,
.info-box.destaque .preco-unidade {
  color: var(--text-card-dark);
}

.info-box.destaque .badge-destaque {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff0000; /* Cor do badge "Mais Contratado" */
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.info-box.destaque .badge-destaque::before {
  content: "⭐ ";
}

.info-box .subscribe-button {
  background-color: var(--white);
  color: var(--card-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 15px;
}

.info-box.destaque .subscribe-button {
  background-color: var(--primary-blue);
  color: var(--white);
}

.info-box .subscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Responsividade para os cards de planos */
@media (max-width: 768px) {
  .info-container {
    grid-template-columns: 1fr;
  }
  .info-box {
    max-width: 300px;
    margin: 0 auto;
  }
  .info-box.destaque {
    transform: scale(1);
  }
}

/* 6. ESCRITÓRIO */
.escritorio {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.escritorio-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.escritorio-imagem, .escritorio-texto {
  flex: 1;
  min-width: 320px;
}

.escritorio-imagem img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.escritorio-texto h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.escritorio-texto h3 {
  color: var(--primary-light);
  margin-bottom: 20px;
}

.frase-impacto {
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary-blue);
}

.bloco-endereco {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
}

.btn-mapa, .btn-visitar {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 15px;
}

.btn-mapa {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-visitar {
  background-color: var(--whatsapp-green);
  color: var(--white);
}

/* 7. WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* 8. RESPONSIVIDADE */
@media (max-width: 992px) {
  nav {
    padding: 15px 20px;
  }
  
  nav ul {
    display: none; /* Menu hambúrguer seria necessário aqui para mobile real */
  }
  
  .hero-pro h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    justify-content: center;
    text-align: center;
  }
  
  .hero-pro {
    min-height: 450px;
    padding: 60px 20px;
  }
  
  .hero-pro h1 {
    font-size: 2rem;
  }
  
  .hero-buttons-pro {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-whats-pro, .btn-planos-pro {
    width: 100%;
    max-width: 300px;
  }
  
  .gatilhos-rapidos {
    gap: 15px;
  }
  
  .gatilho-item {
    width: 100%;
    justify-content: center;
  }
  
  .escritorio-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .info-box {
    width: 100%;
    max-width: 280px;
  }
  
  .header-top {
    display: none; /* Esconde info extra em telas muito pequenas */
  }
}

/* 9. ÁREAS DE ATENDIMENTO & SOBRE */
#areas-atendimento, #sobre {
  padding: 80px 20px;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.texto-sobre {
  flex: 1.2;
  min-width: 320px;
}

.titulo-quem-somos {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.subtitulo-sobre {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.texto {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.botao-saiba-mais {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  transition: var(--transition);
}

.botao-saiba-mais:hover {
  background-color: var(--primary-light);
  transform: translateX(5px);
}

/* Lista de Bairros */
.lista-bairros {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 25px;
}

.bairro {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  border-left: 4px solid var(--accent-blue);
}

.icon-local::before {
  content: "📍";
}

/* 10. FAIXA DE CONTATO & ACESSO RÁPIDO */
.faixa {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 20px;
}

.faixa .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.texto-container {
  flex: 1;
  min-width: 280px;
}

.texto-container .logo {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.texto1 {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.acesso-rapido, .contato-rapido {
  flex: 0.5;
  min-width: 200px;
}

.titulo-acesso, .titulo-contato {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-blue);
  text-transform: uppercase;
}

.acesso-rapido p {
  margin-bottom: 10px;
}

.acesso-rapido a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.acesso-rapido a:hover {
  opacity: 1;
  color: var(--accent-blue);
}

.botoes-contato {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-whatsapp, .btn-telefone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--white);
}

.btn-telefone {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* 11. FOOTER */
footer {
  background-color: #051529;
  color: rgba(255,255,255,0.5);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
  font-size: 13px;
}

footer .destaque {
  color: var(--accent-blue);
  font-weight: 700;
}

footer img {
  height: 25px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

footer img:hover {
  opacity: 1;
}

/* Ajustes Finais de Responsividade para as novas seções */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }
  
  .lista-bairros {
    grid-template-columns: 1fr;
  }
  
  .faixa .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .botoes-contato {
    width: 100%;
    max-width: 300px;
  }
}