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

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

.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: white;
    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: #000000;
    color: white;
    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;
}

.card {
    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;
}

.card2 {
    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;
}

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

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

.card h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}

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

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

.card a.button {
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    background-color: #000000;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

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

.footer p {
    font-size: 0.9rem;
}

.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;
}

.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;
  }
}



