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

    :root {
      --bg: #f7f5f2;
      --primary: #c8b8a7;
      --accent: #cd5f37;
      --text: #3d2b22;
      --muted: #8f7d71;
      --white: #ffffff;
    }

    body {
      background: #ebeae6;
      font-family: 'Inter', sans-serif;
      display: flex;
      justify-content: center;
      padding: 40px 0;
      color: var(--text);
    }

    .phone {
      width: 430px;
      background: var(--bg);
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
      border: 8px solid #ffffff;
      position: relative;
      display: flex;
      flex-direction: column;
      padding-bottom: 100px;
    }

    @media (max-width: 768px) {
      body {
        padding: 0;
        background: var(--bg);
      }

      .phone {
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        overflow: visible;
        height: auto;
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
      }
    }

    /* ===== HEADER ===== */
    .header {
      background: white;
      padding: 18px 24px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 42px;
      width: auto;
      display: block;
    }

    .header-actions {
      display: flex;
      gap: 8px;
    }

    .circle {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f5f2ef;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      cursor: pointer;
      border: none;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .circle:hover {
      background: #ebe5df;
      transform: scale(1.05);
    }

    .circle:active {
      transform: scale(0.95);
    }

    .circle i {
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle.whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #lottie-whatsapp {
      width: 38px !important;
      height: 38px !important;
      max-width: 38px !important;
      max-height: 38px !important;
      overflow: hidden !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    #lottie-whatsapp svg {
      width: 24px !important;
      height: 24px !important;
      max-width: 24px !important;
      max-height: 24px !important;
      display: block !important;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 390px;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      padding: 36px 24px 60px;
      border-bottom-left-radius: 48px;
      border-bottom-right-radius: 48px;
      background: #c7b19f !important;
    }

    .hero-image {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 115%;
      height: 100%;
      object-fit: cover;
      object-position: 90% center;
      transform: scale(0.88);
      transform-origin: 100% 100%;
      z-index: 1;
    }

    /* Soft overlay for readability */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(61, 43, 34, 0.15) 0%, rgba(0, 0, 0, 0) 65%);
      z-index: 2;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: 60%;
    }

    .tag {
      font-size: 8px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 14px;
      font-weight: 600;
      text-transform: uppercase;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .hero h2 {
      font-family: 'Playfair Display', serif;
      color: white;
      font-size: 36px;
      line-height: 1.05;
      font-weight: 400;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero h2 span {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: white;
      font-weight: 400;
    }

    .cta {
      margin-bottom: 12px;
      display: block;
    }

    .btn {
      background: var(--accent);
      color: white;
      border: none;
      width: 135px;
      height: 45px;
      border-radius: 22.5px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 8px 24px rgba(205, 95, 55, 0.3);
      cursor: pointer;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      line-height: 1.2;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 16px;
    }

    .btn:hover {
      background: #bd502b;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(205, 95, 55, 0.4);
    }

    .btn:active {
      transform: translateY(0);
    }

    .video-cta {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: white;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s ease;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }

    .video-cta:hover {
      opacity: 0.9;
    }

    .video-cta .play-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.2s ease;
    }

    .video-cta .play-btn i {
      font-size: 8px !important;
      margin-left: 2px;
    }

    .video-cta:hover .play-btn {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.08);
    }

    /* ===== STARS DECORATION ===== */
    .stars {
      position: absolute;
      inset: 0;
      pointer-events: none;
      /* Omit parent z-index so child elements can stack individually */
    }

    .star {
      position: absolute;
      color: white;
      opacity: 0.95;
      pointer-events: none;
      filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
      z-index: 0; /* Default: behind the hero image (z-index: 1) */
    }

    /* Slow, elegant floating and sparkling animations for each star */
    @keyframes floatSparkle-1 {
      0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
      }
      25% {
        transform: translate(4px, -3px) scale(1.08);
        opacity: 0.75;
      }
      50% {
        transform: translate(6px, -9px) scale(1.15);
        opacity: 1;
      }
      75% {
        transform: translate(2px, -6px) scale(1.05);
        opacity: 0.8;
      }
    }

    @keyframes floatSparkle-2 {
      0%, 100% {
        transform: translate(0, 0) scale(0.95);
        opacity: 0.5;
      }
      25% {
        transform: translate(-3px, 2px) scale(1.05);
        opacity: 0.7;
      }
      50% {
        transform: translate(-7px, 5px) scale(1.2);
        opacity: 0.95;
      }
      75% {
        transform: translate(-4px, 1px) scale(1.08);
        opacity: 0.75;
      }
    }

    @keyframes floatSparkle-3 {
      0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.55;
      }
      25% {
        transform: translate(4px, -1px) scale(1.08);
        opacity: 0.75;
      }
      50% {
        transform: translate(8px, -4px) scale(1.15);
        opacity: 1;
      }
      75% {
        transform: translate(3px, -2px) scale(1.08);
        opacity: 0.8;
      }
    }

    @keyframes floatSparkle-4 {
      0%, 100% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.5;
      }
      25% {
        transform: translate(-1px, 4px) scale(1.0);
        opacity: 0.7;
      }
      50% {
        transform: translate(-3px, 10px) scale(1.1);
        opacity: 0.9;
      }
      75% {
        transform: translate(-2px, 5px) scale(1.0);
        opacity: 0.7;
      }
    }

    .star-1 {
      top: 20%;
      right: 10%;
      width: 22px;
      height: 22px;
      animation: floatSparkle-1 11s infinite ease-in-out;
    }

    .star-2 {
      top: 36%;
      right: 3%;
      width: 12px;
      height: 12px;
      animation: floatSparkle-2 8s infinite ease-in-out;
      animation-delay: 1.5s;
    }

    .star-3 {
      top: 44%;
      left: 43%;
      width: 15px;
      height: 15px;
      animation: floatSparkle-3 13s infinite ease-in-out;
      animation-delay: 3s;
      z-index: 2; /* In front of the hero image (z-index: 1), but behind buttons (z-index: 3) */
    }

    .star-4 {
      top: 52%;
      left: 8%;
      width: 14px;
      height: 14px;
      animation: floatSparkle-4 9s infinite ease-in-out;
      animation-delay: 4.5s;
    }

    /* ===== GOOGLE RATING PILL ===== */
    .google-rating {
      position: relative !important;
      margin-top: -20px !important;
      margin-bottom: -20px !important;
      margin-left: auto !important;
      margin-right: auto !important;
      width: max-content !important;
      background: white !important;
      padding: 8px 20px !important;
      border-radius: 20px !important;
      box-shadow: 0 10px 25px rgba(61, 43, 34, 0.06) !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 3px !important;
      color: var(--text) !important;
      white-space: nowrap !important;
      z-index: 10 !important;
      border: 1px solid rgba(0, 0, 0, 0.01) !important;
    }

    .rating-top {
      display: flex !important;
      align-items: center !important;
      gap: 6px !important;
    }

    .google-rating svg {
      width: 18px !important;
      height: 18px !important;
    }

    .google-rating .rating-num {
      color: var(--text) !important;
      font-weight: 700 !important;
      font-size: 14px !important;
    }

    .google-rating .rating-stars {
      font-size: 12px !important;
      color: #ffb400 !important;
      display: flex !important;
      gap: 2px !important;
    }

    .google-rating .rating-count {
      font-size: 9px !important;
      color: var(--muted) !important;
      font-weight: 500 !important;
    }

    /* ===== SOBRE NÓS ===== */
    .sobre-nos {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 20px;
      padding: 42px 24px 24px;
      background: var(--bg);
      align-items: center;
    }

    .sobre-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.25;
    }

    .sobre-content p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--muted);
      margin: 0;
    }

    .sobre-image {
      height: 110px;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(61, 43, 34, 0.06);
    }

    .sobre-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    /* ===== BOTTOM NAVIGATION ===== */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 430px;
      background: white;
      border: none;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 16px 12px 24px;
      z-index: 100;
      box-shadow: 0 -10px 30px rgba(61, 43, 34, 0.05);
      border-top-left-radius: 28px;
      border-top-right-radius: 28px;
    }

    @media (max-width: 768px) {
      .bottom-nav {
        width: 100%;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
      }
    }

    .nav-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      transition: all 0.2s ease;
      position: relative;
      flex: 1;
      text-align: center;
    }

    .nav-tab.active {
      color: var(--accent);
    }

    .nav-tab.active span::after {
      content: '';
      display: block;
      width: 4px;
      height: 4px;
      background: var(--accent);
      border-radius: 50%;
      margin: 3px auto 0;
    }

    .nav-tab i {
      font-size: 22px;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-tab:hover i {
      transform: translateY(-2px);
    }

    /* ===== VIEW SYSTEM & TRANSITIONS ===== */
    .view-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      flex: 1;
      min-height: calc(100% - 72px); /* Subtract header height */
      opacity: 1 !important;
      animation: fadeInSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes fadeInSlideUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== EM BREVE (PLACEHOLDER) ===== */
    .coming-soon {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 24px;
      text-align: center;
      color: var(--text);
      gap: 16px;
      flex: 1;
    }

    .coming-soon i {
      font-size: 48px;
      color: var(--primary);
      animation: floatSparkle-3 6s infinite ease-in-out;
    }

    .coming-soon h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 500;
    }

    .coming-soon p {
      font-size: 14px;
      color: var(--muted);
      max-width: 280px;
      line-height: 1.5;
    }

    /* ===== NOSSOS TRATAMENTOS (SERVIÇOS) ===== */
    .treatments-container {
      padding: 24px 0 0;
      background: var(--bg);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .treatments-header {
      padding: 0 24px;
      margin-bottom: 24px;
    }

    .treatments-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .treatments-header p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--muted);
    }

    /* FILTERS Horizontal Scrollable Row */
    .filter-scroll-wrapper {
      position: relative;
      margin-bottom: 24px;
      width: 100%;
    }

    .filter-pills {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 0 24px;
      scrollbar-width: none; /* Firefox */
    }

    .filter-pills::-webkit-scrollbar {
      display: none; /* Safari & Chrome */
    }

    .pill {
      background: rgba(61, 43, 34, 0.04);
      color: var(--text);
      border: none;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pill:hover {
      background: rgba(61, 43, 34, 0.08);
    }

    .pill.active {
      background: var(--accent);
      color: white;
      box-shadow: 0 4px 12px rgba(205, 95, 55, 0.25);
    }

    /* TREATMENTS CARDS LIST */
    .treatments-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 0 24px 32px;
    }

    .treatment-card {
      display: flex;
      align-items: center;
      background: var(--white);
      border-radius: 24px;
      padding: 12px;
      box-shadow: 0 4px 16px rgba(61, 43, 34, 0.02);
      border: 1px solid rgba(61, 43, 34, 0.01);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .treatment-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(61, 43, 34, 0.06);
    }

    .treatment-card:active {
      transform: translateY(0) scale(0.99);
    }

    /* CARD IMAGE CONTAINER WITH FALLBACK STYLES */
    .card-img-wrapper {
      width: 84px;
      height: 84px;
      border-radius: 18px;
      position: relative;
      overflow: hidden;
      /* Soft sophisticated warm gray/beige gradient fallback */
      background: linear-gradient(135deg, #f5f2ef 0%, #ebe5df 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
    }

    .card-img-wrapper i {
      font-size: 28px;
      opacity: 0.6;
      transition: transform 0.3s ease;
    }

    .treatment-card:hover .card-img-wrapper i {
      transform: scale(1.1) rotate(5deg);
    }

    .card-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0; /* Starts hidden and fades in eleganty when loaded */
      transition: opacity 0.3s ease;
    }

    /* CARD BODY CONTENT */
    .card-body {
      flex: 1;
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .card-body h3 {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.2px;
    }

    .card-body p {
      font-size: 12px;
      line-height: 1.4;
      color: var(--muted);
      margin: 0 0 2px 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* "Saiba mais" text button */
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      text-decoration: none;
      width: fit-content;
      transition: gap 0.2s ease;
    }

    .card-link i {
      font-size: 12px;
      transition: transform 0.2s ease;
    }

    .treatment-card:hover .card-link {
      gap: 6px;
    }

    .treatment-card:hover .card-link i {
      transform: translateX(2px);
    }

    /* CARD SIDE ARROW */
    .card-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      opacity: 0.25;
      transition: all 0.25s ease;
      flex-shrink: 0;
    }

    .card-arrow i {
      font-size: 18px;
    }

    .treatment-card:hover .card-arrow {
      opacity: 0.8;
      background: rgba(61, 43, 34, 0.03);
      color: var(--accent);
      transform: translateX(2px);
    }
    /* ===== TELA DE AGENDA (EMPTY STATE) ===== */
    .agenda-container {
      padding: 24px 0 0;
      background: var(--bg);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .agenda-header {
      padding: 0 24px;
      margin-bottom: 24px;
      position: relative;
    }

    .agenda-header .back-btn {
      position: absolute;
      top: -4px;
      left: 18px;
      font-size: 24px;
      cursor: pointer;
      color: var(--text);
      transition: color 0.2s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
    }

    .agenda-header .back-btn:hover {
      background: rgba(61, 43, 34, 0.04);
      transform: translateX(-2px);
    }

    .agenda-header.has-back {
      padding-left: 64px;
    }

    .agenda-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .agenda-header p {
      font-size: 13px;
      line-height: 1.6;
      color: var(--muted);
      margin: 0;
    }

    /* Card Agenda Vazia */
    .empty-agenda-card {
      background: var(--white);
      border-radius: 32px;
      padding: 36px 24px;
      margin: 0 24px 32px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(61, 43, 34, 0.03);
      border: 1px solid rgba(61, 43, 34, 0.01);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .calendar-icon-wrapper {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: #fdfcfb;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border: 1px solid rgba(200, 184, 167, 0.15);
    }

    .calendar-icon-wrapper i {
      font-size: 36px;
      color: var(--muted);
    }

    /* Small decorative floating sparkles around calendar */
    .calendar-icon-wrapper::before, .calendar-icon-wrapper::after {
      content: '✦';
      position: absolute;
      color: var(--primary);
      font-size: 12px;
      opacity: 0.6;
    }
    .calendar-icon-wrapper::before {
      top: 15px;
      left: -10px;
      animation: floatSparkle-4 7s infinite ease-in-out;
    }
    .calendar-icon-wrapper::after {
      bottom: 20px;
      right: -12px;
      animation: floatSparkle-3 8s infinite ease-in-out;
      animation-delay: 2s;
    }

    .empty-agenda-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }

    .empty-agenda-card p {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.5;
      max-width: 210px;
      margin: 0 auto;
    }

    .btn-large {
      background: var(--accent);
      color: white;
      border: none;
      width: 100%;
      height: 48px;
      border-radius: 24px;
      font-size: 14.5px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(205, 95, 55, 0.25);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-large:hover {
      background: #bd502b;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(205, 95, 55, 0.35);
    }

    .btn-large:active {
      transform: translateY(0);
    }

    /* Dúvidas Frequentes Section */
    .faq-section {
      padding: 0 24px;
      margin-bottom: 28px;
    }

    .faq-section h3.section-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 16px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid rgba(61, 43, 34, 0.02);
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.01);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-question {
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      user-select: none;
      gap: 12px;
    }

    .faq-question i {
      font-size: 16px;
      color: var(--muted);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.6;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Active accordion states */
    .faq-item.active {
      box-shadow: 0 8px 20px rgba(61, 43, 34, 0.03);
      border-color: rgba(200, 184, 167, 0.15);
    }

    .faq-item.active .faq-question {
      color: var(--accent);
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
      color: var(--accent);
    }

    .faq-item.active .faq-answer {
      padding-bottom: 20px;
      max-height: 120px; /* arbitrary max height for smooth slide-down */
    }

    /* Card Lembrete */
    .reminder-card {
      background: #f5efea;
      border-radius: 24px;
      padding: 20px;
      margin: 0 24px 36px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      border: 1px solid rgba(200, 184, 167, 0.15);
    }

    .reminder-icon-box {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(61, 43, 34, 0.02);
    }

    .reminder-icon-box i {
      font-size: 18px;
    }

    .reminder-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .reminder-content h4 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
    }

    .reminder-content p {
      font-size: 12px;
      line-height: 1.5;
      color: var(--muted);
      margin: 0;
    }


    /* ===== TELA DE AGENDAMENTO (FLOW) ===== */
    /* Steps indicator bar */
    .steps-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      margin-bottom: 28px;
      position: relative;
    }

    /* The connector lines behind circles */
    .steps-line {
      position: absolute;
      top: 15px;
      left: 60px;
      right: 60px;
      height: 1px;
      background: #ebeae6;
      z-index: 1;
    }

    .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
      flex: 1;
      text-align: center;
    }

    .step-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: white;
      border: 1px solid #ebeae6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      transition: all 0.3s ease;
    }

    .step-label {
      font-size: 10.5px;
      font-weight: 500;
      color: var(--muted);
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    /* Active step styling */
    .step-item.active .step-circle {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
      box-shadow: 0 4px 10px rgba(205, 95, 55, 0.2);
    }

    .step-item.active .step-label {
      color: var(--text);
      font-weight: 700;
    }

    /* Calendar Block Styling */
    .section-subtitle {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 14px;
      padding: 0 24px;
    }

    .calendar-card {
      background: var(--white);
      border-radius: 28px;
      padding: 22px 20px;
      margin: 0 24px 28px;
      box-shadow: 0 6px 20px rgba(61, 43, 34, 0.02);
      border: 1px solid rgba(61, 43, 34, 0.01);
    }

    .calendar-month-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding: 0 4px;
    }

    .calendar-month-header h4 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text);
    }

    .calendar-nav-btn {
      border: none;
      background: none;
      font-size: 16px;
      color: var(--text);
      cursor: pointer;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }

    .calendar-nav-btn:hover {
      background: rgba(61, 43, 34, 0.04);
    }

    .calendar-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
      margin-bottom: 12px;
    }

    .calendar-weekdays span {
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      opacity: 0.65;
    }

    .calendar-days-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      row-gap: 8px;
    }

    .day-num {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      border-radius: 50%;
      transition: all 0.2s ease;
      user-select: none;
      position: relative;
    }

    .day-num:hover:not(.empty-day):not(.selected) {
      background: rgba(61, 43, 34, 0.05);
    }

    .day-num.empty-day {
      color: var(--muted);
      opacity: 0.25;
      cursor: default;
    }

    .day-num.selected {
      background: var(--accent);
      color: white;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(205, 95, 55, 0.3);
    }

    /* Time Slots block styling */
    .time-header-line {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      margin: 0 24px 16px;
    }

    .time-header-line i {
      font-size: 14px;
    }

    .time-slots-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 0 24px;
      margin-bottom: 16px;
    }

    .time-slot {
      height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(61, 43, 34, 0.1);
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
    }

    .time-slot:hover:not(.selected) {
      background: rgba(61, 43, 34, 0.02);
      border-color: rgba(61, 43, 34, 0.2);
    }

    .time-slot.selected {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(205, 95, 55, 0.25);
    }

    .time-timezone-info {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10.5px;
      color: var(--muted);
      padding: 0 24px;
      margin-bottom: 32px;
    }

    .time-timezone-info i {
      font-size: 12px;
    }

    .flow-actions {
      padding: 0 24px 40px;
    }

    /* Modal / Alert de Confirmação */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(61, 43, 34, 0.6);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      backdrop-filter: blur(4px);
      animation: fadeInOverlay 0.3s ease forwards;
    }

    @keyframes fadeInOverlay {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .success-modal {
      background: white;
      border-radius: 36px;
      padding: 36px 24px;
      width: 100%;
      max-width: 360px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      animation: zoomInModal 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    @keyframes zoomInModal {
      from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .success-icon-box {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(205, 95, 55, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }

    .success-icon-box i {
      font-size: 36px;
    }

    .success-modal h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--text);
    }

    .success-modal p {
      font-size: 13px;
      line-height: 1.5;
      color: var(--muted);
      max-width: 250px;
    }

    .success-modal .detail-box {
      background: #f7f5f2;
      border-radius: 16px;
      padding: 14px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: left;
      font-size: 12px;
      color: var(--text);
      border: 1px solid rgba(200, 184, 167, 0.1);
    }

    .success-modal .detail-item {
      display: flex;
      justify-content: space-between;
    }

    .success-modal .detail-label {
      color: var(--muted);
      font-weight: 500;
    }

    .success-modal .detail-value {
      font-weight: 600;
    }
    /* Banner CTA no final dos Procedimentos */
    .treatments-cta-banner {
      background: var(--accent);
      border-radius: 28px;
      padding: 24px;
      margin: 8px 24px 36px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(205, 95, 55, 0.25);
    }

    .cta-banner-content {
      width: 65%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cta-banner-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.25;
      color: white;
    }

    .cta-banner-content p {
      font-size: 12px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.9);
      margin: 0;
    }

    .cta-banner-btn {
      background: white;
      color: var(--accent);
      border: none;
      height: 40px;
      padding: 0 20px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      width: max-content;
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-banner-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .cta-banner-btn:active {
      transform: translateY(0);
    }

    .cta-banner-illustration {
      width: 30%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
    }

    .cta-banner-illustration i {
      font-size: 64px;
      opacity: 0.9;
    }

    /* Small decorative star next to the big icon */
    .cta-banner-illustration::before {
      content: '✦';
      position: absolute;
      top: -4px;
      right: 0px;
      color: white;
      font-size: 12px;
      opacity: 0.8;
      animation: floatSparkle-3 6s infinite ease-in-out;
    }


    /* ===== CENTRAL DE PERFIL (TODAS AS 9 TELAS) ===== */
    .profile-container {
      padding: 24px 0 0;
      background: var(--bg);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* Avatar section */
    .profile-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      margin-bottom: 28px;
    }

    .avatar-wrapper {
      position: relative;
      width: 100px;
      height: 100px;
      margin-bottom: 16px;
    }

    .avatar-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid white;
      box-shadow: 0 8px 24px rgba(61, 43, 34, 0.08);
      display: block;
    }

    .avatar-camera-btn {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--accent);
      color: white;
      border: 2px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(205, 95, 55, 0.3);
      transition: all 0.2s ease;
    }

    .avatar-camera-btn i {
      font-size: 14px;
    }

    .avatar-camera-btn:hover {
      transform: scale(1.1);
      background: #bd502b;
    }

    .profile-hero h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .profile-hero p {
      font-size: 13px;
      color: var(--muted);
    }

    /* Próximo agendamento card */
    .next-appointment-section {
      padding: 0 24px;
      margin-bottom: 32px;
    }

    .next-appointment-section h4.section-title, .quick-access-section h4.section-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 14px;
    }

    .appointment-mini-card {
      background: var(--white);
      border-radius: 24px;
      padding: 16px;
      display: flex;
      gap: 16px;
      align-items: center;
      box-shadow: 0 4px 16px rgba(61, 43, 34, 0.02);
      border: 1px solid rgba(61, 43, 34, 0.01);
    }

    .appointment-mini-img {
      width: 58px;
      height: 58px;
      border-radius: 14px;
      object-fit: cover;
      flex-shrink: 0;
      /* Pastel fallback */
      background: linear-gradient(135deg, #f5f2ef 0%, #ebe5df 100%);
    }

    .appointment-mini-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .appointment-mini-info h5 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
    }

    .appointment-mini-detail {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--muted);
    }

    .appointment-mini-detail i {
      font-size: 12px;
    }

    .btn-details {
      background: #f7f5f2;
      color: var(--text);
      border: none;
      padding: 6px 14px;
      border-radius: 14px;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background 0.2s ease;
      white-space: nowrap;
      margin-left: 8px;
    }

    .btn-details:hover {
      background: #ebe5df;
    }

    /* Acesso rápido grid */
    .quick-access-section {
      padding: 0 24px;
      margin-bottom: 28px;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .quick-item {
      background: var(--white);
      border-radius: 20px;
      padding: 18px 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.015);
      border: 1px solid rgba(61, 43, 34, 0.01);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      user-select: none;
    }

    .quick-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(61, 43, 34, 0.05);
      border-color: rgba(200, 184, 167, 0.15);
    }

    .quick-item:active {
      transform: translateY(0);
    }

    .quick-icon-box {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: #fdfcfb;
      border: 1px solid rgba(200, 184, 167, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
    }

    .quick-icon-box i {
      font-size: 18px;
    }

    .quick-item span {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    /* Banner Indique e Ganhe */
    .referral-banner {
      background: #f5efea;
      border-radius: 24px;
      padding: 20px;
      margin: 0 24px 36px;
      display: flex;
      gap: 16px;
      align-items: center;
      border: 1px solid rgba(200, 184, 167, 0.15);
      position: relative;
      overflow: hidden;
    }

    .referral-content {
      width: 70%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .referral-content h5 {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text);
    }

    .referral-content p {
      font-size: 11.5px;
      line-height: 1.5;
      color: var(--muted);
      margin: 0;
    }

    .referral-content .btn-link {
      color: var(--accent);
      font-size: 11.5px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s ease;
      width: max-content;
    }

    .referral-content .btn-link:hover {
      opacity: 0.8;
    }

    .referral-illustration {
      width: 30%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .referral-illustration i {
      font-size: 46px;
      opacity: 0.7;
    }


    /* Form inputs and controls (Editar Perfil) */
    .form-section {
      padding: 0 24px 36px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
    }

    .input-wrapper {
      position: relative;
      width: 100%;
    }

    .input-control {
      width: 100%;
      height: 46px;
      border-radius: 12px;
      border: 1px solid rgba(61, 43, 34, 0.12);
      background: white;
      padding: 0 16px;
      font-size: 13px;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      transition: all 0.2s ease;
    }

    .input-control:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(205, 95, 55, 0.08);
    }

    .input-wrapper i {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 16px;
      pointer-events: none;
    }

    /* Gender segment control */
    .gender-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .gender-option {
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(61, 43, 34, 0.12);
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
    }

    .gender-option:hover {
      background: rgba(61, 43, 34, 0.01);
    }

    .gender-option.selected {
      border-color: var(--accent);
      background: rgba(205, 95, 55, 0.04);
      color: var(--accent);
      font-weight: 600;
    }

    /* Switch styling */
    .switch-group {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0;
    }

    .switch-group label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text);
    }

    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 48px;
      height: 26px;
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .switch-slider {
      position: absolute;
      cursor: pointer;
      inset: 0;
      background-color: #ebeae6;
      transition: .3s;
      border-radius: 34px;
    }

    .switch-slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: .3s;
      border-radius: 50%;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .toggle-switch input:checked + .switch-slider {
      background-color: var(--accent);
    }

    .toggle-switch input:focus + .switch-slider {
      box-shadow: 0 0 1px var(--accent);
    }

    .toggle-switch input:checked + .switch-slider:before {
      transform: translateX(22px);
    }


    /* Status Badge styling */
    .status-badge {
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 10.5px;
      font-weight: 700;
      width: fit-content;
      text-transform: capitalize;
    }

    .status-badge.confirmado {
      background: #e3f6ed;
      color: #107c41;
    }

    .status-badge.pendente {
      background: #fff7e6;
      color: #b25900;
    }


    /* Timeline List (Histórico) */
    .timeline-container {
      padding: 0 24px 36px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Vertical axis line */
    .timeline-container::before {
      content: '';
      position: absolute;
      top: 30px;
      bottom: 60px;
      left: 36px;
      width: 2px;
      background: #ebeae6;
    }

    .timeline-item {
      display: flex;
      gap: 18px;
      position: relative;
      margin-bottom: 24px;
    }

    .timeline-badge {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--accent);
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 12px;
      flex-shrink: 0;
      box-shadow: 0 0 0 4px var(--bg);
    }

    .timeline-item:nth-child(even) .timeline-badge {
      border-color: var(--primary);
      color: var(--primary);
    }

    .timeline-card {
      background: var(--white);
      border-radius: 20px;
      padding: 16px;
      flex: 1;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.015);
      border: 1px solid rgba(61, 43, 34, 0.01);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .timeline-card-header {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .timeline-card-header h4 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
    }

    .timeline-card-detail {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--muted);
    }


    /* Favorites list item */
    .favorites-list {
      padding: 0 24px 36px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .favorite-card {
      display: flex;
      align-items: center;
      background: var(--white);
      border-radius: 20px;
      padding: 12px;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.015);
      border: 1px solid rgba(61, 43, 34, 0.01);
      position: relative;
    }

    .favorite-img {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      object-fit: cover;
      flex-shrink: 0;
      background: linear-gradient(135deg, #f5f2ef 0%, #ebe5df 100%);
    }

    .favorite-body {
      flex: 1;
      padding: 0 12px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .favorite-body h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    .favorite-body p {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.4;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .favorite-body .link-text {
      font-size: 10px;
      font-weight: 700;
      color: var(--accent);
      cursor: pointer;
    }

    .favorite-heart-btn {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #cd3737;
      cursor: pointer;
      font-size: 18px;
    }


    /* Menu list (Configurações) */
    .menu-group {
      background: var(--white);
      border-radius: 24px;
      padding: 8px 0;
      margin: 0 24px 20px;
      box-shadow: 0 4px 16px rgba(61, 43, 34, 0.015);
      border: 1px solid rgba(61, 43, 34, 0.01);
    }

    .menu-group-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--muted);
      text-transform: uppercase;
      margin: 12px 24px 8px;
      padding-left: 4px;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 24px;
      cursor: pointer;
      color: var(--text);
      transition: background 0.2s ease;
    }

    .menu-item:hover {
      background: rgba(61, 43, 34, 0.01);
    }

    .menu-item span {
      font-size: 13px;
      font-weight: 500;
    }

    .menu-item i {
      font-size: 14px;
      color: var(--muted);
      opacity: 0.7;
    }


    /* Address card styling */
    .address-card {
      background: var(--white);
      border-radius: 20px;
      padding: 18px;
      margin: 0 24px 14px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.015);
      border: 1px solid rgba(61, 43, 34, 0.01);
      position: relative;
    }

    .address-icon-wrapper {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: #fdfcfb;
      border: 1px solid rgba(200, 184, 167, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
    }

    .address-icon-wrapper i {
      font-size: 16px;
    }

    .address-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .address-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .address-card-header h4 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
    }

    .address-body p {
      font-size: 12px;
      line-height: 1.5;
      color: var(--muted);
      margin: 0;
    }

    .tag-badge {
      background: #e3f6ed;
      color: #107c41;
      font-size: 9.5px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
    }


    /* Help / Support contact cards */
    .support-card {
      background: var(--white);
      border-radius: 20px;
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.01);
      border: 1px solid rgba(61, 43, 34, 0.01);
      cursor: pointer;
      transition: all 0.2s ease;
      margin: 0 24px 10px;
      user-select: none;
    }

    .support-card:hover {
      background: rgba(61, 43, 34, 0.01);
      border-color: rgba(200, 184, 167, 0.15);
    }

    .support-left {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .support-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
    }

    .support-value {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    .support-icon {
      font-size: 18px;
      color: var(--accent);
    }

    .support-icon.whatsapp {
      color: #25d366;
    }

    .social-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--white);
      border-radius: 20px;
      padding: 16px 20px;
      margin: 0 24px 36px;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.01);
      border: 1px solid rgba(61, 43, 34, 0.01);
    }

    .social-left {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .social-left h5 {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    .social-left span {
      font-size: 11.5px;
      color: var(--accent);
      font-weight: 700;
    }

    .social-icons-wrapper {
      display: flex;
      gap: 12px;
      color: var(--text);
    }

    .social-icons-wrapper a {
      font-size: 20px;
      color: var(--text);
      opacity: 0.6;
      transition: all 0.2s ease;
    }

    .social-icons-wrapper a:hover {
      color: var(--accent);
      opacity: 1;
      transform: scale(1.1);
    }

    /* ===== TELA DE DETALHE DE PROCEDIMENTO ===== */

    .procedure-detail-container {
      background: var(--bg);
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      padding-bottom: 96px; /* Space for fixed pricing bar at bottom */
    }

    /* Top banner image */
    .procedure-banner {
      height: 320px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px 24px 30px;
    }

    .procedure-banner-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.9;
      /* Soft sophisticated warm gray/beige gradient fallback */
      background: linear-gradient(135deg, #c7b19f 0%, #ebe5df 100%);
    }

    /* Sophisticated dual linear gradient overlay for readability of white text */
    .procedure-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(61, 43, 34, 0.45) 0%, rgba(61, 43, 34, 0.1) 40%, rgba(61, 43, 34, 0.85) 100%);
      z-index: 2;
    }

    .procedure-banner-actions {
      position: absolute;
      top: 28px;
      left: 24px;
      right: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    .procedure-banner-actions .circle {
      background: white;
      color: var(--text);
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.08);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .procedure-banner-actions .circle:hover {
      transform: scale(1.05);
      background: #fdfbf9;
    }

    .procedure-banner-actions .circle:active {
      transform: scale(0.95);
    }

    .procedure-banner-content {
      position: relative;
      z-index: 5;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .procedure-banner-content .tag-badge {
      background: var(--white);
      color: var(--accent);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 12px;
      width: fit-content;
      box-shadow: 0 2px 6px rgba(61, 43, 34, 0.06);
    }

    .procedure-banner-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      font-weight: 500;
      color: white;
      line-height: 1.15;
      margin: 6px 0;
      text-shadow: 0 2px 4px rgba(61, 43, 34, 0.15);
    }

    .procedure-banner-content p {
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.95);
      margin: 0;
      max-width: 90%;
      text-shadow: 0 1px 2px rgba(61, 43, 34, 0.1);
    }

    /* Benefits Floating overlap Card */
    .benefits-overlap-card {
      background: var(--white);
      border-radius: 28px;
      padding: 20px 12px;
      margin: -20px 24px 28px;
      position: relative;
      z-index: 10;
      box-shadow: 0 10px 30px rgba(61, 43, 34, 0.04);
      border: 1px solid rgba(200, 184, 167, 0.12);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      text-align: center;
    }

    .benefit-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .benefit-icon-wrapper {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fdfbf9;
      border: 1.5px solid rgba(205, 95, 55, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .benefit-item:hover .benefit-icon-wrapper {
      transform: scale(1.08) translateY(-2px);
      border-color: var(--accent);
      background: rgba(205, 95, 55, 0.04);
    }

    .benefit-icon-wrapper i {
      font-size: 19px;
    }

    .benefit-item span {
      font-size: 10px;
      font-weight: 600;
      line-height: 1.25;
      color: var(--text);
      display: block;
    }

    /* Indications split section */
    .indications-section {
      padding: 0 24px 28px;
    }

    .indications-card {
      background: var(--white);
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(61, 43, 34, 0.02);
      border: 1px solid rgba(200, 184, 167, 0.12);
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
    }

    .indications-left {
      width: 55%;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .indications-left h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin: 0;
      letter-spacing: -0.2px;
    }

    .indications-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .indication-bullet {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--text);
      line-height: 1.4;
    }

    .indication-bullet i {
      color: var(--accent);
      font-size: 15px;
      margin-top: 2px;
      font-weight: 800;
    }

    .indications-right {
      width: 42%;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      position: relative;
    }

    .indications-face-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 5;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 50%;
    }

    /* Fixed price/agendar bar at the bottom of the container */
    .procedure-pricing-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 86px;
      background: white;
      border-top: 1px solid rgba(61, 43, 34, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 24px calc(env(safe-area-inset-bottom) / 2);
      box-shadow: 0 -8px 24px rgba(61, 43, 34, 0.03);
      z-index: 20;
    }

    .pricing-bar-left {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .pricing-bar-left .label {
      font-size: 11px;
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .pricing-bar-left .price {
      font-size: 23px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .pricing-bar-right {
      width: 55%;
    }

    .pricing-bar-right .btn-large {
      height: 46px;
      font-size: 14px;
      font-weight: 600;
    }

    /* Checkbox tags (Pills) styling */
    .tag-checkbox-label input[type="checkbox"]:checked + .tag-checkbox-pill {
      background: var(--accent) !important;
      color: white !important;
      border-color: var(--accent) !important;
      box-shadow: 0 4px 10px rgba(205, 95, 55, 0.2);
    }
    
    .tag-checkbox-pill {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 16px;
      background: #fdfbf9;
      color: var(--text);
      font-size: 11.5px;
      font-weight: 500;
      border: 1.5px solid rgba(61, 43, 34, 0.12);
      cursor: pointer;
      user-select: none;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .tag-checkbox-pill:hover {
      background: rgba(61, 43, 34, 0.02);
      border-color: rgba(61, 43, 34, 0.2);
    }

    /* Dynamic Procedure Details Upgrades */
    .proc-mobile-section {
      padding: 0 24px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .proc-mobile-section h3 {
      font-family: 'Marcellus', serif;
      font-size: 19px;
      font-weight: 500;
      color: var(--primary);
      margin: 0;
    }
    
    .proc-desc-secondary {
      font-size: 13px;
      line-height: 1.5;
      color: var(--muted);
      margin: 0;
    }
    
    .proc-highlight-box {
      background: #fdfcfb;
      border-radius: 18px;
      border: 1px solid rgba(200, 184, 167, 0.2);
      padding: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-top: 4px;
    }
    
    .proc-highlight-box i {
      font-size: 18px;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }
    
    .proc-highlight-box span {
      font-size: 12.5px;
      line-height: 1.45;
      color: var(--text);
      font-weight: 500;
    }
    
    /* Mobile Compact Timeline */
    .mobile-timeline {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      padding-left: 12px;
    }
    
    .mobile-timeline::before {
      content: '';
      position: absolute;
      left: 21px;
      top: 14px;
      bottom: 14px;
      width: 1px;
      background: rgba(200, 184, 167, 0.4);
    }
    
    .mobile-timeline-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      position: relative;
    }
    
    .mobile-timeline-step .step-num {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--accent);
      z-index: 2;
      flex-shrink: 0;
      margin-top: 3px;
      box-shadow: 0 0 0 4px var(--bg);
    }
    
    .mobile-timeline-step.active .step-num {
      background: var(--accent);
      color: white;
      box-shadow: 0 0 0 4px var(--bg), 0 2px 6px rgba(205, 95, 55, 0.2);
    }
    
    .mobile-timeline-step .step-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
    }
    
    .mobile-timeline-step .step-content h4 {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
      margin: 0;
    }
    
    .mobile-timeline-step .step-content p {
      font-size: 12px;
      line-height: 1.4;
      color: var(--muted);
      margin: 0;
    }
    
    /* Mobile Results Card */
    .mobile-results-card {
      background: var(--white);
      border-radius: 24px;
      padding: 18px;
      box-shadow: 0 8px 24px rgba(61, 43, 34, 0.02);
      border: 1px solid rgba(200, 184, 167, 0.12);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .mobile-results-card .results-meta {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    
    .mobile-results-card .patient-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }
    
    .mobile-results-card .patient-desc {
      font-size: 11.5px;
      color: var(--muted);
    }
    
    .mobile-results-card .results-badges {
      display: flex;
      gap: 8px;
      margin: 4px 0;
    }
    
    .mobile-results-card .badge {
      font-size: 9.5px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 6px;
      text-transform: uppercase;
    }
    
    .mobile-results-card .badge-antes {
      background: #ebeae6;
      color: var(--text);
    }
    
    .mobile-results-card .badge-depois {
      background: rgba(205, 95, 55, 0.08);
      color: var(--accent);
      border: 1px solid rgba(205, 95, 55, 0.15);
    }
    
    .mobile-results-card .results-outcome-text {
      font-size: 12.5px;
      line-height: 1.45;
      color: var(--text);
      font-style: italic;
      border-left: 2px solid var(--accent);
      padding-left: 10px;
      margin: 2px 0 0;
    }
    
    /* FAQ Accordion Mobile styling */
    .mobile-faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .mobile-faq-item {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid rgba(200, 184, 167, 0.12);
      overflow: hidden;
      transition: all 0.25s ease;
    }
    
    .mobile-faq-item.active {
      border-color: rgba(205, 95, 55, 0.2);
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.01);
    }
    
    .mobile-faq-header {
      padding: 14px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      gap: 12px;
    }
    
    .mobile-faq-header span {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }
    
    .mobile-faq-header i {
      font-size: 14px;
      color: var(--accent);
      transition: transform 0.25s ease;
    }
    
    .mobile-faq-item.active .mobile-faq-header i {
      transform: rotate(45deg);
    }
    
    .mobile-faq-content {
      padding: 0 16px 14px;
      font-size: 12px;
      line-height: 1.5;
      color: var(--muted);
      display: none;
    }
    
    .mobile-faq-item.active .mobile-faq-content {
      display: block;
    }

    /* ===== MOBILE TYPOGRAPHY & OVERRIDES ===== */
    #mobile-app,
    #mobile-app h1,
    #mobile-app h2,
    #mobile-app h3,
    #mobile-app h4,
    #mobile-app h5,
    #mobile-app h6,
    #mobile-app p,
    #mobile-app span,
    #mobile-app a,
    #mobile-app button,
    #mobile-app input,
    #mobile-app select,
    #mobile-app textarea {
      font-family: 'Inter', sans-serif !important;
    }

    #mobile-app .italic-serif,
    #mobile-app h2 span,
    #mobile-app .procedure-banner h2,
    #mobile-app .sobre-content h3,
    #mobile-app .mobile-callout-card h3,
    #mobile-app .section-header h3 {
      font-family: 'Playfair Display', serif !important;
    }

    /* ===== MOBILE HORIZONTAL CAROUSEL ===== */
    .mobile-carousel-section {
      padding: 28px 0 12px;
      background: var(--bg);
      width: 100%;
    }

    .mobile-carousel-section .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 16px;
      padding: 0 24px;
    }

    .mobile-carousel-section .section-header h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--text);
      margin: 0;
    }

    .mobile-carousel-section .section-header span {
      font-size: 11px;
      color: var(--muted);
      font-weight: 500;
    }

    .mobile-carousel-wrapper {
      width: 100%;
      overflow-x: auto;
      padding: 4px 24px 20px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .mobile-carousel-wrapper::-webkit-scrollbar {
      display: none;
    }

    .mobile-carousel-container {
      display: flex;
      gap: 16px;
      width: max-content;
    }

    .mobile-carousel-card {
      flex: 0 0 260px;
      width: 260px;
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(61, 43, 34, 0.04);
      border: 1px solid rgba(200, 184, 167, 0.12);
      cursor: pointer;
      transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-carousel-card:active {
      transform: scale(0.98);
    }

    .carousel-card-img {
      height: 140px;
      background-size: cover;
      background-position: center;
      width: 100%;
    }

    .carousel-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .carousel-card-badge {
      font-size: 9px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .carousel-card-body h4 {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text);
      margin: 0;
    }

    .carousel-card-body p {
      font-size: 11.5px;
      color: var(--muted);
      line-height: 1.45;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      height: 33px;
    }

    .carousel-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 6px;
      padding-top: 10px;
      border-top: 1px solid rgba(61, 43, 34, 0.05);
    }

    .carousel-card-footer span {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--text);
    }

    .carousel-card-footer i {
      font-size: 14px;
      color: var(--accent);
    }

    /* ===== TERRACOTTA CALLOUT CARD ===== */
    .mobile-callout-card-section {
      padding: 12px 24px 36px;
      width: 100%;
      background: var(--bg);
    }

    .mobile-callout-card {
      background: #cd5f37;
      border-radius: 28px;
      padding: 22px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 12px 30px rgba(205, 95, 55, 0.2);
      position: relative;
      overflow: hidden;
    }

    .mobile-callout-card::after {
      content: '✦';
      position: absolute;
      top: 12px;
      right: 120px;
      color: rgba(255, 255, 255, 0.15);
      font-size: 14px;
    }

    .callout-left {
      width: 65%;
      display: flex;
      flex-direction: column;
      gap: 6px;
      z-index: 2;
    }

    .callout-left h3 {
      font-size: 17.5px;
      font-weight: 500;
      line-height: 1.25;
      margin: 0;
      color: white !important;
    }

    .callout-left p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.4;
      margin: 0;
    }

    .btn-callout {
      background: white;
      color: #cd5f37;
      border: none;
      border-radius: 20px;
      padding: 8px 18px;
      font-size: 11.5px;
      font-weight: 700;
      width: max-content;
      margin-top: 8px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-callout:active {
      transform: scale(0.95);
    }

    .callout-right {
      width: 30%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    .callout-icon-wrapper {
      position: relative;
      width: 68px;
      height: 68px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .callout-icon-wrapper i {
      font-size: 32px;
      color: white;
    }

    .search-badge {
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 26px;
      height: 26px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .search-badge i {
      font-size: 11px;
      color: #cd5f37;
    }

    /* ===== MENU HAMBÚRGUER DRAWER ===== */
    .menu-drawer-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(61, 43, 34, 0.4);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border-radius: 40px;
      overflow: hidden;
    }

    .menu-drawer-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .menu-drawer {
      position: absolute;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100%;
      background: #f7f5f2;
      z-index: 160;
      box-shadow: -10px 0 30px rgba(61, 43, 34, 0.1);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border-top-left-radius: 24px;
      border-bottom-left-radius: 24px;
      padding: 24px 20px;
    }

    .menu-drawer-overlay.open .menu-drawer {
      transform: translateX(-300px);
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      border-bottom: 1px solid rgba(61, 43, 34, 0.06);
      padding-bottom: 16px;
    }

    .drawer-logo-img {
      height: 28px;
      display: block;
    }

    .drawer-close {
      background: rgba(61, 43, 34, 0.05);
      border: none;
      cursor: pointer;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      transition: all 0.2s ease;
    }

    .drawer-close:active {
      transform: scale(0.9);
      background: rgba(61, 43, 34, 0.1);
    }

    .drawer-menu-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .drawer-menu-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 12px;
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
    }

    .drawer-menu-item:active {
      background: rgba(61, 43, 34, 0.05);
      transform: translateX(4px);
    }

    .drawer-menu-item i {
      font-size: 20px;
      color: var(--muted);
      transition: color 0.2s ease;
    }

    .drawer-menu-item.active {
      background: white;
      color: var(--accent);
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(61, 43, 34, 0.03);
    }

    .drawer-menu-item.active i {
      color: var(--accent);
    }

    .drawer-footer {
      border-top: 1px solid rgba(61, 43, 34, 0.06);
      padding-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .drawer-address {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.4;
    }

    .drawer-socials {
      display: flex;
      gap: 12px;
    }

    .drawer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(61, 43, 34, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .drawer-socials a:active {
      background: rgba(61, 43, 34, 0.08);
      transform: scale(0.95);
    }

