body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

.logo { max-width: 50%; height: auto; }
.navbar { padding:.5em; background: url(img/vfixlar.png) center center; box-shadow: 0 14px 14px -14px rgba(0,0,0,.75); }
.sticky { position: sticky; top: 0; z-index: 1; }
.hidden { display: none; }
.nav__items { list-style: none; margin: 0; padding: 0; }
.nav__link { color: #eee; text-decoration: none; }
.nav__items .nav__link:hover { color: rgb(252,41,74); }

@media (min-width: 800px) {
  .navbar { display: flex; justify-content: space-between; align-items: center; }
  .nav { display: flex !important; }
  .nav__items { display: flex; flex-direction: row; gap: 20px; }
  .nav__items .nav__link { font-size: 1rem; }
}
@media (max-width: 799px) {
  .nav__items {
    flex-direction: column; text-align: center;
    background: rgb(249,178,51);
    position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
    justify-content: center; transition: left .3s ease;
  }
  #nav:checked ~ .nav .nav__items { left: 0; }
}
header {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
header h1 {
  margin: 0;
  font-size: 1.6rem;
}
section {
  max-width: 900px;
  margin: 1rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h2 {
  color: #ff6600;
  margin-top: 1rem;
  font-size: 1.2rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.85rem;
}
table th, table td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: center;
}
table th {
  background: #f0f0f0;
}
ul {
  list-style: disc;
  padding-left: 20px;
}
/* Botão CTA fixo */
.cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ff6600;
  text-align: center;
  padding: 0.8rem;
  z-index: 1000;
}
.cta-fixed a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  width: 100%;
}
.cta-fixed a:hover {
  background: #e65c00;
  border-radius: 6px;
  transition: 0.3s;
}

.img-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
.img-block img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
 .img-block {
    flex-direction: row;
  }
  .img-block img {
    width: 32%;
  }
/* Responsividade */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.3rem;
  }
  section {
    margin: 0.8rem;
    padding: 1rem;
  }
  table {
    font-size: 0.75rem;
  }
  .cta-fixed a {
    font-size: 1.1rem;
  }
}
 .img-block {
    flex-direction: row;
  }
  .img-block img {
    width: 32%;
  }
}