* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.header {
    background-color: #F7B500;
    padding: 10px 20px;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin: 0 15px;
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 0 10px;
}

.nav-list li:not(:first-child) {
    border-left: 2px solid black;
    padding-left: 15px;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.hero-section {
    background: url('imgs/princiapl.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 0 20px;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: #F7B500;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #F7B500;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid black;
    transition: background-color 0.3s ease;
    animation: pulse 1.5s infinite;
}

.cta-button:hover {
    background-color: black;
    color: #F7B500;
}

.profissional-saude {
    background: url('imgs/cta.png') no-repeat center center/cover;
    color: #000; 
    text-align: center;
    padding: 20px;
    line-height: 1.6;
    background-color: #000000;
}

.profissional-saude h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.profissional-saude p {
    font-size: 1rem;
    margin: 10px 0;
}

.profissional-saude .servicos {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.container02 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .service {
    display: flex;
    align-items: center;
    border: 2px solid #ffa500;
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px;
    background-color: #000000;
    flex-wrap: wrap;
  }

  .service:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    margin: 10px;
    flex-shrink: 0;
  }

  .service-content {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    min-width: 280px;
  }

  .service h2 {
    color: #ffa500;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .service p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .service .cta-text {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .service button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa500;
    color: #000;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
  }

  .service button:hover {
    background-color: #ffcc66;
  }

  .sobre-nos {
    background: url('imgs/sobrenos.png') no-repeat center center/cover;
    padding: 40px 20px;
    text-align: center;
}

.sobre-nos h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffc107;
}

.clientes {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #ffc107, #ffa000);
    color: #fff;
  }
  
  .clientes h2 {
    margin-bottom: 10px;
    font-size: 2em;
  }
  
  .clientes p {
    margin: 5px 0;
  }
  
.section {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    color: #fff;
  }

  .section.background-image {
    background-image: url('imgs/CTAFinal.png');
    background-size: cover;
    background-position: center;
  }

  .section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .section-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }

  .section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffa500;
  }

  .section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffa500;
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
  }

  .cta-button:hover {
    background-color: #ffcc66;
  }

  footer {
    background-color: #ffa500;
    text-align: center;
    padding: 15px;
    color: #000;
    font-size: 0.9rem;
  }

  footer a {
    color: #000;
    text-decoration: underline;
  }

/* Menu hambúrguer */
@media (max-width: 768px) {

    .container{
        display: flex;
        justify-content: space-between;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        background-color: #F7B500;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        z-index: 10; 
    }

    .nav-list.show {
        display: flex;
    }

    .hamburger {
        display: block;
        z-index: 11; 
    }

    .nav-list li {
        padding: 10px 0;
        border-left: none;
    }

    .nav-list li:not(:first-child) {
        border-left: none;
        padding-left: 0px;
    }

    .hero-section{
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .profissional-saude h1 {
        font-size: 1.2rem;
    }

    .profissional-saude p {
        font-size: 0.6rem;
    }

    .profissional-saude .servicos {
        font-size: 0.8rem;
    }

    .service {
        flex-direction: column;
        text-align: center;
      }

      .service img {
        margin: 0 auto 15px;
      }

      .service-content {
        padding: 0;
      }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1); 
    }
    50% {
        transform: scale(1.1); 
    }
}
