
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.top-header {
    background: linear-gradient(90deg, #0a4263 0%, #147289 100%);
   
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeDown 0.5s ease;
  }
  
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    height: 150px;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav-list li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .nav-list li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #65d9a8;
  }
    
  .menu-cta:hover {
    background-color: #4ec59c;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  .mobile-nav {
    display: none;
    background: linear-gradient(90deg, #0a4263 0%, #147289 100%);
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 10px;
    margin: 0;
  }
  
  .mobile-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .mobile-nav ul li a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
  }
  
  .mobile-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .mobile-nav.active {
      display: block;
    }
  }
  
  
  .hero-banner {
    background-image: url('/Img/medico-estetoscopio.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(10, 66, 99, 0.75); /* cor institucional escurecida */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 700px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #dcdcdc;
  }
  
  .btn-primary {
    background-color: #65d9a8;
    color: #0a4263;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #4ec59c;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media screen and (max-width: 768px) {
    .hero-content h1 {
      font-size: 32px;
    }
    .hero-content p {
      font-size: 16px;
    }
  }
  

.sobre-inags {
    background-color: #f9f9f9;
    padding: 50px 20px 80px 20px; /* padding-top reduzido */
    transition: background-color 0.3s ease, padding 0.3s ease;
    border-top: 1px solid #eee;
  }
  
  .sobre-inags h1 {
    color: #0a4263;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  
  .sobre-inags h2 {
    color: #0a4263;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  
  .sobre-inags p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
  }
  
.grid-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 100px;
  }
  
  .grid-icons .item {
    background: white;
    padding: 20px;
    text-align: center;
    border-top: 6px solid #65d9a8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .grid-icons .item:hover {
    transform: translateY(-5px);
  }
  
  .grid-icons img {
    height: 60px;
    margin-bottom: 10px;
  }
  
  /* Responsivo para tablet */
  @media screen and (max-width: 992px) {
    .grid-icons {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Responsivo para celular */
  @media screen and (max-width: 600px) {
    .grid-icons {
      grid-template-columns: 1fr;
    }
  }
  

.valores {
  padding: 60px 0;
  background-color: #fff;
}

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

.valor-card {
    background-color: #e2e2e2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 300px; /* altura mínima padronizada */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.valor-card img.card-img {
    border-radius: 20px;
    margin: 20px;
    
  }
  .contato {
    background-color: #f9f9f9;
    padding: 80px 20px;
  }
  
  .contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .contato-form h2 {
    color: #0a4263;
    margin-bottom: 20px;
  }
  
  .contato-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contato-form input,
  .contato-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  .contato-form button.btn-primary {
    background-color: #65d9a8;
    color: #0a4263;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contato-form button:hover {
    background-color: #4ec59c;
  }
  
  .contato-info h3 {
    color: #0a4263;
    margin-bottom: 20px;
  }
  
  .contato-info p {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
  }
  
  .contato-info h4 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #0a4263;
  }
  
  .footer-social .icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #0a4263;
    transition: transform 0.3s, color 0.3s;
  }
  
  .footer-social a:hover .icon {
    transform: scale(1.1);
    color: #65d9a8;
  }
  
  @media screen and (max-width: 768px) {
    .contato-grid {
      grid-template-columns: 1fr;
    }
  }
  

footer {
  background-color: #0a4263;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.site-footer {
  background: linear-gradient(90deg, #0a4263 0%, #147289 100%);
  color: white;
  padding-top: 50px;
  font-size: 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 20px 40px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer-section a:hover {
  color: #65d9a8;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #65d9a8;
  transform: scale(1.1);
}

.footer-social .icon {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: rgba(10, 66, 99, 0.8);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.institucional {
  background-color: #f9f9f9;
  padding: 80px 20px;
  color: #333;
}

.titulo-institucional {
  font-size: 42px;
  text-align: center;
  color: #0a4263;
  margin-bottom: 50px;
}

.institucional .bloco {
  margin-bottom: 50px;
}

.institucional h2 {
  font-size: 26px;
  color: #0a4263;
  margin-bottom: 15px;
}

.institucional p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.institucional ul {
  padding-left: 20px;
}

.institucional ul li {
  margin-bottom: 8px;
  font-size: 17px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.valor {
  background: #ffffff;
  padding: 20px;
  border-left: 4px solid #65d9a8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.valor strong {
  display: block;
  font-size: 16px;
  color: #0a4263;
  margin-bottom: 8px;
}

.valor p {
  font-size: 15px;
  color: #555;
}

@media (max-width: 768px) {
  .titulo-institucional {
    font-size: 32px;
  }
  .institucional h2 {
    font-size: 22px;
  }
}

/* ===== SEÇÃO QUALIFICAÇÕES ===== */
        .qualificacoes-section {
            padding: 50px 20px;
            background-color: #f5f7fa;
        }

        .qualificacoes-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .qualificacoes-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            color: #0a4263;
            margin-bottom: 10px;
        }

        .qualificacoes-subtitle {
            text-align: center;
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
        }

        /* ===== TABELA ===== */
        .qualificacoes-table {
            width: 100%;
            border-collapse: collapse;
        }

        .qualificacoes-table thead th {
            background-color: #0a4263;
            color: #ffffff;
            padding: 14px;
            text-align: center;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .qualificacoes-table tbody td {
            padding: 14px;
            text-align: center;
            font-size: 16px;
            border: 1px solid #ddd;
            vertical-align: middle;
        }

        .qualificacoes-table tbody tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .qualificacoes-table tbody tr:hover {
            background-color: #e6f2ff;
            transition: background-color 0.3s ease;
        }

        /* ===== RESPONSIVO ===== */
        @media (max-width: 600px) {
            .qualificacoes-title {
                font-size: 22px;
            }

            .qualificacoes-subtitle {
                font-size: 14px;
            }

            .qualificacoes-table thead {
                display: none;
            }

            .qualificacoes-table,
            .qualificacoes-table tbody,
            .qualificacoes-table tr,
            .qualificacoes-table td {
                display: block;
                width: 100%;
            }

            .qualificacoes-table tr {
                margin-bottom: 15px;
                border: 1px solid #ddd;
                border-radius: 6px;
                overflow: hidden;
            }

            .qualificacoes-table td {
                text-align: center;
                padding: 12px;
                border: none;
                border-bottom: 1px solid #eee;
            }

            .qualificacoes-table td:last-child {
                border-bottom: none;
                font-weight: bold;
                color: #65d9a8;
            }
        }


          /* ===== SEÇÃO DOCUMENTOS ===== */
        .documentos-section {
            padding: 50px 20px;
            background-color: #f5f7fa;
        }

        .documentos-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .documentos-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .documentos-header h2 {
            font-size: 28px;
            color: #0a4263;
            margin-bottom: 10px;
        }

        .documentos-header p {
            font-size: 16px;
            color: #555;
        }

        /* ===== GRID ===== */
        .documentos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        /* ===== CARD ===== */
        .documento-card {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .documento-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .documento-titulo {
            font-size: 18px;
            font-weight: bold;
            color: #0a4263;
            margin-bottom: 10px;
        }

        .documento-descricao {
            font-size: 15px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* ===== BOTÃO ===== */
        .btn-pdf {
            display: inline-block;
            text-align: center;
            padding: 12px;
            background-color: #0a4263;
            color: #ffffff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }

        .btn-pdf:hover {
            background-color: #65d9a8;
        }

        /* ===== RESPONSIVO ===== */
        @media (max-width: 600px) {
            .documentos-header h2 {
                font-size: 22px;
            }

            .documento-titulo {
                font-size: 17px;
            }

            .documento-descricao {
                font-size: 14px;
            }
        }