:root {
  --canva-bg: #fbf7f5;
  --canva-card: #ffffff;
  --canva-ink: #111111;
  --canva-muted: rgba(0, 0, 0, 0.62);
  --canva-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --canva-radius-xl: 30px;
  --canva-radius-lg: 24px;
  --canva-red: #ef426f;
}

/* Shared */
.after-top {
  background: var(--canva-bg);
}

.section-space.after-top {
  background: var(--canva-bg);
  padding: 64px 0;
  border-bottom: none;
}

.after-top-title {
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--canva-ink);
}

.after-top-subtitle {
  margin-top: 10px;
  color: var(--canva-muted);
  font-size: clamp(0.92rem, 0.35vw + 0.84rem, 1rem);
  line-height: 1.55;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.month-select {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #000;
  height: 36px;
  padding: 0 42px 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  appearance: none;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

.month-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.month-select-wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.rank-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.rank-header-center {
  text-align: center;
}

.rank-heading {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.rank-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-svg {
  width: 52px;
  height: 52px;
  display: block;
}

.rank-month {
  margin-top: 4px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
}

.rank-header-right {
  display: flex;
  justify-content: flex-end;
}

.medal-icon {
  width: 34px;
  height: 34px;
}

/* Silvers list cards */
.rank-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rank-list-card {
  background: var(--canva-card);
  border-radius: 20px;
  box-shadow: var(--canva-shadow);
  border: 1px solid rgba(17, 17, 17, 0.05);
  padding: 26px 28px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.rank-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.12);
}

.rank-list-title {
  text-align: center;
  color: var(--canva-red);
  font-family: var(--font-navigation-family) !important;
  //font-weight: 700;
  font-size: clamp(1rem, 0.6vw, 1rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(0.9rem, 0.3vw + 0.84rem, 1rem);
  line-height: 1.42;
}

.rank-list li span {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  margin-left: 8px;
}

.rank-list li .rank-arrow {
  color: rgba(0, 0, 0, 0.35);
  font-weight: 700;
}

.rank-list li.even-item {
  background-color: #fafafa;
}

.rank-list li.odd-item {
  background-color: #eaeaea;
}

/* Photo grid (Golds / Stars) */
.rank-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 26px;
}

.rank-person {
  text-align: center;
}

.rank-person .rank-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #dfe6ef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.rank-person .rank-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
}

.rank-person .rank-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rank-person .rank-name {
  margin-top: 18px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.rank-person .rank-city {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.rank-download {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0px solid rgba(17, 17, 17, 0.12);
  color: #111111;
  border-radius: 999px;
  //padding: 7px 12px;
  font-weight: 700;
  //font-size: 10px;
  //letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  background: #ffffff;
  appearance: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.rank-download i {
  font-size: 12px;
}

.rank-download:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: var(--canva-red);
  border-color: var(--canva-red);
}

.rank-download:disabled {
  opacity: 0.7;
  pointer-events: none;
}

/* TikTok phones */
.tiktok-head {
  text-align: center;
  margin-bottom: 34px;
}

.tiktok-logo {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 6px;
}

.tiktok-title {
  margin: 0;
}

.tiktok-sub {
  margin-top: 4px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.55);
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  margin-top: 38px;
}

.phone-card {
  text-align: center;
}

.phone-shell {
  position: relative;
  margin: 0 auto;
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  border: 14px solid #2a2525;
  border-radius: 34px;
  background: #111;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 48%;
  height: 26px;
  background: #2a2525;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 3;
}

.phone-media {
  width: 100%;
  height: 100%;
  background: #dfe6ef;
}

.phone-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-ui {
  position: absolute;
  right: 10px;
  top: 44%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 4;
  color: rgba(0, 0, 0, 0.65);
}

.phone-ui i {
  background: rgba(255, 255, 255, 0.6);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.phone-live {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 10px;
  padding: 4px 7px;
  z-index: 4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.phone-name {
  margin-top: 18px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.7px;
}

.phone-city {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.phone-link {
  display: inline-block;
  margin-top: 8px;
  color: #ff0043;
  font-weight: 700;
  text-decoration: none;
}

/* Eventos cards (circles) */
.events-title {
  text-align: center;
  margin-bottom: 36px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.event-card {
  background: var(--canva-card);
  border-radius: var(--canva-radius-xl);
  padding: 34px 34px 40px;
  box-shadow: var(--canva-shadow);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  text-decoration: none;
  color: inherit;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 54px rgba(10, 22, 40, 0.12);
}

.event-circle {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 8px solid var(--ring, #f59e0b);
  background: #dfe6ef;
}

.event-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-title {
  margin-top: 6px;
  color: var(--canva-red);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: 1.15;
}

.event-desc {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 18px;
  line-height: 1.55;
}

/* Video sections */
.video-header {
  text-align: center;
  margin-bottom: 30px;
}

.video-title {
  margin: 0;
}

.video-subtitle {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 20px;
  line-height: 1.6;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.video-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 18px 0 10px;
}

.video-frame {
  background: #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.video-frame iframe {
  width: 100%;
  height: min(560px, 62vh);
  border: 0;
  display: block;
}

.video-placeholder {
  width: 100%;
  height: min(560px, 62vh);
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Momentos gallery */
.momentos-city-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 14px;
}

.momentos-city {
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.6px;
}

.momentos-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.momentos-track-wrap {
  overflow: hidden;
  padding: 12px 0;
}

.momentos-track {
  display: flex;
  gap: 16px;
  transition: transform 280ms ease;
  will-change: transform;
}

.momentos-slide {
  flex: 0 0 min(330px, 72vw);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  transform: scale(0.94);
  opacity: 0.65;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
  filter: saturate(0.82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.momentos-slide.is-active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
}

.momentos-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.momentos-control {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-size: 22px;
  line-height: 1;
}

.momentos-control:hover {
  border-color: #ff0043;
  color: #ff0043;
}

.momentos-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.momentos-status {
  margin: 10px 0 8px;
  color: rgba(17, 24, 39, 0.75);
  font-weight: 500;
}

.momentos-status--error {
  color: #b42318;
  font-weight: 700;
}

.momentos-gallery-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.momentos-image-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.08);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  animation: momentos-card-in 460ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--stagger, 0ms);
}

.momentos-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.momentos-image-card p {
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  word-break: break-word;
}

.momentos-image-card:hover img {
  transform: scale(1.035);
}

.momentos-image-card--skeleton {
  animation: none;
  opacity: 1;
  transform: none;
}

.momentos-skeleton-image,
.momentos-skeleton-text {
  background: linear-gradient(90deg, #eef2f7 25%, #f8fafc 38%, #eef2f7 63%);
  background-size: 400% 100%;
  animation: momentos-shimmer 1.2s ease-in-out infinite;
}

.momentos-skeleton-image {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.momentos-skeleton-text {
  margin: 12px;
  height: 18px;
  border-radius: 8px;
}

@keyframes momentos-card-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes momentos-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.momentos-photo {
  background: #dfe6ef;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.momentos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.momentos-photo--left,
.momentos-photo--right {
  aspect-ratio: 4 / 3;
}

.momentos-photo--center {
  aspect-ratio: 16 / 7;
}

/* Testimonios overview */
.testi-head {
  text-align: center;
  margin-bottom: 34px;
}

.testi-title {
  text-align: center;
}

.testi-sub {
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: rgba(17, 24, 39, 0.72);
}
.testi-subtitle {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 20px;
  line-height: 1.6;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testi-publish-card {
  margin-top: 28px;
  background: linear-gradient(135deg, #fff8fa 0%, #ffffff 100%);
  border: 1px solid rgba(255, 0, 67, 0.12);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 18px;
  align-items: center;
}

.testi-publish-card--static {
  grid-template-columns: 1fr;
}

.testi-publish-pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 0, 67, 0.1);
  color: #ff0043;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testi-publish-card h4 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
}

.testi-publish-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.55;
}

.testi-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #ff0043;
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.testi-card {
  text-decoration: none;
  color: inherit;
}

.testi-feed-status {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px dashed rgba(17, 24, 39, 0.16);
  color: rgba(17, 24, 39, 0.8);
}

.testi-card--rss {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.testi-card--rss:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.14);
  border-color: rgba(255, 0, 67, 0.18);
}

.testi-card--rss.is-active {
  border-color: rgba(255, 0, 67, 0.4);
  box-shadow: 0 26px 60px rgba(255, 0, 67, 0.14);
}

.testi-detail--live {
  margin-top: 42px;
}

.testi-detail-content {
  margin-top: 18px;
}

.testi-detail-content p {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.testi-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  margin-top: 16px;
}

.testi-card--rss .testi-img {
  aspect-ratio: 16 / 10;
  background: #f2f4f7;
}

.testi-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0043;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testi-post-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.testi-post-date {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
}

.testi-post-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.4;
  color: #111827;
}

.testi-post-summary {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.65;
  flex: 1;
}

.testi-post-cta {
  color: #ff0043;
  font-weight: 700;
}

.testi-card .testi-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #dfe6ef;
  overflow: hidden;
}

.testi-card .testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-card .testi-name-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.blog-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.blog-feed-status {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px dashed rgba(17, 24, 39, 0.16);
  color: rgba(17, 24, 39, 0.8);
}

.blog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: #f2f4f7;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-meta {
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
}

.blog-card-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.4;
  color: #111827;
}

.blog-card-summary {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  line-height: 1.65;
  flex: 1;
}

.blog-card-cta {
  color: #ff0043;
  font-weight: 700;
  text-decoration: none;
}

.testi-card .testi-name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.4px;
  line-height: 0.95;
  text-transform: uppercase;
}

.testi-card .testi-arrow {
  font-size: 18px;
  font-weight: 700;
}

.testi-card .testi-underline {
  height: 2px;
  background: rgba(0, 0, 0, 0.8);
  margin: 10px 0 10px;
}

.testi-card .testi-quote {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 1.45;
}

.testi-blog-head {
  margin-bottom: 26px;
}

.testi-blog-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 0, 67, 0.1);
  color: #ff0043;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.testi-blog-title {
  margin: 10px 0 4px;
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.7rem);
  line-height: 1.15;
  color: #111827;
  overflow-wrap: anywhere;
}

.testi-blog-meta {
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.95rem;
}

.testi-blog-cta {
  display: inline-flex;
  margin-top: 20px;
  color: #ff0043;
  text-decoration: none;
  font-weight: 700;
}

.testi-blog-cta:hover {
  text-decoration: underline;
}

/* Testimonio detail */
.testi-detail {
  background: #ffffff;
  padding: 0;
  border-bottom: none;
}

#testimonios.section-space {
  border-bottom: none;
}

.testi-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.testi-portrait {
  position: relative;
  padding: 22px;
}

.testi-portrait::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 100%;
  background: var(--canva-red);
  z-index: 0;
}

.testi-portrait .testi-portrait-img {
  position: relative;
  z-index: 1;
  background: #dfe6ef;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.testi-portrait .testi-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-name-tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: -18px;
  margin-left: 10px;
  background: var(--canva-red);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 10px 16px;
  font-size: 22px;
}

.testi-share {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-share .share-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}

.testi-share a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.testi-copy .brand-mark {
  display: flex;
  justify-content: flex-end;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.testi-copy blockquote {
  margin: 0;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.2px;
  color: #172554;
}

.testi-copy p {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  line-height: 1.75;
}

.testi-blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
}

.testi-blog-cta--secondary {
  color: #172554;
}

@media (max-width: 991.98px) {
  .rank-list-title {
    font-size: 38px;
  }
  .rank-list li {
    font-size: 18px;
  }
  .rank-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }
  .blog-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .phone-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-circle {
    width: 200px;
    height: 200px;
  }
  .momentos-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .momentos-control {
    justify-self: center;
  }
  .testi-publish-card {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testi-detail-wrap {
    grid-template-columns: 1fr;
  }
  .testi-copy .brand-mark {
    justify-content: flex-start;
  }
  .blog-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .blog-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Social Share Buttons */
.testi-share-section {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.testi-share-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.testi-share-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
  color: white;
  background-color: #666;
}

.share-facebook {
  background-color: #1877f2;
  color: white;
}

.share-facebook:hover {
  background-color: #0a66c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-twitter {
  background-color: #000000;
  color: white;
}

.share-twitter:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-linkedin {
  background-color: #0a66c2;
  color: white;
}

.share-linkedin:hover {
  background-color: #084594;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.share-whatsapp {
  background-color: #25d366;
  color: white;
}

.share-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.share-copy {
  background-color: #808080;
  color: white;
  border: none;
  padding: 0;
}

.share-copy:hover {
  background-color: #696969;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

.share-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .testi-share-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .share-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .rank-header {
    grid-template-columns: 1fr;
  }
  .rank-header-right {
    justify-content: center;
  }
  .rank-list-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .blog-feed-grid {
    grid-template-columns: 1fr;
  }
}
