/*
Theme Name: Vysar Tecnologia
Theme URI: https://vysartecnologia.com.br
Author: Vysar Tecnologia
Author URI: https://vysartecnologia.com.br
Description: Tema personalizado da landing page premium da Vysar Tecnologia - Gestão Pública, Consultoria Tributária e Tecnologia.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: vysar
Tags: landing-page, custom, one-page
*/

/* ===== ESTILOS DA LANDING PAGE ===== */
    :root {
      --azul-principal: #0F4CFF;
      --azul-escuro: #081C3A;
      --cinza-claro: #F5F7FA;
      --branco: #FFFFFF;
      --verde: #00C853;
      --texto: #1A1A2E;
      --texto-suave: #5A6A7A;
      --sombra: 0 10px 40px rgba(8, 28, 58, 0.08);
      --sombra-hover: 0 20px 50px rgba(15, 76, 255, 0.15);
      --radius: 16px;
      --max-width: 1280px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: var(--texto);
      background: var(--branco);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      background: transparent;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 30px rgba(8, 28, 58, 0.08);
      padding: 14px 0;
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--branco);
      transition: color 0.3s;
    }

    .navbar.scrolled .logo {
      color: var(--azul-escuro);
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--azul-principal), #3B7CFF);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 1.1rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      transition: color 0.3s;
      position: relative;
    }

    .navbar.scrolled .nav-links a {
      color: var(--texto);
    }

    .nav-links a:hover {
      color: var(--azul-principal);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--azul-principal);
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary {
      background: var(--azul-principal);
      color: white;
      box-shadow: 0 4px 20px rgba(15, 76, 255, 0.35);
    }

    .btn-primary:hover {
      background: #0A3DD9;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(15, 76, 255, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

    .navbar .btn-primary {
      padding: 10px 22px;
      font-size: 0.9rem;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .menu-toggle span {
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .navbar.scrolled .menu-toggle span {
      background: var(--azul-escuro);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 850px;
      background: linear-gradient(135deg, #061428 0%, #081C3A 40%, #0A2A5C 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
    }

    .hero-bg-elements {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(15, 76, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 76, 255, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
    }

    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15, 76, 255, 0.25) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      filter: blur(40px);
    }

    .hero-glow-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
      bottom: 50px;
      left: 10%;
      filter: blur(50px);
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(15, 76, 255, 0.6);
      border-radius: 50%;
      animation: float 8s infinite ease-in-out;
    }

    .particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
    .particle:nth-child(2) { top: 40%; left: 25%; animation-delay: 1s; width: 3px; height: 3px; }
    .particle:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
    .particle:nth-child(4) { top: 30%; left: 80%; animation-delay: 0.5s; width: 5px; height: 5px; }
    .particle:nth-child(5) { top: 70%; left: 70%; animation-delay: 1.5s; }
    .particle:nth-child(6) { top: 15%; left: 60%; animation-delay: 2.5s; width: 3px; height: 3px; }
    .particle:nth-child(7) { top: 80%; left: 40%; animation-delay: 0.8s; }
    .particle:nth-child(8) { top: 50%; left: 90%; animation-delay: 1.2s; }

    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
      50% { transform: translateY(-30px) translateX(10px); opacity: 1; }
    }

    .digital-line {
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(15, 76, 255, 0.4), transparent);
      animation: scan 6s infinite linear;
    }

    .digital-line:nth-child(1) { top: 25%; width: 40%; left: 5%; animation-delay: 0s; }
    .digital-line:nth-child(2) { top: 55%; width: 30%; right: 10%; animation-delay: 2s; }
    .digital-line:nth-child(3) { top: 75%; width: 25%; left: 20%; animation-delay: 4s; }

    @keyframes scan {
      0% { opacity: 0; transform: scaleX(0.5); }
      50% { opacity: 1; transform: scaleX(1); }
      100% { opacity: 0; transform: scaleX(0.5); }
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      color: white;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 24px;
      padding: 8px 16px;
      background: rgba(15, 76, 255, 0.15);
      border: 1px solid rgba(15, 76, 255, 0.3);
      border-radius: 50px;
    }

    .hero-badge span {
      color: var(--verde);
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    .hero h1 .highlight {
      color: #4D8CFF;
      position: relative;
    }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 36px;
      max-width: 520px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-features {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
    }

    .hero-feature svg {
      width: 22px;
      height: 22px;
      color: var(--verde);
      flex-shrink: 0;
    }

    /* Laptop Mockup */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .building-bg {
      position: absolute;
      width: 120%;
      height: 120%;
      background: 
        linear-gradient(180deg, transparent 40%, rgba(8, 28, 58, 0.9) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%230a2540' width='400' height='300'/%3E%3Crect fill='%230d2d4d' x='20' y='80' width='60' height='220'/%3E%3Crect fill='%230e3355' x='100' y='40' width='80' height='260'/%3E%3Crect fill='%230c2a48' x='200' y='100' width='50' height='200'/%3E%3Crect fill='%230d3050' x='270' y='20' width='90' height='280'/%3E%3Crect fill='%231a4a7a' x='30' y='100' width='12' height='12' opacity='0.6'/%3E%3Crect fill='%231a4a7a' x='50' y='100' width='12' height='12' opacity='0.6'/%3E%3Crect fill='%231a4a7a' x='30' y='130' width='12' height='12' opacity='0.4'/%3E%3Crect fill='%231a4a7a' x='50' y='130' width='12' height='12' opacity='0.4'/%3E%3Crect fill='%231a4a7a' x='110' y='60' width='14' height='14' opacity='0.5'/%3E%3Crect fill='%231a4a7a' x='140' y='60' width='14' height='14' opacity='0.5'/%3E%3Crect fill='%231a4a7a' x='110' y='90' width='14' height='14' opacity='0.3'/%3E%3Crect fill='%231a4a7a' x='140' y='90' width='14' height='14' opacity='0.3'/%3E%3Crect fill='%231a4a7a' x='280' y='40' width='16' height='16' opacity='0.5'/%3E%3Crect fill='%231a4a7a' x='310' y='40' width='16' height='16' opacity='0.5'/%3E%3Crect fill='%231a4a7a' x='280' y='70' width='16' height='16' opacity='0.3'/%3E%3Crect fill='%231a4a7a' x='310' y='70' width='16' height='16' opacity='0.3'/%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
      opacity: 0.25;
      border-radius: 20px;
      filter: blur(1px);
      z-index: 0;
    }

    .laptop {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 540px;
      transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
      transition: transform 0.5s;
    }

    .laptop:hover {
      transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    }

    .laptop-screen {
      background: #0D1B2A;
      border-radius: 12px 12px 0 0;
      border: 3px solid #1A2A3A;
      border-bottom: none;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 30px 60px rgba(0,0,0,0.4);
    }

    .laptop-bezel {
      background: #111;
      padding: 12px 12px 0;
    }

    .laptop-camera {
      width: 6px;
      height: 6px;
      background: #333;
      border-radius: 50%;
      margin: 0 auto 8px;
    }

    .dashboard {
      background: linear-gradient(180deg, #0F1C2E 0%, #0A1520 100%);
      padding: 16px;
      min-height: 280px;
    }

    .dash-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .dash-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
    }

    .dash-badge {
      font-size: 0.65rem;
      background: rgba(0, 200, 83, 0.2);
      color: var(--verde);
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 600;
    }

    .dash-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 14px;
    }

    .dash-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 12px;
    }

    .dash-card-label {
      font-size: 0.6rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 4px;
    }

    .dash-card-value {
      font-size: 1rem;
      font-weight: 700;
      color: white;
    }

    .dash-card-value.green { color: var(--verde); }
    .dash-card-value.blue { color: #4D8CFF; }

    .dash-chart {
      background: rgba(255,255,255,0.03);
      border-radius: 10px;
      padding: 12px;
      height: 100px;
      display: flex;
      align-items: flex-end;
      gap: 6px;
    }

    .chart-bar {
      flex: 1;
      background: linear-gradient(180deg, var(--azul-principal), rgba(15,76,255,0.3));
      border-radius: 4px 4px 0 0;
      animation: barGrow 1.5s ease-out forwards;
      transform-origin: bottom;
    }

    .chart-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
    .chart-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
    .chart-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
    .chart-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }
    .chart-bar:nth-child(5) { height: 55%; animation-delay: 0.5s; }
    .chart-bar:nth-child(6) { height: 90%; animation-delay: 0.6s; }
    .chart-bar:nth-child(7) { height: 70%; animation-delay: 0.7s; }
    .chart-bar:nth-child(8) { height: 50%; animation-delay: 0.8s; }

    @keyframes barGrow {
      from { transform: scaleY(0); }
      to { transform: scaleY(1); }
    }

    .laptop-base {
      background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
      height: 14px;
      border-radius: 0 0 8px 8px;
      position: relative;
    }

    .laptop-base::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: #333;
      border-radius: 0 0 4px 4px;
    }

    .laptop-shadow {
      position: absolute;
      bottom: -30px;
      left: 10%;
      width: 80%;
      height: 40px;
      background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
      z-index: 1;
    }

    /* ========== SECTIONS COMMON ========== */
    section {
      padding: 100px 0;
    }

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

    .section-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--azul-escuro);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--texto-suave);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ========== SOLUÇÕES ========== */
    .solucoes {
      background: var(--cinza-claro);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .card {
      background: var(--branco);
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: var(--sombra);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(15, 76, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--azul-principal), #4D8CFF);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--sombra-hover);
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, rgba(15, 76, 255, 0.1), rgba(15, 76, 255, 0.05));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.3s;
    }

    .card:hover .card-icon {
      background: var(--azul-principal);
    }

    .card-icon svg {
      width: 28px;
      height: 28px;
      color: var(--azul-principal);
      transition: color 0.3s;
    }

    .card:hover .card-icon svg {
      color: white;
    }

    .card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--azul-escuro);
      margin-bottom: 12px;
    }

    .card p {
      font-size: 0.95rem;
      color: var(--texto-suave);
      line-height: 1.65;
    }

    /* ========== DIFERENCIAIS ========== */
    .diferenciais-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .diferencial {
      display: flex;
      gap: 18px;
      padding: 28px;
      background: var(--branco);
      border-radius: var(--radius);
      border: 1px solid rgba(8, 28, 58, 0.06);
      transition: all 0.3s;
    }

    .diferencial:hover {
      border-color: rgba(15, 76, 255, 0.2);
      box-shadow: var(--sombra);
    }

    .diferencial-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: rgba(15, 76, 255, 0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .diferencial-icon svg {
      width: 24px;
      height: 24px;
      color: var(--azul-principal);
    }

    .diferencial h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--azul-escuro);
      margin-bottom: 6px;
    }

    .diferencial p {
      font-size: 0.9rem;
      color: var(--texto-suave);
    }

    /* ========== PROCESSO ========== */
    .processo {
      background: var(--cinza-claro);
    }

    .timeline {
      display: flex;
      justify-content: space-between;
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 5%;
      right: 5%;
      height: 3px;
      background: linear-gradient(90deg, var(--azul-principal), #4D8CFF, var(--verde));
      border-radius: 2px;
      z-index: 0;
    }

    .timeline-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
      flex: 1;
    }

    .timeline-dot {
      width: 64px;
      height: 64px;
      background: white;
      border: 3px solid var(--azul-principal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--azul-principal);
      margin-bottom: 20px;
      box-shadow: 0 4px 20px rgba(15, 76, 255, 0.2);
      transition: all 0.3s;
    }

    .timeline-item:hover .timeline-dot {
      background: var(--azul-principal);
      color: white;
      transform: scale(1.1);
    }

    .timeline-item h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--azul-escuro);
      margin-bottom: 6px;
    }

    .timeline-item p {
      font-size: 0.85rem;
      color: var(--texto-suave);
      max-width: 140px;
    }

    /* ========== INDICADORES ========== */
    .indicadores {
      background: var(--azul-escuro);
      color: white;
      padding: 80px 0;
    }

    .indicadores-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }

    .indicador-value {
      font-size: 3rem;
      font-weight: 800;
      color: white;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .indicador-value span {
      color: var(--verde);
    }

    .indicador-label {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    /* ========== CTA ========== */
    .cta {
      background: linear-gradient(135deg, var(--azul-principal) 0%, #0A3DD9 50%, #082EAA 100%);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      top: -150px;
      right: -100px;
    }

    .cta .container {
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: white;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.85);
      max-width: 560px;
      margin: 0 auto 36px;
    }

    .cta .btn-primary {
      background: white;
      color: var(--azul-principal);
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      padding: 16px 40px;
      font-size: 1.05rem;
    }

    .cta .btn-primary:hover {
      background: var(--cinza-claro);
      transform: translateY(-3px);
    }

    /* ========== FOOTER ========== */
    footer {
      background: #051020;
      color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 48px;
      margin-bottom: 50px;
    }

    .footer-brand .logo {
      color: white;
      margin-bottom: 20px;
    }

    .footer-brand p {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.9rem;
    }

    .footer-contact-item svg {
      width: 18px;
      height: 18px;
      color: var(--azul-principal);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-col h4 {
      color: white;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul a {
      font-size: 0.9rem;
      transition: color 0.3s;
    }

    .footer-col ul a:hover {
      color: var(--azul-principal);
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.06);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .social-links a:hover {
      background: var(--azul-principal);
      transform: translateY(-2px);
    }

    .social-links svg {
      width: 18px;
      height: 18px;
      color: white;
    }

    .footer-map {
      border-radius: 12px;
      overflow: hidden;
      height: 160px;
      background: #0A1A30;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .footer-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(0.3) contrast(1.1);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-content {
        order: 1;
      }

      .hero-visual {
        order: 0;
        margin-bottom: 20px;
      }

      .hero p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-features {
        justify-content: center;
      }

      .laptop {
        max-width: 420px;
        transform: none;
      }

      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .indicadores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        color: var(--texto) !important;
      }

      .menu-toggle {
        display: flex;
      }

      .hero {
        min-height: auto;
        padding: 100px 0 60px;
      }

      .cards-grid,
      .diferenciais-grid {
        grid-template-columns: 1fr;
      }

      .timeline {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
      }

      .timeline::before {
        top: 0;
        bottom: 0;
        left: 31px;
        width: 3px;
        height: auto;
        right: auto;
      }

      .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 20px;
      }

      .timeline-dot {
        margin-bottom: 0;
      }

      .timeline-item p {
        max-width: none;
      }

      .indicadores-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
      }

      .indicadores-grid {
        grid-template-columns: 1fr;
      }

      .indicador-value {
        font-size: 2.4rem;
      }
    }

/* ========== WIDGETS ========== */
.widget {
  margin-bottom: 20px;
}

.widget-title,
.widget h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 12px;
}

.widget ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.widget ul a:hover {
  color: var(--azul-principal);
}

.widget p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.widget img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
