.agendamento-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f8f3ef 0%, #f3ebe4 52%, #efe5dd 100%);
    overflow: hidden;
  }
  
  .agendamento-shell {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
  }
  
  .agendamento-heading {
    max-width: 760px;
    margin-bottom: 28px;
  }
  
  .agendamento-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracota-dark);
  }
  
  .agendamento-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
  }
  
  .agendamento-intro {
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--text-soft);
    max-width: 720px;
  }
  
  .agendamento-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(157, 110, 90, 0.10);
    box-shadow: 0 10px 26px rgba(80, 51, 40, 0.06);
  }
  
  .agendamento-tab {
    min-width: 120px;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
  }
  
  .agendamento-tab:hover {
    transform: translateY(-1px);
  }
  
  .agendamento-tab.is-active {
    background: linear-gradient(135deg, var(--terracota), var(--rosado));
    color: #fff;
  }
  
  .agendamento-card {
    padding: 24px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(157, 110, 90, 0.10);
    box-shadow: 0 18px 44px rgba(80, 51, 40, 0.08);
    backdrop-filter: blur(10px);
  }
  
  .agendamento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
  }
  
  .agendamento-media {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
  }
  
  .agendamento-image,
  .agendamento-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    max-height: 520px;
    border: 0;
    object-fit: cover;
    display: block;
  }
  
  .agendamento-map {
    background: #efe5dd;
  }
  
  .is-hidden {
    display: none !important;
  }
  
  .agendamento-content {
    max-width: 520px;
  }
  
  .agendamento-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--terracota-dark);
  }
  
  .agendamento-content h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
  }
  
  .agendamento-description {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 22px;
  }
  
  .agendamento-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
    padding: 0;
  }
  
  .agendamento-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-soft);
  }
  
  .agendamento-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracota), var(--rosado));
  }
  
  .agendamento-address {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(157, 110, 90, 0.10);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-soft);
  }
  
  .agendamento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--terracota), var(--rosado));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(157, 110, 90, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  }
  
  .agendamento-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(157, 110, 90, 0.28);
    filter: saturate(1.03);
  }
  
  @media (max-width: 980px) {
    .agendamento-section {
      padding: 84px 0;
    }
  
    .agendamento-shell {
      width: min(100% - 28px, 1200px);
    }
  
    .agendamento-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .agendamento-media,
    .agendamento-image,
    .agendamento-map {
      min-height: 420px;
    }
  
    .agendamento-content {
      max-width: 100%;
    }
  }
  
  @media (max-width: 640px) {
    .agendamento-heading {
      margin-bottom: 22px;
    }
  
    .agendamento-heading h2 {
      font-size: clamp(1.95rem, 8vw, 2.5rem);
    }
  
    .agendamento-intro,
    .agendamento-description,
    .agendamento-list li,
    .agendamento-address {
      font-size: 0.95rem;
      line-height: 1.7;
    }
  
    .agendamento-card {
      padding: 16px;
      border-radius: 24px;
    }
  
    .agendamento-media,
    .agendamento-image,
    .agendamento-map {
      min-height: 300px;
      border-radius: 20px;
    }
  
    .agendamento-switch {
      width: 100%;
      justify-content: space-between;
    }
  
    .agendamento-tab {
      flex: 1;
      min-width: auto;
    }
  
    .agendamento-btn {
      width: 100%;
    }
  }