/* ==========================================================================
   CRO Enhancements Stylesheet (Diagnostic Modal & Reimbursement Steps)
   ========================================================================== */

/* Floating Diagnostic Button */
.diagnostic-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 165px;
  right: 25px;
  background: linear-gradient(135deg, #c2a74e 0%, #e6d396 100%);
  color: #1c1a1d !important;
  border-radius: 50px;
  text-align: center;
  font-size: 24px;
  line-height: 50px;
  box-shadow: 0 4px 15px rgba(194, 167, 78, 0.4);
  z-index: 1002;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.diagnostic-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(194, 167, 78, 0.6);
  background: linear-gradient(135deg, #e6d396 0%, #c2a74e 100%);
}

.diagnostic-float::after {
  content: "Encontre seu Profissional Ideal";
  position: absolute;
  right: 60px;
  background: rgba(28, 26, 29, 0.95);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(194, 167, 78, 0.3);
}

.diagnostic-float:hover::after {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

/* Diagnostic Modal Styling */
#ecfDiagnosticModalWrap {
  padding: 16px !important;
  font-family: 'Outfit', sans-serif !important;
}

#ecfDiagnosticDialog {
  width: min(94vw, 580px) !important;
  background: #fff;
  border-radius: 4px;
  border: 2px solid #c2a74e;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
  overflow: hidden;
}

.diagnostic-modal-header {
  background: #1c1a1d;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(194, 167, 78, 0.3);
  position: relative;
}

.diagnostic-modal-header h3 {
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.diagnostic-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  color: #c2a74e;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.diagnostic-modal-close:hover {
  color: #fff;
}

.diagnostic-modal-body {
  padding: 24px;
  background: #fbf9f4;
  color: #1c1a1d;
}

.diagnostic-step {
  display: none;
}

.diagnostic-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

/* Step Progress Indicator */
.diagnostic-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.diagnostic-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e0d8;
  z-index: 1;
  transform: translateY(-50%);
}

.diagnostic-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #c2a74e;
  z-index: 1;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.progress-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e0d8;
  border: 2px solid #e5e0d8;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: #7a7670;
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: #1c1a1d;
  border-color: #c2a74e;
  color: #c2a74e;
  box-shadow: 0 0 8px rgba(194, 167, 78, 0.4);
}

.progress-dot.completed {
  background: #c2a74e;
  border-color: #c2a74e;
  color: #1c1a1d;
}

/* Options Grid/List */
.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.option-card {
  background: #fff;
  border: 1px solid rgba(28, 26, 29, 0.1);
  padding: 16px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option-card:hover {
  border-color: #c2a74e;
  background: rgba(194, 167, 78, 0.04);
  transform: translateX(4px);
}

.option-card::after {
  content: "→";
  color: #c2a74e;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s ease;
}

.option-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Particular & Reembolso Notice Card */
.particular-reimbursement-notice {
  background: #1c1a1d;
  color: #fff;
  border-left: 4px solid #c2a74e;
  padding: 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.6;
}

.particular-reimbursement-notice strong {
  color: #c2a74e;
  display: block;
  margin-bottom: 4px;
}

/* Lead Data Form Styling */
.diagnostic-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.diagnostic-form-group label {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #1c1a1d;
}

.diagnostic-form-group input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(28, 26, 29, 0.15);
  border-radius: 2px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.diagnostic-form-group input:focus {
  border-color: #c2a74e;
  outline: none;
}

.diagnostic-consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

.diagnostic-consent-checkbox input {
  margin-top: 2px;
  cursor: pointer;
}

/* Navigation Buttons */
.diagnostic-nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.diagnostic-btn {
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Outfit', sans-serif;
}

.diagnostic-btn-back {
  background: #e5e0d8;
  color: #1c1a1d;
}

.diagnostic-btn-back:hover {
  background: #d4ced1;
}

.diagnostic-btn-next {
  background: #1c1a1d;
  color: #c2a74e;
  flex-grow: 1;
}

.diagnostic-btn-next:hover {
  background: #c2a74e;
  color: #1c1a1d;
}

.diagnostic-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Recommended Professional Result Card */
.recommendation-result {
  text-align: center;
  padding: 10px 0;
}

.recommendation-result h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7a7670;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recommended-card-wrapper {
  max-width: 320px;
  margin: 0 auto 24px;
}

.recommended-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #1faa52 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  text-decoration: none !important;
  width: 100%;
  transition: all 0.3s ease;
}

.recommended-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #1faa52 0%, #128C7E 100%);
}

.recommended-general-link {
  display: block;
  font-size: 13px;
  color: #7a7670;
  text-decoration: underline;
  margin-top: 15px;
  transition: color 0.2s ease;
}

.recommended-general-link:hover {
  color: #1c1a1d;
}

/* Interactive Reimbursement Panel Section */
.reimbursement-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(194, 167, 78, 0.15);
  background-color: #1c1a1d !important;
}

.reimbursement-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(194, 167, 78, 0.12);
  border-radius: 2px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.reimbursement-card:hover {
  transform: translateY(-5px);
  border-color: #c2a74e;
  background: rgba(194, 167, 78, 0.04);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 44px;
  height: 44px;
  background: #c2a74e;
  color: #1c1a1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(194, 167, 78, 0.4);
  font-family: 'Outfit', sans-serif;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-family: 'Outfit', sans-serif;
}

.text-gold {
  color: #c2a74e !important;
}

@media (max-width: 767px) {
  .diagnostic-float {
    bottom: 160px; /* Above the WhatsApp button at 100px */
    right: 25px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    z-index: 1002;
  }
  
  .diagnostic-float::after {
    display: none !important; /* Hide tooltip on mobile */
  }

  .reimbursement-card {
    padding: 30px 20px;
    margin-top: 20px;
  }
  
  .step-number {
    top: -15px;
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Modal Scrollability & Mobile Optimization overrides */
#ecfDiagnosticModal {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

#ecfDiagnosticModalWrap {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-height: 100vh !important;
  padding: 30px 10px !important;
  box-sizing: border-box !important;
}

@media (min-height: 750px) and (min-width: 576px) {
  #ecfDiagnosticModalWrap {
    align-items: center !important;
    padding: 20px !important;
  }
}

@media (max-width: 575px) {
  #ecfDiagnosticDialog {
    width: 96vw !important;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .diagnostic-modal-header {
    padding: 15px 18px !important;
  }
  .diagnostic-modal-header h3 {
    font-size: 17px !important;
  }
  .diagnostic-modal-body {
    padding: 16px !important;
  }
  .diagnostic-progress {
    margin-bottom: 16px !important;
  }
  .particular-reimbursement-notice {
    padding: 10px 12px !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .diagnostic-form-group {
    margin-bottom: 10px !important;
  }
  .diagnostic-form-group label {
    font-size: 11px !important;
    margin-bottom: 3px !important;
  }
  .diagnostic-form-group input {
    height: 38px !important;
    font-size: 13px !important;
    padding: 0 10px !important;
  }
  .diagnostic-consent-checkbox {
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    font-size: 11px !important;
  }
  .diagnostic-btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
  .team-card--highlight {
    padding: 16px 14px !important;
  }
  .team-card--highlight .team-card__avatar {
    width: 60px !important;
    height: 60px !important;
    font-size: 18px !important;
  }
  .team-card--highlight h4 {
    font-size: 15px !important;
  }
  .team-card--highlight .team-card__tags {
    margin-bottom: 12px !important;
  }
  .team-card--highlight .team-card__details {
    font-size: 12px !important;
  }
  .recommended-wa-btn {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }
}

/* Enhanced Global Team Card Styles */
.team-card {
  background: #fff !important;
  border: 1px solid rgba(194, 167, 78, 0.18) !important; /* Soft golden-gray border */
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(194, 167, 78, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.team-card:hover {
  transform: translateY(-6px) !important;
  border-color: #c2a74e !important;
  box-shadow: 0 16px 40px rgba(194, 167, 78, 0.15) !important;
}

.team-card--highlight {
  border: 2px solid #c2a74e !important;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%) !important;
  box-shadow: 0 12px 35px rgba(194, 167, 78, 0.08) !important;
}

.team-card--highlight:hover {
  box-shadow: 0 20px 45px rgba(194, 167, 78, 0.22) !important;
}

.team-card__tag {
  background: #fbfaf7 !important;
  color: #705b1e !important;
  border: 1px solid rgba(194, 167, 78, 0.15) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 3px 10px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
}

.team-card--highlight .team-card__tag {
  background: rgba(194, 167, 78, 0.1) !important;
  color: #8a7024 !important;
  border: 1px solid rgba(194, 167, 78, 0.2) !important;
}

.team-card__tag--active {
  background: #c2a74e !important;
  color: #1c1a1d !important;
  border-color: #c2a74e !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 8px rgba(194, 167, 78, 0.35) !important;
}

.team-card__details li {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #4a4742 !important;
  margin-bottom: 12px !important;
  border-left: 2px solid rgba(194, 167, 78, 0.2) !important;
  padding-left: 10px !important;
}

.team-card__details li strong {
  color: #1c1a1d !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 3px !important;
}

.team-card__avatar {
  background: linear-gradient(135deg, #1c1a1d 0%, #3a353b 100%) !important;
  color: #c2a74e !important;
  border: 2px solid #c2a74e !important;
  box-shadow: 0 8px 20px rgba(194, 167, 78, 0.15) !important;
  font-family: 'Outfit', sans-serif !important;
  transition: all 0.3s ease !important;
}

.team-card:hover .team-card__avatar {
  transform: scale(1.05) !important;
  background: linear-gradient(135deg, #c2a74e 0%, #e6d396 100%) !important;
  color: #1c1a1d !important;
}

/* Smooth and Readable Typography for Hero Slides */
.hero-slide__subtitle {
  font-family: 'Outfit', sans-serif !important;
  color: var(--solox-base, #c2a74e) !important;
  font-size: clamp(15px, 4vw, 20px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.6px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  line-height: 1.45 !important;
}

.hero-slide__text {
  font-family: 'Outfit', sans-serif !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(13.5px, 3.5vw, 15.5px) !important;
  line-height: 1.65 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  opacity: 0.95;
}

.page-header__title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  font-size: clamp(24px, 7vw, 44px) !important;
  line-height: 1.25 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

@media (min-width: 768px) {
  .page-header__title {
    font-size: clamp(34px, 6vw, 48px) !important;
  }
}

/* Responsive Background Overrides for Page Headers */
.page-header-psicologia__bg,
.page-header-fonoaudiologia__bg,
.page-header-psicopedagogia__bg,
.page-header-nutricao__bg {
  background-position: center center !important;
  background-size: cover !important;
}

@media (max-width: 991px) {
  .page-header-psicologia__bg,
  .page-header-fonoaudiologia__bg,
  .page-header-psicopedagogia__bg,
  .page-header-nutricao__bg {
    top: 0 !important;
  }
}

/* Z-Index Stacking, Overflow Prevention & Mobile Refinements */
#ecfDiagnosticModal {
  z-index: 999999 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

#ecfDiagnosticModalWrap {
  padding: 16px !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 575px) {
  #ecfDiagnosticModalWrap {
    align-items: flex-start !important;
    padding: 8px !important;
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }
}

/* Header wrapping fix on mobile */
.page-header__title {
  white-space: normal !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* Stacking, centering and separating floating action buttons */
.whatsapp-float {
  z-index: 99998 !important;
  bottom: 140px !important;
}

.diagnostic-float {
  z-index: 99999 !important;
  bottom: 205px !important;
}

/* Fix for WhatsApp float icon alignment override */
.whatsapp-float i {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  bottom: auto !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 140px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
  }
  .diagnostic-float {
    bottom: 205px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

/* ==========================================================================
   Hero Slider Tabs Layout Alignment on Desktop
   ========================================================================== */
@media (min-width: 992px) {
  .hero-slider-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    max-width: 96% !important;
    width: max-content !important;
    margin: 0 auto !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 6px !important;
    scrollbar-width: thin !important; /* Firefox */
    scrollbar-color: rgba(194, 167, 78, 0.4) rgba(255, 255, 255, 0.05) !important; /* Firefox */
  }
  .hero-slider-tabs::-webkit-scrollbar {
    display: block !important; /* Show styled scrollbar on Chrome/Safari when overflowing */
    height: 4px !important;
  }
  .hero-slider-tabs::-webkit-scrollbar-thumb {
    background: rgba(194, 167, 78, 0.5) !important;
    border-radius: 4px !important;
  }
  .hero-slider-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 4px !important;
  }
  .hero-slider-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
}
@media (min-width: 1200px) {
  .hero-slider-tabs {
    gap: 10px !important;
  }
  .hero-slider-tab-btn {
    padding: 8px 14px !important;
    font-size: 12.5px !important;
  }
}
@media (min-width: 1400px) {
  .hero-slider-tab-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
}

/* ==========================================================================
   Google Reviews Styling
   ========================================================================== */
.google-reviews-section {
  background: #ffffff !important;
  border-top: 1px solid rgba(194, 167, 78, 0.15);
  border-bottom: 1px solid rgba(194, 167, 78, 0.15);
  padding: 60px 0;
  font-family: 'Outfit', sans-serif !important;
}

.google-rating-card {
  padding: 30px 24px;
  background: #fdfcf9;
  border: 1px solid rgba(194, 167, 78, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(194, 167, 78, 0.04);
}

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

.google-rating-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1c1a1d;
}

.google-rating-card__rating {
  margin-top: 15px;
}

.google-rating-card__rating .rating-number {
  font-size: 38px;
  font-weight: 700;
  color: #1c1a1d;
  line-height: 1;
}

.google-rating-card__rating .rating-stars {
  color: #fabb05;
  font-size: 20px;
  display: flex;
  gap: 4px;
}

.google-rating-card__meta {
  font-size: 13.5px;
  color: #666;
  line-height: 1.5;
}

.google-rating-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(194, 167, 78, 0.1);
  color: #8a7024;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(194, 167, 78, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-rating-card__badge i {
  font-size: 13px;
}

/* Reviews Carousel */
.google-reviews-carousel {
  position: relative;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 28px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.google-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(194, 167, 78, 0.4);
  box-shadow: 0 8px 30px rgba(194, 167, 78, 0.08);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.review-avatar--gold {
  background: linear-gradient(135deg, #c2a74e 0%, #e6d396 100%);
}

.review-avatar--green {
  background: linear-gradient(135deg, #818e74 0%, #a4b498 100%);
}

.review-author {
  font-size: 14.5px;
  font-weight: 600;
  color: #1c1a1d;
  margin: 0 0 2px;
}

.review-date {
  font-size: 11px;
  color: #888;
  display: block;
}

.review-stars {
  color: #fabb05;
  font-size: 11px;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a4742;
  margin-bottom: 0;
  font-style: italic;
}

@media (max-width: 991px) {
  .google-rating-card {
    margin-bottom: 30px;
    padding: 20px;
  }
}
