* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
  list-style: none;
}

/* Ajuste de Cor Global para combinar com sua logo */
:root {
  --azul-store: #004aad;
  --apple-gray: #1d1d1f;
  --primary-blue: #004aad;
}

.text-primary {
  color: var(--azul-store) !important;
}

.btn-primary {
  background-color: var(--azul-store) !important;
  border: none;
}

/* Garante que o footer não suba se a página tiver pouco conteúdo */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  /* IMPORTANTE: Compensar a altura do header fixo */
  padding-top: 85px;
}

main {
  flex: 1;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 9999;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-logo {
  height: 100px;
  /* Ajustado para não quebrar o header */
  transition: transform 0.3s ease;
}

.img-logo:hover {
  transform: scale(1.05);
}

/* Navegação e Links */
.nav-wrapper {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #1d1d1f;
  /* Cor padrão Apple */
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  position: relative;
  transition: color 0.3s ease;
}

/* Linha animada sob o link */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #004aad;
  /* Sua cor azul */
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #004aad;
}

.nav-link:hover::after {
  width: 100%;
}

/* Botão de Destaque no Menu (CTA) */
.nav-cta {
  text-decoration: none;
  background-color: #004aad;
  /* Sua cor azul */
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
  filter: brightness(1.1);
}

/* Hamburguer Customizado */
.hamburguer {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10000;
}

.hamburguer span {
  width: 28px;
  height: 2px;
  background: #1d1d1f;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Ajuste de Respiro para Header de 150px */
main {
  padding-top: 0;
  background-color: #ffffff;
}

/* Título com Estilo de Grife */
.contact-hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top right, rgba(0, 74, 173, 0.05), transparent);
}

.contact-hero h1 {
  font-size: 3.5rem;
  letter-spacing: -2px;
  color: #1d1d1f;
}

/* Card de Formulário Premium */
.glass-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

/* Inputs Minimalistas */
.form-control-premium {
  border: 1px solid #e5e5e7;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.form-control-premium:focus {
  background: #fff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

/* Botão de Alta Performance */
.btn-send {
  background: var(--primary-blue);
  border: none;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}

/* Ícones de Contato Laterais */
.contact-item-icon {
  width: 56px;
  height: 56px;
  background: #f5f5f7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: 0.3s;
}

.contact-card-sidebar:hover .contact-item-icon {
  background: var(--primary-blue);
  color: white;
}


li a {
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

li a:hover {
  color: #004aad;
  transform: scale(1.15);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2d2d2d;
  padding-top: 60px;
  margin-bottom: 50px;
  position: relative;
}

/* linha azul */
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #2f6df6;
  margin: 12px auto 0;
  border-radius: 2px;
}

.carousel-caption {
  top: 55%;
  left: 15%;
  transform: translateY(-50%);
  text-align: left;
  right: auto;

}



.carousel-caption h2 {
  color: rgb(255, 255, 255);
}

.carousel-item img {
  height: 600px;
  /* altura no desktop */
  object-fit: cover;
  /* mantém proporção e corta excesso */
}



p {
  font-size: 1.2rem;
}

/* Estilo Base do Botão Premium */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 45px;
  background-color: #004aad;
  /* Azul Store Web */
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 17px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Ícone do Botão */
.btn-premium i {
  margin-left: 35px;
  font-size: 1rem;
  transition: transform 0.5s ease;
}

/* Efeito de Brilho Interno (Overlay) */
.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

/* Hover: A Mágica Acontece */
.btn-premium:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.4);
  background-color: #0056c7;
  /* Azul levemente mais claro */
}

.btn-premium:hover::before {
  left: 100%;
  /* O brilho atravessa o botão */
}

.btn-premium:hover i {
  transform: translateX(5px);
  /* Seta dá um "pulo" para a direita */
}

/* Efeito de Clique (Active) */
.btn-premium:active {
  transform: translateY(0) scale(0.98);
}



.button-banner {
  background-color: #004aad;
  color: white;
  padding: 6px 42px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.button-banner:hover {
  background-color: #616161;
  transform: scale(1.05);
}

.section-serviços {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 45px;
  row-gap: 28px;
  padding: 40px;
}



.section-serviços .card {
  width: 100%;
  border: none;
  border-radius: 12px;
  background-color: rgb(233, 233, 233);
  overflow: hidden;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* 🔥 Efeito ao passar o mouse */
.section-serviços .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}


/* Corpo do card */
.section-serviços .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Empurra o botão para o final e mantém o título no topo */
  height: 80%;

}

/* BOTÃO DOS CARDS - ESTADO NORMAL */
.section-serviços .btn-primary {
  background-color: #004aad !important;
  /* Cor sólida Azul Store */
  color: #ffffff !important;
  /* Texto sempre branco */
  border: none !important;
  opacity: 1 !important;
  /* Garante que não haja transparência */
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* BOTÃO DOS CARDS - QUANDO PASSA O MOUSE (HOVER) */
.section-serviços .btn-primary:hover {
  background-color: #10294d !important;
  /* Azul levemente mais escuro */
  transform: translateY(-2px);
  /* Pequeno levante para efeito premium */
  box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.section-serviços .card-text {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  /* FAZ A MÁGICA: preenche o espaço vazio e empurra o botão */
  margin-bottom: 20px;
  /* Espaço entre o texto e o botão */
}

/* Título */
.section-serviços .card-title {
  font-weight: 600;
  margin-bottom: 12px;
}

/* Texto */
.section-serviços .card-text {
  font-size: 14px;
  color: #555;
}

/* Botão personalizado */
.section-serviços .btn {
  background: #004aad;
  border: none;
  border-radius: 5px;
  padding: 7px 55px;
  margin-top: auto;
  /* Empurra o botão para o final do card */
  margin-right: auto;
  /* Garante que o espaço extra fique à direita */
  margin-left: 0;
  /* Alinha totalmente à esquerda */
  border-radius: 8px;
  width: fit-content;
  /* Impede que o botão estique */
  display: inline-block;
  /* Mantém o comportamento de bloco em linha */
  transition: 0.3s;
}


/* NAV */
nav {
  display: flex;
  align-items: center;
}


.footer-premium {
    background-color: #0a0a0b; /* Ajuste para a cor do seu fundo */
    padding: 80px 0 30px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; /* Força a mesma fonte em tudo */
}

/* Títulos das colunas (Navegação, Soluções, Contato) */
.footer-links h5, 
.footer-contact h5 {
    color: #ffffff;
    font-size: 1.1rem; /* Tamanho fixo para o título */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lista de links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7); /* Cor levemente transparente */
    text-decoration: none;
    font-size: 0.95rem; /* TAMANHO PADRÃO DOS LINKS */
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #4595ff; /* Cor de destaque ao passar o mouse */
    padding-left: 5px;
}

/* Texto da marca e descrição */
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* Botão do WhatsApp no Footer */
.footer-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.footer-whatsapp:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Créditos finais */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.hamburguer {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburguer span {
  width: 28px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

.hamburguer.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburguer.active span:nth-child(2) {
  opacity: 0;
}

.hamburguer.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Seção de Impacto de Marketing */
.marketing-impact {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff, #f9f9fb);
  overflow: hidden;
}

.marketing-impact .dot-check {
  width: 10px;
  height: 10px;
  background-color: #004aad;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
}

.image-wrapper-sophisticated {
  position: relative;
  padding: 20px;
}

.image-wrapper-sophisticated img {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  filter: grayscale(20%);
}

.image-wrapper-sophisticated:hover img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #004aad;
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 5px;
}



/* =========================================
   PAGINA DE NOTÍCIAS - STORE WEB
   ========================================= */

/* --- PAGINA DE NOTÍCIAS --- */

.news-hero {
  padding: 100px 0 60px;
  background-color: #ffffff;
}

.text-gradient {
  background: linear-gradient(90deg, #004aad, #2f6df6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grade Bento */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 25px;
  padding-bottom: 80px;
}

/* Card Base */
.news-card {
  background: #fdfdfd;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 74, 173, 0.1);
  border-color: rgba(0, 74, 173, 0.1);
}

/* Notícia em Destaque (Ocupa 2 colunas e 2 linhas) */
.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.news-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

/* Overlay de conteúdo sobre a imagem */
.news-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  color: white;
}

/* Estilo para cards sem imagem de fundo (Alt-Style) */
.alt-style {
  background: #f5f5f7;
}

.alt-style .news-content {
  background: transparent;
  color: #1d1d1f;
  justify-content: center;
}

/* Elementos Internos */
.category {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #c7d3ff;
}

.alt-style .category {
  color: #004aad;
}

.news-title {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.featured .news-title {
  font-size: 2.2rem;
}

.news-excerpt {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.alt-style .news-footer {
  border-top-color: rgba(0, 0, 0, 0.05);
}

.date {
  font-size: 0.8rem;
  opacity: 0.7;
}

.read-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.alt-style .read-more {
  color: #004aad;
}

@media (max-width: 768px) {
  .news-grid {
    display: flex;
    flex-direction: column;
  }
.news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured {
    height: 500px;
  }

  .news-card {
    height: 400px;
  }
}


/* =========================================
   RESPONSIVO DEFINITIVO - STORE WEB
   ========================================= */
@media screen and (max-width: 768px) {

  /* 1. Ajuste do Header e Body */
  body {
    padding-top: 80px !important;
    /* Altura do header no mobile */
  }

  .header-main {
    height: 80px !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .img-logo {
    height: 55px !important;
    /* Logo menor para não vazar */
  }

  /* 2. O MENU MOBILE (O Problema do "Site Sumir") */
  .menu {
    position: fixed !important;
    top: 0;
    right: -100%;
    /* Começa totalmente fora da tela à direita */
    width: 100%;
    height: 100vh;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Transição suave */
    z-index: 9998;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Quando o menu está ativo, ele volta para a tela */
  .menu.active {
    right: 0 !important;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.5rem !important;
    display: block;
    padding: 10px;
  }

  /* 3. Ajuste dos Cards (Forçar 1 coluna e centralizar) */
  .section-serviços {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 20px !important;
  }

  .section-serviços .card {
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* 4. Banner/Carrossel Mobile */
  .carousel-item img {
    height: 300px !important;
    /* Altura ideal para celular */
    object-fit: cover;
  }

  .carousel-caption {
    width: 90% !important;
    left: 15% !important;
    top: 45% !important;
    transform: translateY(-50%) !important;
  }

  .carousel-caption h2 {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }

  .carousel-caption p {
    font-size: 0.9rem !important;
    margin-bottom: 15px;
  }

  /* 5. Título da Seção */
  .section-title {
    font-size: 22px !important;
    margin-bottom: 30px !important;
    padding-top: 40px !important;
  }

  /* 6. Botão Hambúrguer (Garantir que fique visível) */
  .hamburguer {
    display: flex !important;
    z-index: 9999;
    position: relative;
  }

  .marketing-impact {
    padding: 60px 20px;
  }

  .experience-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -40px;
    width: fit-content;
    padding: 20px;
  }
}