/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan: #00c8d4;
  --cyan-light: #0dcaf0;
  --black: #0a0a0a;
  --dark: #111111;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray-mid: #e0e0e0;
  --gray-text: #555555;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: var(--cyan);
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.label--light {
  color: #888;
}

.section-title--dark {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 40px;
  text-align: center;
}

.section-title--light {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--cta {
  background: var(--cyan);
  color: var(--black);
}

.btn--dark {
  background: #1a2a3a;
  color: var(--white);
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--black);
  padding: 60px 0 70px;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__title {
  font-size: clamp(28px, 6vw, 50px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
}

.hero__subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: #aaaaaa;
  max-width: 560px;
  line-height: 1.7;
}

/* Video */
.video-wrapper {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 30px rgba(0, 200, 212, 0.25);
  position: relative;
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  cursor: pointer;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 90px;
  height: 90px;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  width: 90px;
  height: 90px;
}

/* ===========================
   VOCÊ SENTE
   =========================== */
.voce-sente {
  background: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.symptom-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: left;
  transition: box-shadow 0.2s;
}

.symptom-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.check-icon {
  display: block;
  margin-bottom: 14px;
}

.check-icon svg {
  width: 36px;
  height: 22px;
}

.symptom-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

/* ===========================
   VOCÊ JÁ TENTOU
   =========================== */
.tentou {
  background: var(--black);
  padding: 30px 0 60px;
}

.tentou__box {
  border: 2px solid var(--cyan);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tentou__title {
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.tentou__text {
  font-size: 16px;
  color: #cccccc;
  max-width: 600px;
  line-height: 1.7;
}

.tentou__text strong {
  color: var(--white);
}

.tentou__btn {
  margin-top: 16px;
}

/* Arrow between sections - handled via HTML element */

/* Down arrow icon - using a cyan down chevron */
.tentou__arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tentou__arrow svg {
  width: 40px;
  height: 40px;
}

/* ===========================
   SOBRE
   =========================== */
.sobre {
  background: var(--white);
  padding: 80px 0;
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.sobre__text .label {
  color: var(--gray-text);
}

.sobre__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.sobre__text p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.photo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gray-mid);
  margin: 0 auto;
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ===========================
   CONTEÚDO
   =========================== */
.conteudo {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.conteudo .label--light {
  color: #777;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.content-card {
  border: 1.5px solid var(--cyan);
  border-radius: 10px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  transition: background 0.2s;
}

.content-card:hover {
  background: #1a1a1a;
}

.content-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.content-card p {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}

/* ===========================
   DEPOIMENTOS
   =========================== */
.depoimentos {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.quote-icon {
  font-size: 60px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.depoimentos .label {
  color: var(--gray-text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-mid);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.testimonial-name {
  font-size: 14px;
  color: var(--black);
}

/* ===========================
   PREÇO
   =========================== */
.preco {
  background: linear-gradient(135deg, #0097a7 0%, #00bcd4 50%, #00e5ff 100%);
  padding: 80px 0;
  text-align: center;
}

.preco__card {
  background: var(--white);
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preco__card .label {
  color: var(--gray-text);
}

.preco__title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.3;
  text-align: center;
}

.preco__old {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.preco__value {
  font-size: clamp(52px, 10vw, 80px);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.preco__card .btn--dark {
  width: 100%;
  max-width: 100%;
  background: #1a2a3a;
  color: var(--white);
  font-size: 16px;
  padding: 18px 24px;
  line-height: 1.4;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 8px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 11px;
  text-align: center;
}

.badge svg {
  width: 28px;
  height: 28px;
  stroke: #555;
}

/* ===========================
   GARANTIA
   =========================== */
.garantia {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.garantia__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.garantia__icon svg {
  width: 80px;
  height: 80px;
}

.garantia__title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
}

.garantia__text {
  font-size: 16px;
  color: #555;
  max-width: 540px;
  line-height: 1.7;
  text-align: center;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}

.faq-list {
  margin: 10px 0 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1.5px solid var(--cyan);
  border-radius: 0;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: none;
}

.faq-item:first-child {
  border-radius: 8px 8px 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 8px 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  list-style: none;
  background: transparent;
  transition: background 0.15s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: rgba(0, 200, 212, 0.06);
}

.faq-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  min-width: 20px;
  text-align: center;
}

.faq-answer {
  padding: 4px 20px 20px 56px;
  background: transparent;
}

.faq-answer p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.75;
}

.faq-answer strong {
  color: var(--white);
}

.faq__btn {
  margin-top: 0;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #050505;
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
}

.footer__link {
  color: #999;
  text-decoration: underline;
}

.footer__disclaimer {
  max-width: 560px;
  margin: 4px auto 0;
  font-size: 12px !important;
  color: #555 !important;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
  }

  .photo-circle {
    width: 220px;
    height: 220px;
  }

  .tentou__box {
    padding: 36px 24px;
  }

  .preco__card {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    gap: 16px;
  }
}


/* ===========================
   PÁGINA DE AGRADECIMENTO
   =========================== */

/* CONFIRMAÇÃO */
.confirmation {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.confirmation__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.confirmation__icon svg {
  width: 100px;
  height: 100px;
  animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirmation__title {
  font-size: clamp(42px, 8vw, 64px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  max-width: 700px;
  letter-spacing: -1px;
}

.confirmation__subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 500;
  max-width: 500px;
}

.confirmation__text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 540px;
}

.confirmation__text strong {
  color: var(--black);
  font-weight: 700;
}

.btn--secondary {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  max-width: 300px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn--secondary:hover {
  background: rgba(0, 200, 212, 0.05);
}

.btn--hidden {
  background: transparent;
  color: #ccc;
  border: none;
  font-size: 12px;
  padding: 4px 8px;
  max-width: fit-content;
  margin: 0 auto;
  font-weight: 400;
  transition: all 0.2s;
  text-decoration: underline;
}

.btn--hidden:hover {
  color: #999;
}

/* TRANSIÇÃO EMOCIONAL */
.transition {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.transition__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.transition__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
}

.transition__text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.highlight-text {
  color: var(--cyan);
  font-weight: 700;
}

.transition__question {
  font-size: 20px;
  color: var(--black);
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 600;
}

.transition__question em {
  font-style: italic;
  color: #888;
}

.transition__question strong {
  color: var(--cyan);
  font-weight: 700;
  font-style: normal;
}

/* APRESENTAÇÃO DO UPSELL */
.upsell-intro {
  background: var(--white);
  padding: 80px 0;
}

.upsell-header {
  text-align: center;
  margin-bottom: 60px;
}

.upsell-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
}

.upsell-subtitle {
  font-size: 18px;
  color: var(--cyan);
  font-weight: 600;
}

.upsell-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.upsell-image {
  display: flex;
  justify-content: center;
}

.product-mockup {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.product-mockup svg {
  width: 100%;
  height: auto;
}

.upsell-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.benefit-check {
  color: var(--cyan);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: -2px;
}

.benefit-text {
  font-weight: 500;
}

/* OFERTA ESPECIAL */
.special-offer {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}

.offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.price-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-old {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
}

.price-highlight {
  color: var(--cyan);
  font-size: 48px;
  font-weight: 900;
}

.price-note {
  font-size: 13px;
  color: #999;
  margin-top: 12px;
  font-style: italic;
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn--primary {
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 17px;
  padding: 20px 24px;
}

.btn--primary:hover {
  opacity: 0.95;
}

.btn--secondary-light {
  background: transparent;
  color: #999;
  border: 1px solid #444;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 24px;
  transition: all 0.2s;
}

.btn--secondary-light:hover {
  color: var(--white);
  border-color: #666;
}

.guarantee-badge {
  background: rgba(0, 200, 212, 0.08);
  border: 1px solid rgba(0, 200, 212, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
  width: 100%;
}

.guarantee-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.guarantee-text strong {
  color: var(--cyan);
  font-weight: 700;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .upsell-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .confirmation {
    padding: 60px 0;
  }

  .transition {
    padding: 60px 0;
  }

  .upsell-intro {
    padding: 60px 0;
  }

  .special-offer {
    padding: 60px 0;
  }

  .upsell-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .confirmation__title {
    font-size: 28px;
  }

  .transition__title {
    font-size: 24px;
  }

  .upsell-title {
    font-size: 24px;
  }

  .benefit-item {
    font-size: 15px;
  }

  .price-new {
    font-size: 22px;
  }

  .price-highlight {
    font-size: 36px;
  }

  .cta-section {
    gap: 10px;
  }
}


/* ATUALIZAÇÃO - SEÇÃO UPSELL COM IMAGEM REAL */

.upsell-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.product-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
  border-radius: 8px;
}

.upsell-intro-text {
  margin-bottom: 28px;
}

.upsell-intro-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.upsell-intro-para {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.benefit-check {
  color: var(--cyan);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefit-text {
  font-weight: 500;
}

.transformation-box {
  background: rgba(0, 200, 212, 0.06);
  border: 1px solid rgba(0, 200, 212, 0.15);
  border-radius: 8px;
  padding: 24px 20px;
  margin-top: 28px;
}

.transformation-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.transformation-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.transformation-item {
  background: var(--white);
  border-left: 3px solid var(--cyan);
  padding: 12px 14px;
  border-radius: 4px;
}

.transformation-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

@media (max-width: 768px) {
  .transformation-items {
    grid-template-columns: 1fr;
  }
}


/* CONTAINER KIWIFY */
.kiwify-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
}

#kiwify-upsell-trigger-Mfka7Hy {
  transition: transform 0.2s, box-shadow 0.2s;
}

#kiwify-upsell-trigger-Mfka7Hy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35) !important;
}

#kiwify-upsell-cancel-trigger-Mfka7Hy {
  transition: color 0.2s;
}

#kiwify-upsell-cancel-trigger-Mfka7Hy:hover {
  color: #777;
}


/* SEÇÃO DE PROVA SOCIAL - COMENTÁRIOS */
.social-proof {
  background: var(--white);
  padding: 80px 0;
}

.social-proof-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.comment-card {
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 200, 212, 0.2);
  transform: translateY(-4px);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B3FE4, #9B5CFF);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.comment-info {
  flex: 1;
}

.comment-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.comment-date {
  font-size: 13px;
  color: #999;
  margin: 4px 0 0 0;
}

.comment-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.comment-stars {
  font-size: 16px;
  color: #FFB800;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .social-proof {
    padding: 60px 0;
  }

  .comments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comment-card {
    padding: 20px;
  }
}


/* AVATAR COM FOTO REAL */
.comment-avatar-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00c8d4;
  flex-shrink: 0;
}

.comment-card--featured {
  grid-column: span 1;
  border: 2px solid rgba(0, 200, 212, 0.3);
  background: linear-gradient(135deg, rgba(0, 200, 212, 0.05), rgba(123, 63, 228, 0.05));
}

.comment-card--featured:hover {
  border-color: rgba(0, 200, 212, 0.5);
  box-shadow: 0 12px 32px rgba(0, 200, 212, 0.15);
}

@media (max-width: 768px) {
  .comment-card--featured {
    grid-column: span 1;
  }
}
