 :root {
      --primary: #0057A8;
      --primary-dark: #003d7a;
      --primary-light: #1a6dc0;
      --accent: #00b4d8;
      --gold: #c9a84c;
      --light-bg: #f4f7fb;
      --dark: #0d1b2a;
      --text: #2c3e50;
      --text-light: #6c7a8b;
      --white: #ffffff;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    html {
  overflow-x: hidden;
}

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text);
      overflow-x: hidden;
      background: #fff;
    }

    h1, h2, h3, h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .depo{
      padding: 10px; 
      background-color: #fff; 
      margin-top: 10px; 
      border-radius: 12px
    }

    .mt-10{
      margin-top:2.7rem;
    }

        /* ===================== FAQ HERO ===================== */
    .faq-hero {
      background: linear-gradient(135deg, #001f4d 0%, #0057A8 100%);
      padding: 4rem 0 0;
      position: relative;
      overflow: hidden;
    }
    .faq-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 55px 55px;
      pointer-events: none;
    }
    .faq-hero-inner { position: relative; z-index: 2; }

    .faq-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--accent);
      border-radius: 4px;
      padding: 0.35rem 1.1rem;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #fff;
      margin-bottom: 1.5rem;
    }

    .faq-hero h1 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300; color: #fff;
      line-height: 1.25; margin-bottom: 0.5rem;
      max-width: 820px;
    }
    .faq-hero h1 strong { font-weight: 800; }

    /* ---- Category tab bar (inside hero, bottom) ---- */
    .faq-tabs-bar {
      margin-top: 2.5rem;
      border-bottom: none;
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .faq-tabs-bar::-webkit-scrollbar { display: none; }

    .faq-tab-btn {
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      color: rgba(255,255,255,0.55);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.75rem 1.5rem 0.9rem;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.25s, border-color 0.25s;
      position: relative;
    }
    .faq-tab-btn:hover { color: rgba(255,255,255,0.85); }
    .faq-tab-btn.active {
      color: #fff;
      border-bottom-color: var(--accent);
    }

    /* ===================== FAQ BODY ===================== */
    .faq-body {
      background: #fff;
      padding: 0 0 5rem;
    }

    /* Tab panels */
    .faq-panel { display: none; }
    .faq-panel.active { display: block; }

    /* Panel header */
    .faq-panel-header {
      padding: 3rem 0 2rem;
      border-bottom: 1px solid #eef0f5;
      margin-bottom: 0;
    }
    .faq-panel-title {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800; color: var(--dark);
      line-height: 1.2; margin-bottom: 0.5rem;
    }
    .faq-panel-sub {
      font-size: 0.92rem; color: var(--text-light); line-height: 1.6;
      max-width: 700px;
    }

    /* Accordion */
    .faq-accordion { margin-top: 0; }

    .faq-item {
      border-bottom: 1px solid #eef0f5;
      transition: background 0.2s;
    }
    .faq-item:first-child { border-top: 1px solid #eef0f5; }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.4rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.4;
      transition: color 0.25s;
    }
    .faq-question:hover { color: var(--primary); }
    .faq-question.open { color: var(--primary); }

    .faq-chevron {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--light-bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; color: var(--text-light);
      transition: transform 0.3s, background 0.25s, color 0.25s;
    }
    .faq-question.open .faq-chevron {
      transform: rotate(180deg);
      background: var(--primary);
      color: #fff;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-answer.open {
      max-height: 600px;
    }
    .faq-answer-inner {
      padding: 0 0 1.5rem;
      font-size: 0.92rem;
      color: #4a5568;
      line-height: 1.85;
    }
    .faq-answer-inner a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: rgba(0,87,168,0.3);
    }
    .faq-answer-inner a:hover { text-decoration-color: var(--primary); }
    .faq-answer-inner strong { color: var(--dark); }

    /* CTA strip */
    .faq-cta {
      margin-top: 4rem;
      background: var(--light-bg);
      border-radius: 14px;
      padding: 2rem 2.5rem;
      display: flex; align-items: center;
      justify-content: space-between; gap: 2rem; flex-wrap: wrap;
      border: 1px solid rgba(0,87,168,0.08);
    }
    .faq-cta-text {
      font-size: 1rem; font-weight: 700; color: var(--dark);
    }
    .faq-cta-text span {
      display: block; font-size: 0.85rem;
      font-weight: 400; color: var(--text-light); margin-top: 0.2rem;
    }
    .faq-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .btn-faq-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--primary); color: #fff !important;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.8rem 1.5rem; border-radius: 6px;
      text-decoration: none; transition: all 0.3s; white-space: nowrap;
    }
    .btn-faq-primary:hover { background: var(--primary-dark); }
    .btn-faq-whatsapp {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: #25D366; color: #fff !important;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.8rem 1.5rem; border-radius: 6px;
      text-decoration: none; transition: all 0.3s; white-space: nowrap;
    }
    .btn-faq-whatsapp:hover { background: #1da851; }

     .sc-hero {
      position: relative;
      height: 80vh;
      min-height: 560px;
      background: url('../img/sc.jpg') center center / cover no-repeat;
      display: flex; align-items: flex-end;
      overflow: hidden;
    }
    .sc-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,10,30,0.92) 0%,
        rgba(0,20,60,0.55) 45%,
        rgba(0,20,60,0.18) 100%
      );
    }
    .sc-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 4.5rem;
    top: -130px;
}
    .sc-hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 3px;
      padding: 0.3rem 1rem;
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1.25rem;
    }
    .sc-hero-badge span { color: var(--accent); }
    .sc-hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800; color: #fff;
      line-height: 1.0; margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }
    .sc-hero-sub {
      font-size: 1rem; font-weight: 300;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 2rem;
    }
    .btn-sc-hero {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--accent);
      color: #fff !important;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.85rem 2rem; border-radius: 4px;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-sc-hero:hover { background: #009ab8; transform: translateY(-2px); }

    /* ==============================
       INTRO SECTION
    ============================== */
    .sc-intro {
      background: #fff;
      padding: 5rem 0 4rem;
    }
    .sc-logo-wrap {
      display: flex; flex-direction: column;
      align-items: center; gap: 0.4rem;
      margin-bottom: 2.5rem;
    }
    .sc-logo-icon {
      width: 64px; height: 64px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: #fff;
    }
    .sc-logo-text {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--text-light);
      line-height: 1.4; text-align: center;
    }
    .sc-intro-lead {
      font-size: 1.05rem; font-weight: 600;
      color: var(--dark); line-height: 1.75;
      margin-bottom: 1.5rem;
    }
    .sc-intro-lead strong { color: var(--primary); }
    .sc-intro-body {
      font-size: 0.95rem; color: #4a5568;
      line-height: 1.85; margin-bottom: 0;
    }
    .sc-stat-row {
      display: flex; gap: 2rem; flex-wrap: wrap;
      margin-top: 2.5rem; padding-top: 2rem;
      border-top: 1px solid #eef0f5;
    }
    .sc-stat {
      display: flex; flex-direction: column; gap: 0.15rem;
    }
    .sc-stat-num {
      font-size: 2rem; font-weight: 800; color: var(--primary);
      line-height: 1;
    }
    .sc-stat-label {
      font-size: 0.78rem; color: var(--text-light);
      font-weight: 500; line-height: 1.3;
    }

    /* ==============================
       COURSES GRID
    ============================== */
    .sc-courses {
      background: var(--light-bg);
      padding: 5rem 0;
    }
    .sc-section-label {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--primary);
      display: flex; align-items: center; gap: 0.6rem;
      margin-bottom: 0.75rem;
    }
    .sc-section-label::before {
      content: ''; width: 20px; height: 2px; background: var(--primary);
    }
    .sc-section-title {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 800; color: var(--dark);
      margin-bottom: 3rem; line-height: 1.2;
    }

    /* Course card */
    .sc-course-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(0,87,168,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      display: flex; flex-direction: column;
    }
    .sc-course-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,87,168,0.12);
    }
    .sc-course-img {
      position: relative;
      height: 220px; overflow: hidden;
    }
    .sc-course-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s;
    }
    .sc-course-card:hover .sc-course-img img { transform: scale(1.05); }
    .sc-course-tag {
      position: absolute; top: 1rem; left: 1rem;
      background: var(--primary);
      color: #fff; font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      padding: 0.25rem 0.7rem; border-radius: 3px;
    }
    .sc-course-body {
      padding: 1.5rem 1.5rem 1.75rem;
      display: flex; flex-direction: column; flex: 1;
    }
    .sc-course-type {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.4rem;
    }
    .sc-course-name {
      font-size: 1.2rem; font-weight: 800;
      color: var(--dark); margin-bottom: 0.3rem;
      line-height: 1.2;
    }
    .sc-course-subtitle {
      font-size: 0.78rem; font-weight: 600;
      color: var(--primary); margin-bottom: 0.85rem;
      text-transform: uppercase; letter-spacing: 0.08em;
    }
    .sc-course-desc {
      font-size: 0.88rem; color: #4a5568;
      line-height: 1.7; flex: 1;
    }
    .sc-course-footer {
      margin-top: 1.25rem; padding-top: 1rem;
      border-top: 1px solid #eef0f5;
      display: flex; align-items: center;
      justify-content: space-between;
    }
    .sc-course-mode {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.75rem; color: var(--text-light); font-weight: 500;
    }
    .sc-course-mode i { color: var(--primary); }
    .btn-sc-course {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--primary); color: #fff !important;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.55rem 1.1rem; border-radius: 5px;
      text-decoration: none;
      transition: background 0.25s;
    }
    .btn-sc-course:hover { background: var(--primary-dark); }

    /* ==============================
       SURGICAL COACH
    ============================== */
    .sc-coach {
      background: var(--dark);
      padding: 0;
      overflow: hidden;
    }
    .sc-coach-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
    }
    .sc-coach-left {
      padding: 5rem 4rem 5rem 0;
      display: flex; flex-direction: column;
      justify-content: center;
    }
    .sc-coach-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(0,180,216,0.15);
      border: 1px solid rgba(0,180,216,0.35);
      border-radius: 3px;
      padding: 0.3rem 0.9rem;
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      width: fit-content;
    }
    .sc-coach-title {
      font-size: clamp(2.5rem, 4vw, 3.8rem);
      font-weight: 800; color: #fff;
      line-height: 1.0; margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .sc-coach-subtitle {
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 1.75rem;
    }
    .sc-coach-desc {
      font-size: 0.92rem; color: rgba(255,255,255,0.7);
      line-height: 1.85; margin-bottom: 2rem;
      max-width: 500px;
    }
    .sc-coach-bullets {
      list-style: none; padding: 0;
      display: flex; flex-direction: column; gap: 0.6rem;
      margin-bottom: 2.5rem;
    }
    .sc-coach-bullets li {
      display: flex; align-items: flex-start; gap: 0.7rem;
      font-size: 0.88rem; color: rgba(255,255,255,0.75);
      line-height: 1.5;
    }
    .sc-coach-bullets li i { color: var(--accent); margin-top: 0.15rem; flex-shrink: 0; }
    .btn-sc-coach {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--accent);
      color: #fff !important;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.85rem 2rem; border-radius: 4px;
      text-decoration: none; width: fit-content;
      transition: background 0.3s;
    }
    .btn-sc-coach:hover { background: #009ab8; }

    .sc-coach-right {
      position: relative; overflow: hidden;
    }
    .sc-coach-right img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }
    .sc-coach-right::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(13,27,42,0.5) 0%, transparent 50%);
    }

    /* ==============================
       RESPONSIVE
    ============================== */
    @media (max-width: 991px) {
      .sc-coach-inner {
        grid-template-columns: 1fr;
      }
      .sc-coach-left {
        padding: 4rem 0 3rem;
      }
      .sc-coach-right {
        height: 360px;
      }
      .sc-hero h1 { font-size: 2.8rem; }
    }

     .poc-hero {
      background: linear-gradient(135deg, #001f4d 0%, #0057A8 100%);
      padding: 4rem 0 3rem;
      position: relative;
      overflow: hidden;
    }
    .poc-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 55px 55px;
      pointer-events: none;
    }
    .poc-hero-inner { position: relative; z-index: 2; }
    .poc-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 4px;
      padding: 0.3rem 1rem;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.25rem;
    }
    .poc-hero h1 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800; color: #fff;
      line-height: 1.15; margin-bottom: 0.75rem;
    }
    .poc-hero-desc {
      font-size: 1rem; font-weight: 300;
      color: rgba(255,255,255,0.75);
      max-width: 600px; line-height: 1.7;
    }

    /* ==============================
       BODY
    ============================== */
    .poc-body { background: #fff; padding: 5rem 0; }

    /* Section label */
    .poc-section-label {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--primary);
      display: flex; align-items: center; gap: 0.6rem;
      margin-bottom: 0.6rem;
    }
    .poc-section-label::before {
      content: ''; width: 18px; height: 2px; background: var(--primary);
    }

    /* ---- INFO BLOCK (icon + title + text) ---- */
    .poc-block { margin-bottom: 4rem; }
    .poc-block:last-child { margin-bottom: 0; }

    .poc-block-header {
      display: flex; align-items: flex-start; gap: 1.25rem;
      margin-bottom: 1.25rem;
    }
    .poc-block-icon {
      width: 48px; height: 48px; min-width: 48px;
      background: var(--light-bg);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--primary);
      border: 1px solid rgba(0,87,168,0.1);
    }
    .poc-block-title {
      font-size: 1.05rem; font-weight: 800;
      color: var(--dark); margin-bottom: 0;
      padding-top: 0.6rem;
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .poc-block-body {
      font-size: 0.93rem; color: #4a5568;
      line-height: 1.85;
    }
    .poc-block-body p { margin-bottom: 0.85rem; }
    .poc-block-body p:last-child { margin-bottom: 0; }
    .poc-block-body strong { color: var(--dark); font-weight: 700; }

    /* ---- LINK CTA ---- */
    .poc-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--primary); font-weight: 600; font-size: 0.88rem;
      text-decoration: none; margin-top: 0.75rem;
      border-bottom: 1.5px solid rgba(0,87,168,0.25);
      padding-bottom: 0.1rem;
      transition: border-color 0.25s, color 0.25s;
    }
    .poc-link:hover { color: var(--primary-dark); border-color: var(--primary); }

    /* ---- DURATION CARDS ---- */
    .poc-duration-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1.25rem;
    }
    .poc-duration-card {
      background: var(--light-bg);
      border: 1px solid rgba(0,87,168,0.1);
      border-radius: 10px;
      padding: 1.25rem 1.25rem 1.1rem;
    }
    .poc-duration-days {
      font-size: 2rem; font-weight: 800;
      color: var(--primary); line-height: 1;
      margin-bottom: 0.25rem;
    }
    .poc-duration-label {
      font-size: 0.8rem; font-weight: 700;
      color: var(--dark); text-transform: uppercase;
      letter-spacing: 0.06em; margin-bottom: 0.4rem;
    }
    .poc-duration-desc {
      font-size: 0.8rem; color: var(--text-light); line-height: 1.5;
    }

    /* ---- ALERT BOX ---- */
    .poc-alert {
      background: #fff8ec;
      border: 1.5px solid #f4b942;
      border-radius: 10px;
      padding: 1.1rem 1.25rem;
      display: flex; gap: 0.9rem; align-items: flex-start;
      margin-top: 1.25rem;
    }
    .poc-alert i { color: #f4b942; font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
    .poc-alert-text { font-size: 0.88rem; color: #5a4200; line-height: 1.65; }
    .poc-alert-text strong { color: #3a2a00; }

    /* ---- DIVIDER ---- */
    .poc-divider {
      border: none;
      border-top: 1px solid #eef0f5;
      margin: 0.5rem 0;
    }

    /* ---- MAP / LOCATION CARD ---- */
    .poc-location-card {
      border: 1.5px solid rgba(0,87,168,0.12);
      border-radius: 14px;
      overflow: hidden;
    }
    .poc-map-placeholder {
      background: linear-gradient(135deg, #e8f0fb 0%, #d0e3f7 100%);
      height: 220px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 0.5rem;
      border-bottom: 1px solid rgba(0,87,168,0.1);
    }
    .poc-map-placeholder i { font-size: 2.5rem; color: var(--primary); opacity: 0.5; }
    .poc-map-placeholder span { font-size: 0.78rem; color: var(--text-light); }
    .poc-location-info {
      padding: 1.25rem 1.5rem;
      display: flex; flex-direction: column; gap: 0.75rem;
    }
    .poc-location-row {
      display: flex; align-items: flex-start; gap: 0.75rem;
      font-size: 0.88rem; color: var(--text);
      line-height: 1.5;
    }
    .poc-location-row i { color: var(--primary); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
    .poc-location-row strong { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.15rem; }

    /* ---- CONTACT CTA ---- */
    .poc-contact-box {
      background: linear-gradient(105deg, #0a1a2e, #1a3a5c, #2060a0);
      border-radius: 14px;
      padding: 2rem 2rem;
      margin-top: 2rem;
      display: flex; align-items: center;
      justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    }
    .poc-contact-text {
      font-size: 1rem; font-weight: 700; color: #fff;
    }
    .poc-contact-text span {
      display: block; font-size: 0.82rem;
      font-weight: 400; color: rgba(255,255,255,0.65); margin-top: 0.2rem;
    }
    .poc-contact-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .btn-poc-wpp {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: #25D366; color: #fff !important;
      font-weight: 700; font-size: 0.8rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.8rem 1.4rem; border-radius: 6px;
      text-decoration: none; transition: background 0.3s; white-space: nowrap;
    }
    .btn-poc-wpp:hover { background: #1da851; }
    .btn-poc-email {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.35);
      color: #fff !important;
      font-weight: 600; font-size: 0.8rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.8rem 1.4rem; border-radius: 6px;
      text-decoration: none; transition: all 0.3s; white-space: nowrap;
    }
    .btn-poc-email:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.65); }

    @media (max-width: 767px) {
      .poc-duration-grid { grid-template-columns: 1fr; }
      .poc-contact-box { flex-direction: column; align-items: flex-start; }
    }

    .contact-hero {
      background: linear-gradient(135deg, #001f4d 0%, #0057A8 100%);
      padding: 4rem 0 3rem;
      position: relative; overflow: hidden;
    }
    .contact-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 55px 55px; pointer-events: none;
    }
    .contact-hero-inner { position: relative; z-index: 2; }
    .contact-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      border-radius: 4px; padding: 0.3rem 1rem;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.9); margin-bottom: 1.25rem;
    }
    .contact-hero h1 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
      color: #fff; line-height: 1.15; margin-bottom: 0.75rem;
    }
    .contact-hero-desc {
      font-size: 1rem; font-weight: 300;
      color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.7;
    }

    .locais-section { background: #fff; padding: 5rem 0; }
    .locais-section-label {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--primary); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem;
    }
    .locais-section-label::before { content: ''; width: 18px; height: 2px; background: var(--primary); }
    .locais-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--dark); margin-bottom: 3rem; }

    .clinic-card {
      border: 1.5px solid rgba(0,87,168,0.12); border-radius: 14px;
      overflow: hidden; height: 100%; display: flex; flex-direction: column;
      transition: box-shadow 0.3s;
    }
    .clinic-card:hover { box-shadow: 0 12px 40px rgba(0,87,168,0.1); }
    .clinic-map { width: 100%; height: 240px; overflow: hidden; background: #e8f0fb; }
    .clinic-map iframe { width: 100%; height: 100%; border: none; display: block; }
    .clinic-body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
    .clinic-tag {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--light-bg); border: 1px solid rgba(0,87,168,0.12); border-radius: 4px;
      padding: 0.2rem 0.7rem; font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
      margin-bottom: 0.9rem; width: fit-content;
    }
    .clinic-name { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
    .clinic-unit { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
    .clinic-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
    .clinic-info-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: #4a5568; line-height: 1.5; }
    .clinic-info-list li i { color: var(--primary); font-size: 0.95rem; margin-top: 0.15rem; flex-shrink: 0; }
    .clinic-info-list li strong { color: var(--dark); display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.1rem; }
    .clinic-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #eef0f5; display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .btn-clinic-maps {
      display: inline-flex; align-items: center; gap: 0.45rem;
      background: var(--primary); color: #fff !important; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.07em; text-transform: uppercase; padding: 0.65rem 1.25rem;
      border-radius: 6px; text-decoration: none; transition: background 0.25s;
    }
    .btn-clinic-maps:hover { background: var(--primary-dark); }
    .btn-clinic-wpp {
      display: inline-flex; align-items: center; gap: 0.45rem;
      background: #25D366; color: #fff !important; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.07em; text-transform: uppercase; padding: 0.65rem 1.25rem;
      border-radius: 6px; text-decoration: none; transition: background 0.25s;
    }
    .btn-clinic-wpp:hover { background: #1da851; }

    /* ===================== NAVBAR ===================== */
    .navbar {
      background: transparent;
      padding: 1rem 0;
      border-bottom: none;
      transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.3s ease;
    }
    /* Transparent state — links white */
    .navbar:not(.scrolled) .navbar-brand-name { color: #fff !important; }
    .navbar:not(.scrolled) .navbar-brand-sub { color: rgba(255,255,255,0.6) !important; }
    .navbar:not(.scrolled) .navbar-nav .nav-link { color: rgba(255,255,255,0.9) !important; }
    .navbar:not(.scrolled) .navbar-nav .nav-link::after { background: #fff; }
    .navbar:not(.scrolled) .navbar-nav .nav-link:hover { color: #fff !important; }
    .navbar:not(.scrolled) .btn-agendar {
      background: rgba(255,255,255,0.15) !important;
      border: 1px solid rgba(255,255,255,0.5);
      color: #fff !important;
      backdrop-filter: blur(6px);
    }
    .navbar:not(.scrolled) .btn-agendar:hover {
      background: #fff !important;
      color: var(--primary) !important;
    }
    .navbar:not(.scrolled) .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Scrolled state — white solid */
    .navbar.scrolled {
      background-image: linear-gradient(to bottom, #284C6C, #4E94D2);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,87,168,0.08);
      box-shadow: 0 4px 30px rgba(0,87,168,0.1);
      padding: 0.6rem 0;
    }
    .navbar.scrolled .navbar-brand-name { color: var(--primary) !important; }
    .navbar.scrolled .navbar-brand-sub { color: var(--text-light) !important; }
    .navbar.scrolled .navbar-nav .nav-link { color: var(--white) !important; }
    .navbar.scrolled .navbar-nav .nav-link::after { background: #fff; }
    .navbar.scrolled .navbar-nav .nav-link:hover { color: var(--primary) !important; }
    .navbar.scrolled .btn-agendar {
      background: var(--primary) !important;
      border: none;
      color: #fff !important;
    }
    .navbar.scrolled .btn-agendar:hover { background: var(--primary-dark) !important; }
    .navbar.scrolled .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Mobile nav open always white bg */
    .navbar-collapse.show, .navbar-collapse.collapsing {
      background: rgba(255,255,255,0.98);
      border-radius: 0 0 8px 8px;
      padding: 0.5rem 1rem 1rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .navbar-collapse.show .nav-link,
    .navbar-collapse.collapsing .nav-link {
      color: var(--text) !important;
    }
    .navbar-brand {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }
    .navbar-brand-name {
      font-size: 1.35rem;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--primary);
      transition: color 0.4s;
    }
    .navbar-brand-sub {
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      display: block;
      line-height: 1;
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: color 0.4s;
    }
    .brand-wrap { display: flex; flex-direction: column; line-height: 1.1; }
    .navbar-nav .nav-link {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 0.5rem 0.55rem !important;
    position: relative;
    transition: color 0.3s;
}
    .navbar-nav .nav-link:not(.dropdown-toggle)::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 0.5px;
      background: var(--primary);
      transition: all 0.3s ease;
    }
    .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
    .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
      left: 0.75rem; right: 0.75rem;
    }
    .navbar-nav .nav-link:hover { color: var(--primary) !important; }
    .btn-agendar {
      background: var(--primary);
      color: #fff !important;
      border-radius: 2px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.55rem 1.2rem !important;
      transition: background 0.3s, transform 0.2s, border 0.3s, color 0.3s;
    }
    .btn-agendar:hover {
      background: var(--primary-dark) !important;
      transform: translateY(-1px);
    }
    .btn-agendar::after { display: none !important; }
    .navbar-toggler {
      border: none;
      padding: 0.3rem;
    }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230057A8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1250px !important;
}

/* Fix hero row não vazar em mobile */
@media (max-width: 991px) {
  .hero-section .row {
    overflow: hidden;
  }

  /* hero-nums posicionado em absoluto precisa ficar dentro da tela */
  .hero-nums {
    position: relative;
    bottom: auto;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
}

    /* ===================== HERO / BANNER ===================== */
    .hero-section {
      min-height: 100vh;
      background-image: url('../img/fundo-capa.jpg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 0;
      height: 90vh
    }
    /* Subtle left-side gradient so text stays legible */
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0, 25, 65, 0.72) 0%,
        rgba(0, 40, 100, 0.45) 45%,
        rgba(0, 0, 0, 0.0) 75%
      );
      z-index: 1;
    }
    .hero-bg-pattern { display: none; }
    .hero-grid-lines { display: none; }
    /* ---- Logo brand ---- */
    .brand-logo-wrap { display: flex; align-items: center; gap: 0.65rem; }
    .brand-icon svg circle, .brand-icon svg line { transition: stroke 0.4s, fill 0.4s; }
    .navbar:not(.scrolled) .brand-icon svg circle[stroke="#0057A8"],
    .navbar:not(.scrolled) .brand-icon svg line { stroke: #fff; }
    .navbar:not(.scrolled) .brand-icon svg circle[fill="#0057A8"] { fill: #fff; }
    .navbar:not(.scrolled) .brand-icon svg circle[fill="#fff"] { fill: var(--primary); }
    .navbar-brand-name {
      font-size: 1.35rem;
      font-weight: 900;
      font-family: 'Plus Jakarta Sans', sans-serif;
      letter-spacing: 0.08em;
      color: var(--primary);
      line-height: 1;
      transition: color 0.4s;
    }
    .navbar-brand-sub {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      display: block;
      line-height: 1;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 400;
      transition: color 0.4s;
      color: var(--text-light);
    }

    /* ---- Dropdown ---- */
    .dropdown-menu-dark-custom {
      background: rgba(5, 20, 50, 0.97);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
      padding: 0.5rem 0;
      min-width: 260px;
      margin-top: 0.5rem !important;
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    }
    .dropdown-menu-dark-custom .dropdown-item {
      color: rgba(255,255,255,0.75);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      padding: 0.35rem 1.25rem;
      transition: all 0.2s;
    }
    .dropdown-menu-dark-custom .dropdown-item:hover {
      background: var(--primary);
      color: #fff;
    }
    .dropdown-divider-custom {
      border-color: rgba(255,255,255,0.1);
      margin: 0.25rem 0;
    }
    /* Arrow on transparent navbar */
    /* Reset Bootstrap caret completely, then draw chevron */
    .dropdown-toggle::after {
    display: inline-block !important;
    content: '' !important;
    width: 0.68em !important;
    height: 0.68em !important;
    border: 0 !important;
    border-right: 1.5px solid rgba(255,255,255,0.85) !important;
    border-bottom: 1.5px solid rgba(255,255,255,0.85) !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    transform: rotate(45deg);
    margin-left: 0.5em !important;
    vertical-align: 0.12em !important;
    transition: transform 0.25s ease;
    position: relative;
    top: -2px;
}
    .navbar.scrolled .dropdown-toggle::after {
      border-right-color: #fff !important;
      border-bottom-color: #fff !important;
    }
    .dropdown-toggle.show::after {
      transform: rotate(-135deg) !important;
      vertical-align: -0.1em !important;
    }

    /* ---- Hero title block with left blue bar ---- */
    .hero-title-block {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      margin-bottom: 0.5rem;
    }
    .hero-left-bar {
      width: 4px;
      min-width: 4px;
      height: 100%;
      align-self: stretch;
      background: var(--primary);
      border-radius: 2px;
      min-height: 120px;
    }
    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin: 0 0 0.6rem;
    }
    .hero-title strong {
      font-weight: 800;
      display: block;
      color: #fff;
    }
    .hero-subtitle {
      font-size: clamp(0.95rem, 1.6vw, 1.15rem);
      color: rgba(255,255,255,0.8);
      font-weight: 300;
      margin: 0;
      line-height: 1.65;
    }
    .banner-slide { display: none; }
    .banner-slide.active { display: block; }
    .banner-slide .hero-title-block { animation: fadeSlideIn 0.7s ease both; }
    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ---- CTA ---- */
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--primary);
      color: #fff !important;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.95rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 6px 24px rgba(0,87,168,0.5);
    }
    .hero-cta:hover {
      background: #fff;
      color: var(--primary) !important;
      transform: translateY(-2px);
    }

    /* ---- Numbered slide nav ---- */
    .hero-nums {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem;
    padding-left: calc(4px + 1.25rem + 0.1rem);
    position: absolute;
    bottom: 80px;
}
    .hero-num {
      background: none;
      border: none;
      color: rgba(255,255,255,0.4);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s;
      position: relative;
      line-height: 1;
    }


    .hero-num.active {
      color: #fff;
      font-weight: 700;
    }
    .hero-num.active::after {
      content: '';
      position: absolute;
      bottom: -5px; left: 0; right: 0;
      height: 2px;
      background: var(--primary);
      border-radius: 1px;
    }
    .hero-num:hover { color: rgba(255,255,255,0.8); }

    /* ---- Doctor info card ---- */
    .hero-doctor-card {
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 3px;
      padding: 1.1rem 1.6rem 1.25rem;
      position: relative;
      background: rgba(0,0,0,0.12);
      backdrop-filter: blur(4px);
      text-align: left;
      min-width: 220px;
    }
    .hero-doctor-badge {
      position: absolute;
      top: -1px; right: -1px;
      background: var(--primary);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      padding: 0.2rem 0.65rem;
      border-radius: 0 3px 0 3px;
    }
    .hero-doctor-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-top: 0.5rem;
    }
    .hero-doctor-crm {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.06em;
      margin-top: 0.35rem;
    }
    .hero-content { position: relative; z-index: 2; width: 100%; }

    /* ===================== SECTION COMMON ===================== */
    .section-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.75rem;
    }
    .section-eyebrow::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--primary);
    }
    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .section-title strong { font-weight: 700; color: var(--primary); }
    .divider-line {
      width: 50px; height: 2px;
      background: var(--gold);
      margin: 1.2rem 0;
    }

    /* ===================== ABOUT ===================== */
    .about-section {
      padding: 6rem 0 5rem;
      background: #f8fafd;
      position: relative;
    }
    /* subtle watermark pattern like in the screenshot */
    .about-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        rgba(0,87,168,0.025) 0px,
        rgba(0,87,168,0.025) 1px,
        transparent 1px,
        transparent 40px
      );
      pointer-events: none;
    }
    .about-eyebrow {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.6rem;
    }
    .about-heading {
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .about-body {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.85;
    }
    .about-body p { margin-bottom: 1.1rem; }
    .about-body strong { color: var(--dark); font-weight: 700; }

    /* 4 blue full-width buttons in 2x2 grid */
    .about-btn-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.65rem;
      margin-top: 2rem;
    }
    .about-btn-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 0.9rem 1rem;
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.25s;
      text-align: center;
      line-height: 1.2;
    }
    .about-btn-primary:hover {
      background: var(--primary-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,87,168,0.3);
    }

    /* "Saiba Mais" label + pill links */
    .about-saiba-mais {
      margin-top: 1.75rem;
    }
    .about-saiba-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.75rem;
    }
    .about-pill-links {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .about-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      border: 1.5px solid rgba(0,87,168,0.3);
      border-radius: 50px;
      padding: 0.45rem 1.1rem;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--dark);
      text-decoration: none;
      transition: all 0.25s;
    }
    .about-pill img { width: 18px; height: 18px; object-fit: contain; }
    .about-pill:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .about-pill-icon {
      width: 20px; height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--primary);
      transition: color 0.25s;
    }
    .about-pill:hover .about-pill-icon { color: #fff; }

    /* Image — rounded rect, portrait */
    .about-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .about-img-wrap img {
      width: 100%;
      max-width: 420px;
      height: 660px;
      object-fit: cover;
      object-position: top center;
      border-radius: 18px;
      display: block;
    }
    /* circular eye icon overlay on top-right of image */
    .about-img-badge {
      position: absolute;
      top: 1.2rem;
      right: calc(50% - 210px + 1rem);
      width: 52px; height: 52px;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
    }
    .about-img-badge svg { width: 26px; height: 26px; }

    /* ===================== CORNEANA ===================== */
    .corneana-section {
      padding: 6rem 0 5rem;
      background: #1a3a5c;
      position: relative;
      overflow: hidden;
    }
    .corneana-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(0,120,220,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .corneana-title {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      text-align: center;
      margin-bottom: 1.25rem;
    }
    .corneana-intro {
      max-width: 820px;
      margin: 0 auto 3.5rem;
      text-align: center;
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    /* Carousel cards */
    .swiper-corneana { position: relative; padding: 0 0 0.5rem; }

   .swiper-corneana .swiper-slide {
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* background: rgba(255,255,255,0.1); */
    border: 2px solid #4D92D0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3.25rem 3rem;
    transition: background 0.3s;
}
    .swiper-corneana .swiper-slide:hover {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.3);
    }
    /* eye icon top center */
    .cornea-card-eye {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    position: relative;
    top: -24px;
    }
    .cornea-card-eye svg { width: 22px; height: 22px; }
    /* Title centered */
    .cornea-card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      text-align: center;
      margin: 0;
    }
    /* + button bottom right */
    .cornea-card-plus {
      position: absolute;
      bottom: 1rem; right: 1rem;
      width: 34px; height: 34px;
      background: rgba(0,0,0,0.25);
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 0.85rem;
      transition: all 0.3s;
    }
    .swiper-corneana .swiper-slide:hover .cornea-card-plus {
      background: var(--primary);
      border-color: var(--primary);
    }
    /* hide old elements no longer used */
    .cornea-card-bg, .cornea-card-overlay,
    .cornea-card-content, .cornea-card-title-bar, .cornea-card-saiba { display: none; }

    /* Swiper nav arrows — outside carousel, floating on sides */
    .swiper-corneana-wrap {
      position: relative;
      padding: 0px;
    }
    .swiper-button-prev, .swiper-button-next {
    color: #555 !important;
    background: #fff;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    top: 56% !important;
    transform: translateY(-50%);
    transition: background 0.3s, color 0.3s;
}
    .swiper-button-prev { left: 6 !important; }
    .swiper-button-next { right: 6 !important; }
    .swiper-button-prev:hover, .swiper-button-next:hover {
      background: var(--primary);
      color: #fff !important;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after { font-size: 0.8rem !important; font-weight: 900; }

    /* Outras Cirurgias */
    .outras-section { margin-top: 4rem; position: relative; z-index: 1; }
    .outras-title {
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .outra-card {
      background: #0057A8;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 1.5rem 1.4rem 1.4rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 120px;
      transition: all 0.3s;
      height: 100%;
      position: relative;
    }
    .outra-card:hover {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.3);
      transform: translateY(-3px);
    }
    .outra-card-title {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
      margin: 0 0 1rem;
    }
    .outra-card-btn {
      width: 34px; height: 34px;
      min-width: 34px;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s;
      align-self: flex-end;
    }
    .outra-card-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      transform: rotate(45deg);
    }

    /* Bottom description text */
    .corneana-footer-text {
      margin-top: 3.5rem;
      text-align: center;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.55);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.75;
    }

    /* ===================== SURGICAL CORNEA COURSE ===================== */
    .course-section {
      padding: 6rem 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .course-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 50%, rgba(0,87,168,0.3) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0,180,216,0.1) 0%, transparent 40%);
    }
    .course-content { position: relative; z-index: 2; }
    .course-logo-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 700;
      line-height: 0.95;
      background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .course-subtitle-text {
      font-size: 1rem;
      color: rgba(255,255,255,0.6);
      margin: 1.25rem 0 2rem;
      line-height: 1.7;
    }
    .course-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px;
      padding: 0.4rem 1rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }
    .btn-course {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      transition: all 0.3s;
      margin-top: 20px;
    }
    .btn-course:hover {
      background: #fff;
      color: var(--primary);
      transform: translateY(-2px);

    }
    .course-images-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 0.5rem;
      height: 630px;
    }
    .course-img {
      overflow: hidden;
      border-radius: 3px;
    }
    .course-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.7) saturate(0.8);
      transition: filter 0.4s;
    }
    .course-img:first-child {
      grid-row: 1 / 3;
    }
    .course-img:hover img { filter: brightness(0.9) saturate(1); }

    /* ===================== DEPOIMENTOS ===================== */
    .testimonials-section {
      padding: 7rem 0;
      background: #fff;
    }
    .swiper-testimonials {
      padding-bottom: 3.5rem !important;
    }
    .testimonial-card {
      background: var(--light-bg);
      border-radius: 4px;
      padding: 2.5rem;
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 6rem;
      color: var(--primary);
      opacity: 0.15;
      position: absolute;
      top: -0.5rem;
      left: 1.5rem;
      line-height: 1;
    }
    .testimonial-stars {
      color: #f4b942;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .testimonial-text {
      font-size: 1.02rem;
      color: var(--text);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 1.5rem;
      position: relative;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .testimonial-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
    }
    .testimonial-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--dark);
    }
    .testimonial-verified {
      font-size: 0.72rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .swiper-pagination-bullet {
      background: var(--primary) !important;
      opacity: 0.3 !important;
    }
    .swiper-pagination-bullet-active {
      opacity: 1 !important;
      width: 20px !important;
      border-radius: 3px !important;
    }

    /* ===================== PACIENTES OUTRAS CIDADES ===================== */
    .outras-cidades {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      position: relative;
      overflow: hidden;
    }
    .outras-cidades::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .outras-cidades .section-eyebrow { color: rgba(255,255,255,0.7); }
    .outras-cidades .section-eyebrow::before { background: rgba(255,255,255,0.4); }
    .outras-cidades .section-title { color: #fff; }
    .outras-cidades p { color: rgba(255,255,255,0.75); line-height: 1.8; }
    .btn-cidades {
      background: #fff;
      color: var(--primary) !important;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
    }
    .btn-cidades:hover {
      background: var(--accent);
      color: #fff !important;
      transform: translateY(-2px);
    }


    .cidades-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
    }
    .cidade-icon {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.7);
      font-size: 0.82rem;
    }
    .cidade-icon i { color: var(--accent); }

    /* ===================== FOOTER ===================== */
    /* ===================== FOOTER V2 ===================== */
    footer.footer-v2 {
      background: #fff;
      padding: 0;
      border-top: 1px solid #e5e8ed;
    }

    /* Faixa de marca: col-12, logo+tagline à esq, social à dir */
    .footer-brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 2.5rem 0 1.75rem;
    }

    .footer-brand-left {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-brand-divider {
      border: none;
      border-top: 1px solid #e5e8ed;
      margin: 0;
    }

    /* Grid de links: 4 colunas iguais */
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem 2.5rem;
      padding: 2.5rem 0 2.5rem;
      align-items: start;
    }

    .footer-col-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-logo-wrap {
      display: inline-block;
      text-decoration: none;
      flex-shrink: 0;
    }

    .footer-logo-wrap img {
      max-height: 52px;
      width: auto;
      display: block;
    }

    .footer-tagline {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.65;
      margin: 0;
      max-width: 340px;
    }

    .footer-social-top {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    .social-link {
      width: 36px; height: 36px;
      background: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 0.88rem;
      transition: all 0.3s;
    }
    .social-link:hover { background: #E1306C; color: #fff; }

    .footer-col-title {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      margin: 0 0 1rem;
      padding-bottom: 0.6rem;
      border-bottom: 2px solid var(--primary);
      display: inline-block;
    }

    .footer-links {
      list-style: none;
      margin: 0; padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .footer-links li a {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
      display: block;
      padding: 0.1rem 0;
    }

    .footer-links li a:hover {
      color: var(--primary);
      padding-left: 4px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid #e5e8ed;
      margin: 0;
    }

    .footer-bottom {
      padding: 1.1rem 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-copy {
      font-size: 0.78rem;
      color: #aaa;
      margin: 0;
      text-align: center;
    }

    /* WhatsApp FAB */
    .whatsapp-fab {
      position: fixed;
      bottom: 2rem; right: 2rem;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(37,211,102,0.4);
      z-index: 1000;
      transition: all 0.3s;
    }
    .whatsapp-fab:hover {
      background: #1da851;
      transform: scale(1.1);
      color: #fff;
    }

    /* WOW animation delays */
    .wow { visibility: hidden; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .navbar-collapse { padding: 1rem 0; }
      .navbar-nav { gap: 0.25rem; }
      .navbar-nav .nav-link { font-size: 0.9rem; padding: 0.75rem 1rem !important; }
    }
    @media (max-width: 768px) {
      .hero-image-wrap { margin-top: 3rem; max-height: 50vh; overflow: hidden; }
      .hero-image-wrap img { max-height: 50vh; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .course-images-grid { height: 250px; }
      .footer-brand-row { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 2rem 0 1.5rem; }
      .footer-brand-left { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-tagline { max-width: 100%; }
    }
    @media (max-width: 576px) {
      .about-stats { grid-template-columns: 1fr; }
    }


    /* ===================== PAGE HERO / BREADCRUMB ===================== */
    .page-hero {
      background: linear-gradient(135deg, #001f4d 0%, #0057A8 100%);
      padding: 5rem 0 3.5rem;
      position: relative;
      overflow: hidden;
      margin-top: 66px;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 55px 55px;
    }
    .page-hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px; padding: 0.35rem 1rem;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.85);
      margin-bottom: 1.25rem;
    }
    .page-hero h1 {
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 800; color: #fff; margin-bottom: 0.5rem;
    }
    
    .page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    max-width: 780px;
    }
    .pill-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50px;
      padding: 0.5rem 1.2rem; font-size: 0.82rem; font-weight: 600;
      color: #fff; text-decoration: none; transition: all 0.3s;
    }
    .pill-link:hover { background: #fff; color: var(--primary); border-color: #fff; }

    /* Quick nav buttons */
    .quick-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
    .quick-btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--primary); color: #fff;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 6px; padding: 0.6rem 1.1rem;
      font-size: 0.8rem; font-weight: 600; text-decoration: none;
      transition: all 0.3s;
    }
    .quick-btn:hover { background: #fff; color: var(--primary); border-color: #fff; }

    /* Doctor photo in hero */
    .page-hero-img {
      position: relative; z-index: 2;
      display: flex; justify-content: flex-end; align-items: flex-end;
      height: 100%;
    }
    .page-hero-img img {
      max-height: 420px; border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      object-fit: cover; object-position: top;
    }

    /* ===================== INTRO SECTION ===================== */
    .intro-section {
      padding: 5rem 0 4rem;
      background: #fff;
    }
    .intro-lead {
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      font-weight: 400;
      line-height: 1.75;
      color: var(--text);
      border-left: 4px solid var(--primary);
      padding-left: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .intro-lead strong { font-weight: 800; color: var(--dark); }

    /* Quick nav tags */
    .tag-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
    .tag-btn {
      display: inline-flex; align-items: center; gap: 0.35rem;
      background: var(--primary); color: #fff;
      border-radius: 6px; padding: 0.55rem 1.1rem;
      font-size: 0.8rem; font-weight: 600; text-decoration: none;
      transition: all 0.3s; border: 2px solid var(--primary);
    }
    .tag-btn:hover { background: transparent; color: var(--primary); }

    /* ===================== TIMELINE ===================== */
    .timeline-section {
      padding: 5rem 0;
      background: var(--light-bg);
    }
    .section-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--primary);
      display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem;
    }
    .section-eyebrow::before {
      content: ''; width: 24px; height: 2px; background: var(--primary);
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 3rem;
    }
    .timeline { position: relative; padding-left: 0; }
    .timeline::before {
      content: ''; position: absolute;
      left: 18px; top: 8px; bottom: 8px;
      width: 2px; background: rgba(0,87,168,0.15);
    }
    .tl-item {
      display: flex; gap: 1.5rem;
      margin-bottom: 3rem; position: relative;
    }
    .tl-dot {
      flex-shrink: 0;
      width: 38px; height: 38px;
      background: var(--primary); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.65rem; font-weight: 800;
      letter-spacing: 0.04em; z-index: 1;
      box-shadow: 0 0 0 4px rgba(0,87,168,0.12);
      flex-direction: column; line-height: 1.1;
      text-align: center;
    }
    .tl-body {
      background: #fff; border-radius: 10px;
      padding: 1.5rem 1.75rem;
      border: 1px solid rgba(0,87,168,0.08);
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      flex: 1;
      transition: box-shadow 0.3s;
    }
    .tl-body:hover { box-shadow: 0 6px 24px rgba(0,87,168,0.1); }
    .tl-year {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem;
    }
    .tl-title {
      font-size: 1rem; font-weight: 700; color: var(--dark);
      margin-bottom: 0.5rem; line-height: 1.3;
    }
    .tl-text {
      font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin: 0;
    }

    /* Photo strip */
    .photo-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 0.5rem;
      border-radius: 12px;
      overflow: hidden;
      margin: 3rem 0;
    }
    .photo-strip img {
      width: 100%; height: 220px;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .photo-strip img:first-child { height: 100%; }
    .photo-strip > div:hover img { transform: scale(1.04); }
    .photo-strip > div { overflow: hidden; }

    /* ===================== MEMBERSHIPS ===================== */
    .memberships-section {
      padding: 5rem 0;
      background: #fff;
    }
    .member-card {
      background: var(--light-bg);
      border-radius: 10px;
      padding: 1.5rem;
      display: flex; align-items: center; gap: 1rem;
      border: 1px solid rgba(0,87,168,0.08);
      height: 100%;
      transition: all 0.3s;
    }
    .member-card:hover {
      border-color: var(--primary);
      box-shadow: 0 6px 20px rgba(0,87,168,0.1);
      transform: translateY(-3px);
    }
    .member-icon {
      width: 48px; height: 48px; min-width: 48px;
      background: var(--primary); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.3rem;
    }
    .member-name {
      font-size: 0.88rem; font-weight: 700; color: var(--dark); line-height: 1.3;
    }
    .member-type {
      font-size: 0.72rem; color: var(--text-light); margin-top: 0.2rem;
    }

    /* ===================== APPOINTMENT FORM ===================== */
    .appointment-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(105deg, #0a1a2e 0%, #1a3a5c 50%, #2060a0 100%);
      min-height: 420px;
    }

    .appointment-section1 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(105deg, #0a1a2e 0%, #1a3a5c 50%, #2060a0 100%);
    min-height: 420px;
    }

    .appt-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: end;
      min-height: 420px;
    }
    /* Doctor photo — center column, anchored to bottom */
    .appt-doctor {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      height: 100%;
      position: relative;
    }
    .appt-doctor img {
      display: block;
      height: 540px;
      width: auto;
      object-fit: contain;
      object-position: bottom;
      position: relative;
      bottom: 0;
      filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
    }
    /* Left text column */
    .appt-left {
      padding: 4rem 2.5rem 4rem 0;
      align-self: center;
    }
    .appt-heading {
      font-size: clamp(2rem, 3.2vw, 2.8rem);
      font-weight: 800;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }
    .appt-sub {
      font-size: 1.15rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.55;
      margin-bottom: 1.75rem;
    }
    .btn-whatsapp {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: var(--primary); color: #fff !important; font-weight: 700;
      font-size: 0.88rem;
      padding: 0.85rem 1.5rem; border-radius: 50px;
      text-decoration: none; transition: all 0.3s;
      border: 2px solid var(--primary);
    }
    .btn-whatsapp .wh-arrow {
      width: 26px; height: 26px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; flex-shrink: 0;
    }
    .btn-whatsapp:hover { background: rgba(0,87,168,0.7); color: #fff !important; }
    /* Right form column */
    .appt-right {
      padding: 3rem 0 3rem 2.5rem;
      align-self: center;
    }
    .appt-form {
      background: #fff;
      border-radius: 14px;
      padding: 2rem 1.75rem 1.75rem;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .appt-form h4 {
      font-size: 1.05rem; font-weight: 600;
      color: var(--dark); margin-bottom: 1.25rem; text-align: center;
    }
    .form-control-custom {
      width: 100%; padding: 0.78rem 1rem;
      border: 1.5px solid #dde4f0; border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.88rem; color: var(--dark);
      outline: none; transition: border 0.25s;
      margin-bottom: 0.7rem; background: #fff;
    }
    .form-control-custom:focus { border-color: var(--primary); }
    .form-control-custom::placeholder { color: #99a; font-size: 0.85rem; }
    .btn-submit {
      width: 100%; padding: 0.85rem;
      background: var(--primary); color: #fff;
      border: none; border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      cursor: pointer; transition: all 0.3s;
      margin-top: 0.2rem; letter-spacing: 0.04em;
    }
    .btn-submit:hover { background: var(--primary-dark); }
    /* Mobile: hide doctor photo */
    @media (max-width: 991px) {
      .appt-inner {
        grid-template-columns: 1fr;
      }
      .appt-doctor { display: none; }
      .appt-left { padding: 3rem 0 1.5rem; }
      .appt-right { padding: 0 0 3rem; }
    }

    /* ===================== FOOTER V2 ===================== */
    footer.footer-v2 { background: #fff; padding: 0; border-top: 1px solid #e5e8ed; }
    .footer-brand-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2.5rem 0 1.75rem; }
    .footer-brand-left { display: flex; align-items: center; gap: 1.5rem; }
    .footer-brand-divider { border: none; border-top: 1px solid #e5e8ed; margin: 0; }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem 2.5rem;
      padding: 2.5rem 0 2.5rem;
      align-items: start;
    }
    .footer-col-brand { display: flex; flex-direction: column; gap: 1rem; }
    .footer-logo-wrap { display: inline-block; text-decoration: none; flex-shrink: 0; }
    .footer-logo-wrap img { max-height: 52px; width: auto; display: block; }
    .footer-tagline { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; margin: 0; max-width: 340px; }
    .footer-social-top { display: flex; gap: 0.5rem; flex-shrink: 0; }
    .social-link {
      width: 36px; height: 36px; background: var(--dark); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; text-decoration: none; font-size: 0.88rem; transition: all 0.3s;
    }
    .social-link:hover { background: #E1306C; color: #fff; }
    .footer-col-title {
      font-size: 0.65rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--primary); margin: 0 0 1rem; padding-bottom: 0.6rem;
      border-bottom: 2px solid var(--primary); display: inline-block;
    }
    .footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
    .footer-links li a {
      font-size: 0.82rem; font-weight: 500; color: var(--text);
      text-decoration: none; transition: color 0.2s, padding-left 0.2s; display: block; padding: 0.1rem 0;
    }
    .footer-links li a:hover { color: var(--primary); padding-left: 4px; }
    .footer-divider { border: none; border-top: 1px solid #e5e8ed; margin: 0; }
    .footer-bottom { padding: 1.1rem 0; display: flex; align-items: center; justify-content: center; }
    .footer-copy { font-size: 0.78rem; color: #aaa; margin: 0; text-align: center; }

    /* WhatsApp FAB */
    .whatsapp-fab {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 56px; height: 56px; background: #25D366;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.5rem; text-decoration: none;
      box-shadow: 0 6px 20px rgba(37,211,102,0.4); z-index: 1000; transition: all 0.3s;
    }
    .whatsapp-fab:hover { background: #1da851; transform: scale(1.1); color: #fff; }

    /* WOW */
    .wow { visibility: hidden; }



    @media (max-width: 768px) {
      .photo-strip { grid-template-columns: 1fr 1fr; }
      .photo-strip > div:first-child { grid-column: 1 / 3; }
      .timeline::before { left: 16px; }
      .footer-brand-row { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 2rem 0 1.5rem; }
      .footer-brand-left { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2.5rem 0 1.5rem; }
      .footer-col-brand { grid-column: 1 / -1; flex-direction: column; }


      .navbar-collapse.show, .navbar-collapse.collapsing {
        background: rgb(0 87 168);
        max-width: 100%;
        overflow-x: hidden;
      }

      .page-hero p {

    font-size: 1rem;
    max-width: initial;
    }

      .depo{
     width: 200px
    }

      .footer-nav li {
    display: block;
    width: 100%;
    }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-copy { text-align: center; }

    .hero-doctor-name {
    font-size: 1rem;
}

    .hero-cta {
    font-size: 0.7rem;
    }

    .hero-title {
    font-size: clamp(1.7rem, 4vw, 3.2rem);
    width: 65%;
}

         .sc-hero-inner {
    top: -30px;
    }

      .page-hero-img {
        justify-content: left;
        align-items: left;
      }

      .navbar-nav .nav-link {
        font-size: 0.7rem;
        padding: 0.45rem 0.5rem !important;
      }

      .offcanvas {
        bottom: -20px;
      }

      /* ── Dropdown mobile: posição estática + scroll ── */
      .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        border-radius: 0;
        background: rgba(0, 30, 80, 0.55) !important;
        padding: 0.25rem 0;

        /* scroll quando há muitos itens */
        max-height: 55vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;

        /* scrollbar discreta */
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
      }
      .navbar-nav .dropdown-menu::-webkit-scrollbar {
        width: 4px;
      }
      .navbar-nav .dropdown-menu::-webkit-scrollbar-track {
        background: transparent;
      }
      .navbar-nav .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 4px;
      }

      .navbar-nav .dropdown-item {
        font-size: 0.72rem;
        padding: 0.55rem 1.25rem;
        color: rgba(255,255,255,0.85) !important;
        white-space: normal;
        line-height: 1.4;
      }
      .navbar-nav .dropdown-item:hover,
      .navbar-nav .dropdown-item:focus {
        background: rgba(255,255,255,0.12);
        color: #fff !important;
      }

      .navbar-nav .dropdown-divider-custom,
      .navbar-nav hr.dropdown-divider-custom {
        border-color: rgba(255,255,255,0.2);
        margin: 0.25rem 0;
      }
    }

      /* ===================== PROCEDURE HERO ===================== */
    .proc-hero {
      background: linear-gradient(135deg, #001f4d 0%, #0057A8 100%);
      padding: 4rem 0 3rem;
      position: relative;
      overflow: hidden;
    }
    .proc-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 55px 55px;
      pointer-events: none;
    }
    .proc-hero-inner { position: relative; z-index: 2; }
    .proc-breadcrumb {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 4px;
      padding: 0.3rem 1rem;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.25rem;
      text-decoration: none;
      transition: background 0.25s;
    }
    .proc-breadcrumb:hover { background: rgba(255,255,255,0.2); color: #fff; }
    .proc-hero h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; color: #fff;
      line-height: 1.1; margin-bottom: 0;
    }
    .proc-hero-meta {
      display: flex; gap: 1.5rem; flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .proc-meta-item {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.8rem; color: rgba(255,255,255,0.75);
      font-weight: 500;
    }
    .proc-meta-item i { color: var(--accent); font-size: 1rem; }

    /* ===================== PROCEDURE BODY ===================== */
    .proc-body {
      padding: 5rem 0 4rem;
      background: #fff;
    }

    /* Left column — text */
    .proc-text-col {}

    /* Intro paragraph — first and most important */
    .proc-intro {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
      padding-left: 1.25rem;
    }
    .proc-intro strong { font-weight: 700; color: var(--dark); }

    /* Body paragraphs */
    .proc-p {
      font-size: 0.95rem;
      line-height: 1.85;
      color: #4a5568;
      margin-bottom: 1.5rem;
    }

    /* Highlight bullets */
    .proc-bullets {
      list-style: none;
      padding: 0; margin: 2rem 0;
      display: flex; flex-direction: column; gap: 0.65rem;
    }
    .proc-bullets li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      font-size: 0.92rem; color: var(--text); line-height: 1.55;
    }
    .proc-bullets li i {
      color: var(--primary); font-size: 1rem;
      margin-top: 0.15rem; flex-shrink: 0;
    }

    /* Divider label */
    .proc-section-label {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--primary);
      display: flex; align-items: center; gap: 0.6rem;
      margin: 2.5rem 0 1rem;
    }
    .proc-section-label::before {
      content: ''; width: 20px; height: 2px; background: var(--primary);
    }

    /* Right column — illustration + callout */
    .proc-media-col {}

    /* Illustration card */
    .proc-illus-card {
      border-radius: 12px;
      overflow: hidden;
      background: #f8fafd;
      margin-bottom: 1.25rem;
    }
    .proc-illus-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Quote / highlight card */
    .proc-quote-card {
      border: 1.5px solid rgba(0,87,168,0.15);
      border-radius: 12px;
      padding: 1.75rem 1.5rem;
      background: var(--light-bg);
      position: relative;
      overflow: hidden;
    }
    .proc-quote-card::before {
      content: '\201C';
      position: absolute;
      top: -0.75rem; left: 1rem;
      font-size: 7rem; font-weight: 800;
      color: var(--primary); opacity: 0.08;
      line-height: 1;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .proc-quote-text {
      font-size: 1.05rem; font-weight: 600;
      color: var(--dark); line-height: 1.55;
      position: relative; z-index: 1;
    }

    /* Info box — laser */
    .proc-info-box {
      margin-top: 1.25rem;
      background: linear-gradient(135deg, #0057A8 0%, #1a6dc0 100%);
      border-radius: 12px;
      padding: 1.5rem 1.5rem;
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .proc-info-box-icon {
      width: 42px; height: 42px; min-width: 42px;
      background: rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: #fff;
    }
    .proc-info-box-text {
      font-size: 0.88rem; color: rgba(255,255,255,0.92);
      line-height: 1.65;
    }
    .proc-info-box-text strong {
      display: block; font-size: 0.92rem;
      color: #fff; margin-bottom: 0.25rem;
    }

    /* Alert / current status box */
    .proc-alert {
      margin-top: 1.25rem;
      background: #fff8ec;
      border: 1.5px solid #f4b942;
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .proc-alert i {
      color: #f4b942; font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem;
    }
    .proc-alert-text {
      font-size: 0.88rem; color: #5a4200; line-height: 1.65;
    }
    .proc-alert-text strong { color: #3a2a00; }

    /* CTA strip */
    .proc-cta-strip {
      margin-top: 3rem;
      background: linear-gradient(100deg, #001f4d 0%, #0057A8 100%);
      border-radius: 14px;
      padding: 2rem 2.5rem;
      display: flex; align-items: center;
      justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    }
    .proc-cta-strip-text {
      font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.3;
    }
    .proc-cta-strip-text span {
      display: block; font-size: 0.85rem;
      font-weight: 400; color: rgba(255,255,255,0.7); margin-top: 0.25rem;
    }
    .proc-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .btn-proc-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: #fff; color: var(--primary) !important;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.8rem 1.5rem; border-radius: 6px;
      text-decoration: none; transition: all 0.3s; white-space: nowrap;
    }
    .btn-proc-primary:hover { background: var(--accent); color: #fff !important; }
    .btn-proc-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.4);
      color: #fff !important;
      font-weight: 600; font-size: 0.82rem;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.8rem 1.5rem; border-radius: 6px;
      text-decoration: none; transition: all 0.3s; white-space: nowrap;
    }
    .btn-proc-secondary:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.7);
    }