/* ===== GLOBAL ===== */

body {
margin:0; font-family:Arial, sans-serif; background:#0b1020; color:#fff;
}

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

.navbar {
  background: #050816;         /* cor sólida da barra */
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 9999;               /* garante que fique acima de tudo */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* opcional: sombra suave */
}

.nav-inner {
display:flex; justify-content:space-between; align-items:center;
}

.nav-inner a {
color:white; margin-left:20px; text-decoration:none;
}

/* ===== HERO ===== */

.hero {
padding:100px 0; background:linear-gradient(120deg,#061229,#0b2a94,#001a4d);
}

.hero-grid {
display: grid;
  grid-template-columns: 1.1fr 0.9fr;  /* texto + formulário, igual ao layout antigo */
  gap: 40px;
  align-items: center;
}

.hero-form-card {
background:rgba(255,255,255,0.1);
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.4);
  backdrop-filter:blur(12px);
}

.hero-left {
display:flex;flex-direction:column;justify-content:center;height:100%;
}

/* === HERO ADJUSTMENTS === */

/* Reduce form width */
.hero-grid {
grid-template-columns: 1.2fr 0.8fr;
}

/* Larger hero title */
.hero-left h1 {
font-size: 50px;
    line-height: 1.2;
}

/* Hero subtext darker (less white) */
.hero-left .sub {
color: rgba(255,255,255,0.70);
}

/* Form width reduced */
.hero-form-card {
max-width: 420px;
}

/* Improve spacing on hero left */
.hero-left {
display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero title adjustments */
.hero-left h1 {
font-size: 60px !important;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* === FIX: ONLY reduce input width horizontally === */
.hero-form-card {
padding: 30px 30px !important; /* restore normal vertical spacing */
}

/* Shrink inputs horizontally so they don't touch the border */
.hero-form-card .form input,
.hero-form-card .form textarea {
width: calc(100% - 20px) !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* ===== TECH-IMPULSE ===== */

/* ============================
   SEÇÃO - TECNOLOGIA PREMIUM
   ============================ */

.tech-impulse {
padding: 80px 0;
    background: #f8f9fa;
}

/* ===== CORREÇÃO EXATA PARA <section class="tech-impulse"> ===== */

 .tech-impulse .ti-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.tech-impulse .ti-text {
flex: 1;
    max-width: 540px;
}

.tech-impulse > h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #002DD2;
    margin-bottom: 40px;
    line-height: 1.15;
}

.tech-impulse .ti-cards {
    margin-top: 25px !important;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tech-impulse .pill {
background: #fff;
    padding: 26px 28px;
    border-radius: 18px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.10);
    display: flex;
    gap: 16px;
}

.tech-impulse .pill-ico {
font-size: 28px;
    margin-top: 3px;
}

.tech-impulse .pill h3 {
color: #002DD2;
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
}

.tech-impulse .pill p {
color: #444;
    margin: 0;
    line-height: 1.55;
}

/* ===== SERVICOS ===== */

.cards {
display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:25px;
}

/* Adjust section title size */
#servicos h2 {
    font-size: 36px;
    text-align: center !important;
    width: 100%;
    display: block;
    color: #ffffff;
}

.ti-cards {
flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 0;
    align-self: flex-start;
}

/* Overrides for Nossas Soluções cards on dark background */
.section.dark .card {
background: #ffffff;
  color: #444;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.section.dark .cards {
gap: 24px;
  margin-top: 30px;
}

/* ===========================
   SERVIÇOS — Visual Restaurado
   =========================== */

#servicos .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1400px;
    margin: 0 auto;
}

#servicos .card {
    background: #14192b;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    text-align: left;
    transition: all .25s ease;
}

#servicos .card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

#servicos .card .icon{
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

#servicos .card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

#servicos .card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.5;
}


/* ===========================
   PARTNERS / PARCEIROS
   =========================== */

#partners {
    padding: 100px 0;
    background: #f5f7fb !important; /* fundo claro */
}

#partners h2 {
    text-align: center;
    color: #002DD2;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}

#partners .subtitle {
    text-align: center;
    color: rgba(0,0,0,0.65);
    font-size: 18px;
    margin-bottom: 60px;
}

/* GRID DAS LOGOS */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 40px;
    align-items: center;
    justify-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

/* Imagens redimensionadas */
.partners-grid img {
    max-width: 160px;
    height: auto;
    opacity: 0.92;
    transition: transform .2s ease, opacity .2s ease;
}

/* hover */
.partners-grid img:hover {
    transform: scale(1.05);
    opacity: 1;
}




/* ================================
   CONTATO — ESTILO ESCURO
   ================================ */


   /* === CONTACT — GLASS EFFECT === */
.contact-card {
    background: rgba(255,255,255,0.10) !important;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.35) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.20);
}

.contact-card {
    padding: 30px 30px !important;
}

.contact-card .form input,
.contact-card .form textarea {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: white !important;
}

/* Grid do contato alinhado como o hero */
#contato .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;  /* texto + formulário, semelhante ao hero */
    gap: 40px;
    align-items: center;
}

/* Card do formulário de contato igual ao hero-form-card */
#contato .contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    max-width: 420px;
    margin-left: auto;        /* encosta no lado direito, alinhado como o do hero */
}

/* Título do formulário dentro do contato */
#contato .contact-card h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

/* Texto da coluna esquerda um pouco mais contido */
#contato .contact-left {
    max-width: 580px;
}

.contact-card {
    background: rgba(255,255,255,0.10) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    border: 1px solid rgba(255,255,255,0.40) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: none !important;
    max-width: 420px;
}


.contact-card input,
.contact-card textarea {
    width: 90% !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: 10px !important;
    padding: 14px !important;
    color: #fff !important;
    margin-bottom: 12px !important;
}



.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

/* botão igual ao hero */
.contact-card .btn-primary {
    background: #00E637 !important;
    color: #000 !important;
    border-radius: 10px !important;
}

/* ===== OTHER ===== */

.cta {
background:#00E637; padding:6px 14px; border-radius:6px; color:#000;
}

.kicker {
opacity:.8; letter-spacing:.12em; text-transform:uppercase;
}

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

.btn-primary {
background:#00E637; padding:12px 24px; border-radius:10px; color:black; text-decoration:none; font-weight:bold;
}

.btn-outline {
border:1px solid white; padding:12px 24px; border-radius:10px; color:white; text-decoration:none;
}

.form input, .form textarea {
width:90%;
padding:14px; 
border-radius:10px; 
border:1px solid rgba(255,255,255,0.25); 
margin-bottom:12px;
background:rgba(255,255,255,0.1); 
color:white;
}

.section {
padding:100px 0;
}

.light {
background:#f4f5f9; color:#000;
}

.dark {
background:#0b1020; color:white;
}

.card {
background:white; padding:25px; border-radius:15px; box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.about-grid {
display:grid; grid-template-columns:1fr 1fr; gap:40px;
}

.mini-card {
background:rgba(255,255,255,0.1);
  padding:20px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.2);
}

.contact-section {
background:#f4f5f9; color:#000;
}

.contact-grid {
display:grid; grid-template-columns:1fr 1fr; gap:40px;
}

.contact-card {
background:rgba(255,255,255,0.7);
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.4);
  box-shadow:0 20px 40px rgba(0,0,0,.1);
  backdrop-filter:blur(10px);
}

.btn-gradient {
background:linear-gradient(to right,#04c4ff,#005dff);
  color:white;
  padding:14px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  font-size:16px;
}

.footer {
background:#000; color:white; text-align:center; padding:40px 0;
}

.form label {
font-size:13px;color:rgba(255,255,255,0.75);margin-bottom:5px;display:block;
}

/* Kicker smaller */
.kicker {
font-size: 13px;
    opacity: .8;
}

.nav-logo {
height: 38px;
    width: auto;
    display: block;
}

.ti-container {
max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.ti-text {
flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
}

.ti-text h2 {
font-size: 42px;
    font-weight: 700;
    color: #002DD2;
    margin-bottom: 20px;
    line-height: 1.15;
    max-width: 750px;
}

.ti-card p {
color: #444;
}

.ti-card {
background: white;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.ti-card h3 {
margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #002DD2;
}

@media(max-width: 900px) {
.ti-container {
    flex-direction: column;
}

.section.dark .card h3 {
color: #002DD2;
  font-size: 20px;
  margin-bottom: 10px;
}

.section.dark .card p {
color: #444;
}

/* Fix alignment for Tecnologia que Impulsiona Negócios */
.ti-container {
display: flex;
    align-items: flex-start;
    gap: 40px;
}

.pill {
padding: 26px 28px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

}
.tech-impulse h2 {
    width: 100%;
}

/* FOOTER */

.footer {
  background:#020617;
  color:#e5e7eb;
  padding: 2.2rem 0;
  font-size: 0.88rem;
  text-align: left;           /* <- importante para alinhar em colunas */
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.footer-text {
  margin: 0.4rem 0 0;
  color: #9ca3af;
  max-width: 19rem;
}

/* Coluna do meio (links) */
.footer-links h4 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
}

.footer-links a {
  display: block;
  color: #cbd5f5;
  margin: 0.1rem 0;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Coluna direita (copyright) */
.footer-copy {
  text-align: right;
}

.footer-copy p {
  margin: 0.1rem 0;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-copy {
    text-align: left;
  }
}

/* Links na área de contato */
.contact-left a {
    color: #ffffff;
    text-decoration: none;
}

.contact-left a:hover {
    color: #00E637; /* mesmo verde dos botões */
    text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   BOTÃO FLUTUANTE WHATSAPP
   =========================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #00E637;              /* mesma cor do btn-primary */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  z-index: 1200;                     /* acima de navbar e conteúdo */
  text-decoration: none;
}

/* anel de pulso */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #00E637;
  opacity: 0.45;
  transform: scale(1);
  animation: wa-pulse 1.6s ease-out infinite;
}

/* ícone */
.wa-icon {
  position: relative;                /* fica acima do ::before */
  width: 28px;
  height: 28px;
  z-index: 1;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
}

/* animação de pulso */
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ajuste para mobile: botão um pouco menor e mais afastado da borda */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .wa-icon {
    width: 24px;
    height: 24px;
  }
}

/* ============================
   CONTATO – REDES SOCIAIS
   ============================ */

.contact-socials {
  margin-top: 24px;
}

.contact-socials span {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #0b1020;
  background: #e5e7eb;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease;
}

/* Cores por rede */
.social-icon.li { background: #0A66C2; color: #ffffff; }   /* LinkedIn */
.social-icon.ig { background: #E1306C; color: #ffffff; }   /* Instagram */
.social-icon.fb { background: #1877F2; color: #ffffff; }   /* Facebook */

/* Hover */
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* ====== LAYOUT MOBILE ====== */
@media (max-width: 900px) {

  /* HERO – empilhar texto e formulário */
  .hero {
    padding: 80px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-left h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-form-card {
    max-width: 100%;
  }

  /* TECNOLOGIA QUE IMPULSIONA NEGÓCIOS */
  .tech-impulse {
    padding: 60px 0;
  }

  .tech-impulse .ti-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .tech-impulse .ti-text {
    max-width: 100%;
    font-size: 16px;
  }

  .tech-impulse .pill {
    padding: 20px 18px;
  }

  /* NOSSAS SOLUÇÕES – 1 card por linha */
  #servicos .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* CONTATO – empilhar texto e formulário */
  #contato .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #contato .contact-card {
    max-width: 100%;
  }

  /* FOOTER – colunas empilhadas e centralizadas */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-brand,
  .footer-links,
  .footer-copy {
    text-align: center;
  }

      /* ===== PARTNERS – MOBILE ===== */
    #partners {
        padding: 60px 0;
    }

    #partners h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 colunas no mobile */
        gap: 30px 24px;
        max-width: 480px;          /* centraliza e evita passar da tela */
        margin: 0 auto;
    }

    .partners-grid img {
        max-width: 120px;          /* logos um pouco menores no mobile */
    }
}

@media (max-width: 768px) {
  .footer-text {
    text-align: center;
    margin: .4rem auto 0; /* mantém a largura e centraliza o bloco */
  }
}

/* Navbar – ajustes para mobile */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 0;          /* barra um pouco mais baixa */
  }

  .nav-logo {
    height: 30px;             /* logo menor pra caber melhor */
  }

  .nav-inner {
    gap: 8px;                 /* diminui o espaço geral */
  }

  .nav-inner nav {
    display: flex;
    align-items: center;
    gap: 12px;                /* controla espaço entre links */
  }

  .nav-inner nav a {
    font-size: 14px;          /* texto menor */
    margin-left: 0;           /* remove o espaçamento grande da versão desktop */
    padding: 6px 8px;
  }

  .nav-inner nav .cta {
    padding: 6px 14px;        /* botão “Contato” mais compacto */
    border-radius: 999px;     /* pill bonitinho no mobile */
  }
}


