/* CARROSSEL DE PRODUTOS OTIMIZADO */
.carousel-wrapper-new {
  background: transparent;
  padding: clamp(20px, 4vw, 40px);
  width: 100%;
}

.carousel-container-new {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4/5;
  height: auto;
}

.carousel-track-new {
  display: flex;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.carousel-slide-new {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 15px;
  background: white;
}

/* Botões de navegação */
.carousel-btn-new {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn-new:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.carousel-btn-new svg {
  width: 24px;
  height: 24px;
}

.carousel-btn-prev-new {
  left: 15px;
}

.carousel-btn-next-new {
  right: 15px;
}

/* Indicadores */
.carousel-indicators-new {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.carousel-indicator-new {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator-new.active {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.3);
}

/* FEEDBACK EM ESTILO CELULAR */
.feedback-phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.phone-frame {
  position: relative;
  width: 320px;
  height: 640px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 15px rgba(0, 0, 0, 0.3),
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #000;
  border-radius: 0 0 25px 25px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-button {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  z-index: 5;
}

.feedback-content {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: visible;
  position: relative;
}

.feedback-item-phone {
  animation: fadeInOutPhone 10s ease-in-out infinite;
  opacity: 0;
  position: absolute;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
  visibility: hidden;
}

.feedback-item-phone:nth-child(1) {
  animation-delay: 0s;
  z-index: 5;
  opacity: 1; /* Primeiro item visível imediatamente */
  visibility: visible; /* Primeiro item visível desde o início */
  animation-fill-mode: both;
}

.feedback-item-phone:nth-child(2) {
  animation-delay: 10s;
  z-index: 4;
}

.feedback-item-phone:nth-child(3) {
  animation-delay: 20s;
  z-index: 3;
}

.feedback-item-phone:nth-child(4) {
  animation-delay: 30s;
  z-index: 2;
}

.feedback-item-phone:nth-child(5) {
  animation-delay: 40s;
  z-index: 1;
}

@keyframes fadeInOutPhone {
  0% {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }

  2% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  90% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  98% {
    opacity: 0;
    transform: translateY(-20px);
    visibility: visible;
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
  }
}

.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 5px;
}

.feedback-star {
  color: #fbbf24;
  font-size: clamp(18px, 4vw, 24px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feedback-text-phone {
  color: #1a1a1a;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 600;
  line-height: 1.6;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.3px;
}

.feedback-author-phone {
  color: #25d366;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .carousel-wrapper-new {
    padding: clamp(15px, 3vw, 30px);
    width: 100%;
  }

  .carousel-container-new {
    max-width: 100%;
    aspect-ratio: 4/5;
  }

  .carousel-btn-new {
    width: 44px;
    height: 44px;
  }

  .carousel-btn-new svg {
    width: 20px;
    height: 20px;
  }

  .carousel-btn-prev-new {
    left: 10px;
  }

  .carousel-btn-next-new {
    right: 10px;
  }

  .phone-frame {
    width: 280px;
    height: 560px;
  }

  .feedback-content {
    padding: 25px 15px;
  }

  .feedback-text-phone {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .carousel-wrapper-new {
    padding: clamp(12px, 2vw, 20px);
    width: 100%;
  }

  .carousel-container-new {
    aspect-ratio: 4/5;
    max-width: 100%;
  }

  .carousel-btn-new {
    width: 40px;
    height: 40px;
  }

  .carousel-btn-new svg {
    width: 18px;
    height: 18px;
  }

  .carousel-btn-prev-new {
    left: 8px;
  }

  .carousel-btn-next-new {
    right: 8px;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .phone-notch {
    width: 130px;
    height: 20px;
  }

  .feedback-content {
    padding: 20px 12px;
  }

  .feedback-stars {
    gap: 4px;
  }

  .feedback-star {
    font-size: 16px;
  }

  .feedback-text-phone {
    font-size: 12px;
    min-height: 40px;
    line-height: 1.4;
    font-weight: 500;
  }

  .feedback-author-phone {
    font-size: 10px;
    margin-top: 8px;
  }
}

/* ====================================
 LAYOUT DE FEEDBACK + CONTATO UNIFICADO
 ==================================== */

.feedback-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

  /* CARTÃO DE CONTATO */
  .contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 1px rgba(255, 255, 255, 0.3);
    animation: slideUpFadeIn 0.8s ease-out;
    transform-origin: bottom;
  }

  @keyframes slideUpFadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .contact-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
  }

  .contact-subtitle {
    font-size: clamp(14px, 3vw, 16px);
    color: #666;
    margin: 0 0 25px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .contact-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #25d366, #34af23);
    border-radius: 2px;
    margin: 0 auto 25px auto;
  }

  /* BOTÃO WHATSAPP PREMIUM */
  .btn-contact-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5e 100%);
    color: white;
    padding: 18px 48px;
    border: none;
    border-radius: 50px;
    font-size: clamp(15px, 3.5vw, 17px);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    box-shadow:
      0 15px 45px rgba(37, 211, 102, 0.4),
      0 8px 20px rgba(37, 211, 102, 0.2),
      inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .btn-contact-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .btn-contact-whatsapp:hover {
    transform: translateY(-6px);
    box-shadow:
      0 22px 60px rgba(37, 211, 102, 0.5),
      0 12px 28px rgba(37, 211, 102, 0.25),
      inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }

  .btn-contact-whatsapp:hover::before {
    left: 100%;
  }

  .btn-contact-whatsapp:active {
    transform: translateY(-3px);
  }

  .btn-contact-whatsapp svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }

  /* LAYOUT LADO A LADO (DESKTOP) */
  @media (min-width: 1024px) {
    .feedback-wrapper {
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 100px;
      padding: 40px 20px;
    }

    .contact-card {
      max-width: 350px;
      height: fit-content;
    }

    .phone-frame {
      flex-shrink: 0;
    }

    /* Não esconder phone-frame-container no desktop - manter visível */
    .phone-frame-container {
      display: flex;
    }

    .feedback-grid {
      display: none;
    }
  }

  /* TABLET */
  @media (max-width: 1023px) and (min-width: 769px) {
    .feedback-wrapper {
      gap: 50px;
      padding: 30px 20px;
    }

    .contact-card {
      max-width: 300px;
      padding: 35px 25px;
    }

    .phone-frame {
      width: 300px;
      height: 600px;
    }

    /* Manter phone-frame-container visível no tablet também */
    .phone-frame-container {
      display: flex;
    }

    .feedback-grid {
      display: none;
    }
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .feedback-wrapper {
      gap: 30px;
      padding: 20px 16px;
    }

    .contact-card {
      max-width: 100%;
      padding: 30px 24px;
      display: none;
    }

    .contact-title {
      font-size: 28px;
    }

    .contact-subtitle {
      font-size: 14px;
    }

    .btn-contact-whatsapp {
      width: 100%;
      padding: 14px 24px;
      font-size: 15px;
    }

    .phone-frame {
      width: 280px;
      height: 560px;
    }

    /* Garantir que phone-frame-container seja sempre visível no mobile */
    .phone-frame-container {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    .feedback-grid {
      display: none;
    }
  }

  /* MOBILE PEQUENO */
  @media (max-width: 480px) {
    .feedback-wrapper {
      gap: 25px;
      padding: 16px 12px;
    }

    .contact-card {
      padding: 24px 20px;
      border-radius: 24px;
      display: none;
    }

    .contact-title {
      font-size: 24px;
      margin-bottom: 6px;
    }

    .contact-subtitle {
      font-size: 13px;
      margin-bottom: 20px;
    }

    .btn-contact-whatsapp {
      padding: 12px 20px;
      font-size: 14px;
      gap: 10px;
    }

    .btn-contact-whatsapp svg {
      width: 18px;
      height: 18px;
    }

    .phone-frame {
      width: 240px;
      height: 480px;
    }

    .phone-frame-container {
      display: flex;
    }

    .feedback-grid {
      display: none;
    }
  }

  /* ====================================
   FEEDBACK GRID VISÍVEL
   ==================================== */

  .feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .feedback-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideUpFadeIn 0.6s ease-out backwards;
  }

  .feedback-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  }

  .feedback-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .feedback-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .feedback-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .feedback-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .feedback-card:nth-child(5) {
    animation-delay: 0.5s;
  }

  .feedback-stars {
    display: flex;
    gap: 6px;
    font-size: 18px;
  }

  .feedback-star {
    color: #fbbf24;
    transition: transform 0.3s ease;
  }

  .feedback-card:hover .feedback-star {
    transform: scale(1.15);
  }

  .feedback-text {
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    flex-grow: 1;
  }

  .feedback-author {
    color: #25d366;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(37, 211, 102, 0.2);
  }

  /* RESPONSIVO FEEDBACK GRID */
  @media (max-width: 1024px) {
    .feedback-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .feedback-card {
      padding: 20px;
    }
  }

  @media (max-width: 768px) {
    .feedback-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .feedback-card {
      padding: 18px;
    }

    .feedback-text {
      font-size: 14px;
    }

    .feedback-stars {
      font-size: 16px;
    }
  }

  /* CONTATO STANDALONE - PREMIUM */
  .contact-card-standalone {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    backdrop-filter: blur(40px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 50px 50px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.18),
      0 15px 40px rgba(37, 211, 102, 0.08),
      inset 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: slideUpFadeIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom;
    position: relative;
    overflow: hidden;
  }

  /* Desktop - Melhor layout */
  @media (min-width: 1025px) {
    .contact-card-standalone {
      max-width: 700px;
      padding: 60px 60px;
    }

    .contact-card-standalone .contact-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .contact-link {
      padding: 22px 20px;
      font-size: 15px;
      gap: 12px;
    }

    .contact-link svg {
      width: 26px;
      height: 26px;
    }

    .btn-contact-whatsapp {
      padding: 18px 50px;
      font-size: 17px;
    }
  }

  .contact-card-standalone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
  }

  .contact-card-standalone::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite reverse;
  }

  @keyframes float {

    0%,
    100% {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(20px, 20px);
    }
  }

  .contact-card-standalone .contact-title {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 950;
    color: #0a0a0a;
    margin: 0 0 4px 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
  }

  .contact-card-standalone .contact-subtitle {
    font-size: clamp(14px, 3.5vw, 18px);
    color: #25d366;
    margin: 0 0 30px 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }

  .contact-card-standalone .contact-divider {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #25d366, #34af23, #25d366);
    border-radius: 4px;
    margin: 0 auto 30px auto;
    box-shadow:
      0 6px 20px rgba(37, 211, 102, 0.35),
      0 2px 8px rgba(37, 211, 102, 0.2);
    position: relative;
    z-index: 1;
  }

  /* LINKS DE CONTATO - GRID RESPONSIVO */
  .contact-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
  }

  .contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: left 0.5s ease;
    z-index: -1;
  }

  .contact-link:hover::before {
    left: 100%;
  }

  /* WhatsApp */
  .contact-link.whatsapp {
    color: #25d366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08));
    border-color: rgba(37, 211, 102, 0.35);
  }

  .contact-link.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(37, 211, 102, 0.15));
    border-color: #25d366;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
  }

  /* Email */
  .contact-link.email {
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.08));
    border-color: rgba(37, 99, 235, 0.35);
  }

  .contact-link.email:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.15));
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
  }

  /* Localização/Endereço */
  .contact-link.location {
    color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
    border-color: rgba(245, 158, 11, 0.35);
  }

  .contact-link.location:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.15));
    border-color: #f59e0b;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
  }

  /* Instagram */
  .contact-link.instagram {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(139, 92, 246, 0.08));
    color: #d946ef;
    border-color: rgba(217, 70, 239, 0.35);
  }

  .contact-link.instagram:hover {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.3), rgba(139, 92, 246, 0.15));
    border-color: #d946ef;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(217, 70, 239, 0.25);
  }

  .contact-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .btn-contact-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5e 100%);
    color: white;
    padding: 16px 42px;
    border: none;
    border-radius: 50px;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    box-shadow:
      0 15px 45px rgba(37, 211, 102, 0.4),
      0 8px 20px rgba(37, 211, 102, 0.2),
      inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .btn-contact-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .btn-contact-whatsapp:hover {
    transform: translateY(-6px);
    box-shadow:
      0 22px 60px rgba(37, 211, 102, 0.5),
      0 12px 28px rgba(37, 211, 102, 0.25),
      inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }

  .btn-contact-whatsapp:hover::before {
    left: 100%;
  }

  .btn-contact-whatsapp:active {
    transform: translateY(-3px);
  }

  .btn-contact-whatsapp svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }

  .contact-divider-bottom {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin-bottom: 25px;
  }

  @media (max-width: 1024px) and (min-width: 769px) {
    .contact-card-standalone {
      max-width: 550px;
      padding: 55px 50px;
    }
  }

  @media (max-width: 768px) {
    .contact-card-standalone {
      padding: 50px 40px;
      border-radius: 32px;
      max-width: 100%;
    }

    .contact-card-standalone .contact-title {
      font-size: 36px;
      margin-bottom: 4px;
    }

    .contact-card-standalone .contact-subtitle {
      font-size: 16px;
      margin-bottom: 32px;
    }

    .contact-card-standalone .contact-divider {
      width: 70px;
      height: 5px;
      margin-bottom: 38px;
    }

    .contact-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 38px;
    }

    .contact-link {
      padding: 18px 16px;
      font-size: 13px;
      gap: 10px;
      font-weight: 700;
    }

    .contact-link svg {
      width: 22px;
      height: 22px;
    }

    .btn-contact-whatsapp {
      padding: 16px 40px;
      font-size: 15px;
      gap: 10px;
    }

    .btn-contact-whatsapp svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 480px) {
    .contact-card-standalone {
      padding: 36px 26px;
      border-radius: 28px;
    }

    .contact-card-standalone .contact-title {
      font-size: 28px;
      margin-bottom: 4px;
    }

    .contact-card-standalone .contact-subtitle {
      font-size: 13px;
      margin-bottom: 24px;
    }

    .contact-card-standalone .contact-divider {
      width: 60px;
      height: 4px;
      margin-bottom: 26px;
    }

    .contact-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 26px;
    }

    .contact-link {
      padding: 14px 12px;
      font-size: 12px;
      gap: 8px;
      border-radius: 12px;
      font-weight: 700;
    }

    .contact-link svg {
      width: 20px;
      height: 20px;
    }

    .btn-contact-whatsapp {
      padding: 13px 32px;
      font-size: 13px;
      gap: 8px;
      border-radius: 50px;
    }

    .btn-contact-whatsapp svg {
      width: 18px;
      height: 18px;
    }
  }

  /* CONTAINER CELULAR FEEDBACK */
  .phone-frame-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    margin-top: 40px;
    margin-bottom: 50px;
    flex-shrink: 0;
    width: 100%;
    overflow: visible;
  }

  @media (max-width: 1024px) {
    .phone-frame-container {
      padding: 25px 15px;
      margin-top: 30px;
      margin-bottom: 40px;
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .phone-frame-container {
      padding: 20px 12px;
      margin-top: 20px;
      margin-bottom: 30px;
      width: 100%;
      display: flex !important;
      visibility: visible !important;
    }

    .phone-frame {
      width: 260px;
      height: 520px;
      max-width: 90vw;
    }
  }

  @media (max-width: 480px) {
    .phone-frame-container {
      padding: 15px 8px;
      margin-top: 15px;
      margin-bottom: 25px;
      width: 100%;
      display: flex !important;
      visibility: visible !important;
      overflow: visible;
    }

    .phone-frame {
      width: 220px;
      height: 440px;
      max-width: 85vw;
      margin: 0 auto;
    }
  }