    /* === VARIÁVEIS E RESET === */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fafbfc;
      color: #1e2b3a;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Paleta de cores */
    :root {
      --primary: #0a2472;      /* azul profundo */
      --secondary: #0e6ba8;    /* azul médio */
      --accent: #f18f01;        /* laranja (para detalhes) */
      --light: #f5f7fa;
      --dark: #1e2b3a;
      --gray: #6c757d;
      --white: #ffffff;
      --claro: #ffffff;
    }

    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Botões */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
      box-shadow: 0 8px 16px rgba(10, 36, 114, 0.2);
    }

    .btn-primary:hover {
      background-color: #0c1f5a;
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(10, 36, 114, 0.3);
    }

    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--claro);
      color: var(--claro);
    }

    .btn-outline:hover {
      background-color: var(--claro);
      color: var(--primary);
      transform: translateY(-3px);
    }

    .btn-whatsapp {
      background-color: #25D366;
      color: white;
      box-shadow: 0 8px 16px rgba(37, 211, 102, 0.2);
    }

    .btn-whatsapp:hover {
      background-color: #20b859;
      transform: translateY(-3px);
    }

    /* Cabeçalho fixo */
    .header {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      padding: 12px 0;
    }

    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-navbar{
        height:45px;
        width:auto;
        }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
    }

    .logo span {
      color: var(--secondary);
      font-weight: 300;
    }

    .nav-menu {
      display: flex;
      gap: 32px;
      font-weight: 500;
    }

    .nav-menu a {
      color: var(--dark);
      transition: color 0.2s;
    }

    .nav-menu a:hover {
      color: var(--primary);
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary);
    }

    /* Hero Section */
    .hero {
      padding: 160px 0 100px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      z-index: 0;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 30px;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
      border: 8px solid rgba(255,255,255,0.2);
      transition: transform 0.4s;
    }

    .hero-image img:hover {
      transform: scale(1.02);
    }

    /* Seções genéricas */
    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto 50px;
    }

    /* Sobre */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-text p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .stat-item {
      background: var(--white);
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.03);
      border: 1px solid #e9ecef;
    }

    .stat-item i {
      font-size: 2rem;
      color: var(--secondary);
      margin-bottom: 10px;
    }

    .stat-item h4 {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
    }

    /* Cards de serviços */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: var(--white);
      padding: 30px;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border: 1px solid #edf2f7;
      transition: all 0.3s;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(10,36,114,0.08);
      border-color: var(--secondary);
    }

    .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(145deg, var(--light), white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 2.2rem;
      color: var(--primary);
      border: 1px solid #e2e8f0;
    }

    .service-card h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: var(--dark);
    }

    .service-card p {
      color: var(--gray);
      font-size: 0.95rem;
    }

    /* Benefícios */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .benefit-item {
      padding: 20px;
    }

    .benefit-item .icon {
      background: var(--light);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 2rem;
      color: var(--primary);
      transition: 0.3s;
    }

    .benefit-item:hover .icon {
      background: var(--primary);
      color: white;
    }

    .benefit-item h4 {
      font-weight: 600;
      margin-bottom: 8px;
    }

    .benefit-item p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* Depoimentos */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: var(--white);
      padding: 30px;
      border-radius: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.02);
      border: 1px solid #e9ecef;
      position: relative;
    }

    .testimonial-card i.fa-quote-left {
      color: var(--accent);
      font-size: 2rem;
      opacity: 0.2;
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .testimonial-card p {
      font-style: italic;
      margin: 20px 0;
      color: var(--dark);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-info h5 {
      font-weight: 600;
    }

    .author-info span {
      font-size: 0.85rem;
      color: var(--gray);
    }

    /* Localização (mapa) */
    .map-wrapper {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      height: 350px;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Contato */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: var(--white);
      border-radius: 40px;
      padding: 50px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    }

    .contact-info h3, .contact-form h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .contact-details {
      margin: 30px 0;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .contact-item i {
      width: 40px;
      height: 40px;
      background: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
    }

    .contact-item span {
      font-weight: 500;
    }

    .social-links a {
      display: inline-block;
      margin-right: 15px;
      font-size: 1.8rem;
      color: var(--gray);
      transition: 0.2s;
    }

    .social-links a:hover {
      color: var(--primary);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input, .form-group textarea {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid #e0e7ef;
      border-radius: 50px;
      font-family: inherit;
      font-size: 1rem;
      outline: none;
      transition: 0.2s;
    }

    .form-group textarea {
      border-radius: 30px;
      resize: vertical;
    }

    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(14,107,168,0.1);
    }

    .btn-submit {
      background: var(--primary);
      color: white;
      border: none;
      padding: 16px 30px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      width: 100%;
    }

    .btn-submit:hover {
      background: var(--secondary);
    }

    /* Rodapé */
    .footer {
      background: var(--dark);
      color: white;
      padding: 30px 0;
      text-align: center;
    }

    /* WhatsApp flutuante */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
      z-index: 99;
      transition: 0.3s;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #20b859;
    }

    /* Responsividade */
    @media (max-width: 992px) {
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .hero-buttons {
        justify-content: center;
      }
      .hero-image {
        order: -1;
      }
      .hero-image img {
        max-width: 400px;
      }
      .about-grid {
        grid-template-columns: 1fr;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .section-title {
        font-size: 2rem;
      }
      .hero-content h1 {
        font-size: 2.5rem;
      }
    }