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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    padding: 90px 20px 20px;
}

/* Menu superior fixo */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #33BFFF;
    color: black;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.menu-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.top-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    cursor: pointer;
}

.top-menu .menu-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.menu-item a {
  color: inherit;         /* herda a cor do elemento pai */
  text-decoration: none;  /* remove sublinhado */
}

.menu-item a:hover {
  text-decoration: none;  /* garante que não apareça sublinhado ao passar o mouse */
}

header, footer {
    background-color: #33BFFF;
    color: black;
    text-align: center;
    padding: 25px 20px;
}

header h1 {
    font-size: 2rem;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

.content {
    margin-top: 30px;
}

.content h2 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 15px;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Exemplo de área de cards ou seções internas */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.card3 {
    flex: 1 1 calc(33.33% - 20px);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

.card3:hover {
    transform: translateY(-5px);
}

.card3 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card3 h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: black;
}

.card3 h3 {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 10px;
}

.card3 p {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #555;
}

.card3 a.button {
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    background-color: #33BFFF;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    width: 200px
}

.card3 a.button:hover {
    background-color: #363334;
}

.card3 i {
    margin-right: 6px;
}

.card4 {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
}

.card4:hover {
    transform: translateY(-5px);
}

.card4 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card4 h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: black;
}

.card4 h3 {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 10px;
}

.card4 p {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #555;
}

.card4 a.button {
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    background-color: #33BFFF;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    width: 200px
}

.card4 a.button:hover {
    background-color: #363334;
}

.card4 i {
    margin-right: 6px;
}

footer p {
    font-size: 0.9rem;
}

footer img {
    width: 175px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin: 10px;
}


.span-2 {
    flex: 1 1 calc(50% - 20px);
}

.span-3 {
    flex: 1 1 calc(75% - 20px);
}

.span-4 {
    flex: 1 1 100%;
}

.card h3 {
    color: #960018;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    font-size: 0.95rem;
}

.card li {
    color: #555;
    font-size: 0.95rem;
}

.cliente-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
}

.foto-cliente {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.nome-cliente {
    font-weight: bold;
    font-size: 1.1em;
}

.comentario {
    font-style: italic;
    color: #555;
}

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


@media (max-width: 1024px) {
    .card,
    .span-2,
    .span-3 {
    flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .card,
    .span-2,
    .span-3,
    .span-4 {
    flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
  .menu-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 10px;
  }

  .top-menu .menu-item {
    font-size: 0.65rem;
  }

  .top-menu .menu-item i {
    font-size: 1.1rem;
  }

  header h1 {
    font-size: 1.3rem;
 }

 .card3 h1 {
    font-size: 1.35rem;
 }

 .card4 h1 {
    font-size: 1.25rem;
 }

 .card4 h3 {
    font-size: 1.05rem;
 }

 .card4 h4 {
    font-size: 1rem;
 }

 footer img {
    /*height: auto; 
    width: 50%;*/
    width: 150px;
    height: 100px;
    object-fit: contain;
}

}



