* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", Arial, sans-serif;
  }
  
  body {
    color: #1f2937;
    background: #fff;
    line-height: 1.6;
  }
  
  /* ================= BANNER / SLIDER ================= */
  
  header {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
  }
  
  .slider {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .9s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 14px 24px;
    background: rgba(0,0,0,.55);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  /* ================= SECTIONS ================= */
  
  section {
    padding: 70px 12%;
  }
  
  /* SOBRE */
  
  .sobre {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .sobre h2 {
    font-size: 34px;
    margin-bottom: 18px;
  }
  
  .sobre p {
    margin-bottom: 14px;
    color: #374151;
    text-align: justify;
    text-justify: inter-word;
  }
  
  .sobre img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 40px rgba(0,0,0,.1);
    object-fit: cover;
  }
  
  /* ================= INSTAGRAM ================= */
  
  .insta-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
  }
  
  /* GRID */
  
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    justify-items: center;
  }
  
  /* CARD REDONDO */
  
  .card {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 25px 35px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    text-align: center;
    transition: .25s ease;
  }
  
  .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 40px 55px rgba(0,0,0,.18);
  }
  
  /* FOTO DO CARD */
  
  .card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .card-top img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f3f4f6;
  }
  
  /* TEXTO DO CARD */
  
  .card-body h4 {
    margin-bottom: 6px;
  }
  
  .card-body p {
    font-size: .8rem;
    color: #4b5563;
    margin-bottom: 10px;
  }
  
  .card-body a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 500;
  }
  
  .card-body a:hover {
    background: #1d4ed8;
  }
  /* Footer */
footer {
   
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #fff;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-content img {
    width: 60px;
}

@media (max-width: 900px) {
    .sobre {
      grid-template-columns: 1fr;
    }
  }