    :root {
      --primary-blue: #004A8D;
      --primary-orange: #F7941D;
      --light-orange: #FDC180;
      --dark-blue: #003366;
      --light-blue: #e6f2ff;
      --white: #ffffff;
      --gray-light: #f8f9fa;
      --gray-medium: #6c757d;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      color: #333;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    /* Header com fundo personalizado */
   #header {
  background: linear-gradient(135deg, 
    rgba(0, 106, 197, 0.95) 0%,     /* Azul bem mais claro: #006AC5 */
    rgba(0, 173, 225, 0.95) 50%,     /* Azul intermediário: #0055AA */
    rgba(0, 106, 197, 0.95) 50%);
  box-shadow: 0 5px 20px rgba(0, 106, 197, 0.25);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(247, 148, 29, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(253, 193, 128, 0.2) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.08) 2px, rgba(255, 255, 255, 0.08) 4px);
  z-index: 1;
}    #header .container {
      position: relative;
      z-index: 2;
    }

    .logo img {
      max-height: 55px;
      transition: var(--transition);
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .logo img:hover {
      transform: scale(1.05);
    }

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

    .main-nav ul li {
      display: inline-block;
      margin-left: 25px;
      position: relative;
    }

    .main-nav ul li a {
      color: var(--white);
      font-weight: 500;
      padding: 10px 0;
      text-decoration: none;
      transition: var(--transition);
      font-size: 15px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .main-nav ul li a:hover {
      color: var(--light-orange);
      transform: translateY(-2px);
    }

    .main-nav ul li.active a {
      color: var(--light-orange);
      font-weight: 600;
    }

    .main-nav ul li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--light-orange);
      border-radius: 3px;
      transition: var(--transition);
    }

    .main-nav ul li a:hover::after,
    .main-nav ul li.active a::after {
      width: 100%;
    }

    /* Mobile Menu Toggle */
    .mobile-nav-toggle {
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 10px;
      transition: var(--transition);
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-toggle:hover {
      background: rgba(255, 255, 255, 0.2);
      color: var(--light-orange);
    }

    /* Main Content */
    main {
      padding-top: 80px;
      min-height: calc(100vh - 300px);
      background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
    }

    .section-header {
      text-align: center;
      padding: 60px 0 40px;
    }

    .section-header h3 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header h3::after {
      content: '';
      position: absolute;
      width: 70px;
      height: 4px;
      background: var(--primary-orange);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .section-header p {
      color: var(--gray-medium);
      font-size: 1.1rem;
      max-width: 700px;
      margin: 20px auto 0;
      line-height: 1.6;
    }

    /* Cards */
    .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      padding: 0 20px 80px;
    }

    .card-item {
      background: var(--white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      width: 100%;
      max-width: 500px;
      position: relative;
      border: none;
    }

    .card-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-header {
      padding: 40px 30px 30px;
      text-align: center;
      position: relative;
    }

    .card-header.hospital {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    }

    .card-header.vehicle {
      background: linear-gradient(135deg, var(--primary-orange) 0%, #e67e22 100%);
    }

    .card-icon {
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      border: 5px solid rgba(255, 255, 255, 0.2);
    }

    .card-icon i {
      font-size: 3.5rem;
      color: var(--white);
    }

    .card-title {
      color: var(--white);
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .card-subtitle {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
    }

    .card-body {
      padding: 30px;
    }

    .card-description {
      color: var(--gray-medium);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 30px;
	text-align: justify;
    }

    .card-features {
      margin-bottom: 30px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
    }

    .feature-item i {
      color: var(--primary-orange);
      margin-right: 12px;
      font-size: 0.9rem;
    }

    .feature-item span {
      color: #555;
      font-size: 0.95rem;
    }

    .card-button {
      display: block;
      width: 100%;
      padding: 16px;
      text-align: center;
      background: linear-gradient(135deg, var(--primary-orange) 0%, #e67e22 100%);
      color: var(--white);
      font-weight: 600;
      text-decoration: none;
      border-radius: 10px;
      transition: var(--transition);
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .card-button.hospital {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    }

    .card-button::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: 0.5s;
    }

    .card-button:hover::before {
      left: 100%;
    }

    .card-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(247, 148, 29, 0.3);
      color: var(--white);
      text-decoration: none;
    }

    .card-button.hospital:hover {
      box-shadow: 0 8px 15px rgba(0, 74, 141, 0.3);
    }

    /* Info Box */
    .info-box {
      background: var(--white);
      border-radius: 15px;
      padding: 30px;
      box-shadow: var(--shadow);
      max-width: 900px;
      margin: 0 auto 60px;
      border-left: 5px solid var(--primary-orange);
      position: relative;
      overflow: hidden;
    }

    .info-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    }

    .info-box h4 {
      color: var(--primary-blue);
      margin-bottom: 20px;
      font-size: 1.5rem;
    }

    .info-content {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .info-icon {
      color: var(--primary-orange);
      font-size: 2rem;
      margin-top: 5px;
    }

    .info-text {
      flex: 1;
      color: var(--gray-medium);
      line-height: 1.7;
    }

    /* Footer */
    #footer {
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
      color: rgba(255, 255, 255, 0.8);
      padding: 60px 0 30px;
      position: relative;
      overflow: hidden;
    }

    #footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    }

    .footer-top {
      padding-bottom: 30px;
      position: relative;
      z-index: 1;
    }

    .footer-info img {
      max-height: 55px;
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
      transition: var(--transition);
    }

    .footer-info:hover img {
      transform: scale(1.05);
    }

    .footer-info a {
      color: var(--light-orange);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }

    .footer-info a:hover {
      color: var(--white);
      text-decoration: underline;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-newsletter h4 {
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-newsletter h4::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 3px;
      background: var(--light-orange);
      bottom: 0;
      left: 0;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

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

    .footer-links ul li a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links ul li a:hover {
      color: var(--light-orange);
      padding-left: 5px;
    }

    .footer-contact p {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .social-links {
      margin-top: 20px;
    }

    .social-links a {
      display: inline-block;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      text-align: center;
      line-height: 36px;
      color: var(--white);
      margin-right: 8px;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--primary-orange);
      transform: translateY(-3px);
    }

    .footer-newsletter form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-newsletter input[type="email"] {
      padding: 12px 15px;
      border-radius: 5px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
    }

    .footer-newsletter input[type="email"]::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-newsletter input[type="submit"] {
      padding: 12px 15px;
      border-radius: 5px;
      border: none;
      background: var(--primary-orange);
      color: var(--white);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .footer-newsletter input[type="submit"]:hover {
      background: var(--light-orange);
      transform: translateY(-2px);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      position: relative;
      z-index: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .main-nav ul li {
        margin-left: 15px;
      }
      
      .section-header h3 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        transition: var(--transition);
        z-index: 1000;
        padding: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
      }
      
      .main-nav.active {
        right: 0;
      }
      
      .main-nav ul {
        display: flex;
        flex-direction: column;
      }
      
      .main-nav ul li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .main-nav ul li:last-child {
        border-bottom: none;
      }
      
      .section-header {
        padding: 40px 0 30px;
      }
      
      .section-header h3 {
        font-size: 2rem;
      }
      
      .card-item {
        max-width: 100%;
      }
      
      .card-header {
        padding: 30px 20px;
      }
      
      .card-icon {
        width: 80px;
        height: 80px;
      }
      
      .card-icon i {
        font-size: 2.5rem;
      }
      
      .card-title {
        font-size: 1.5rem;
      }
      
      .info-content {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-links,
      .footer-contact,
      .footer-newsletter {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 576px) {
      #header {
        padding: 10px 0;
      }
      
      .logo img {
        max-height: 45px;
      }
      
      .section-header h3 {
        font-size: 1.8rem;
      }
      
      .card-body {
        padding: 20px;
      }
      
      .info-box {
        padding: 20px;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
    }

    .delay-1 {
      animation-delay: 0.2s;
    }

    .delay-2 {
      animation-delay: 0.4s;
    }

    /* Mobile Menu Animation */
    @keyframes slideInRight {
      from {
        right: -100%;
      }
      to {
        right: 0;
      }
    }