/* --- CONFIGURAÇÕES E VARIÁVEIS --- */
:root {
  --primary-color: #dfb76c;
  --primary-light: #f5d79b;
  --primary-hover: #cfa358;
  --bg-dark-1: #060913;
  --bg-dark-2: #0b0f1d;
  --bg-dark-3: #11172a;
  --bg-glass: rgba(11, 15, 29, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-gold: rgba(223, 183, 108, 0.2);
  --btn-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --btn-success-hover: linear-gradient(135deg, #34d399 0%, #047857 100%);
  --btn-gold: linear-gradient(135deg, #f5d79b 0%, #cfa358 100%);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & LAYOUT GLOBAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-dark-1);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 50%,
    var(--primary-hover) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: inherit;
  font-weight: inherit;
}

/* --- BOTÕES --- */
.btn {
  display: inline-block;
  width: 100%;
  padding: 18px 36px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--btn-success);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  background: var(--btn-success-hover);
}

.btn-scroll {
  background: var(--btn-gold);
  color: var(--bg-dark-1);
  box-shadow: 0 4px 20px rgba(223, 183, 108, 0.2);
}

.btn-scroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(223, 183, 108, 0.4);
  filter: brightness(1.05);
}

/* --- FAIXA DE AVISO (TOP BANNER) --- */
.top-banner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  /* background: var(--btn-success); */
  color: var(--btn-success);
  text-align: center;
  padding: 10px 0 15px;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;

  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* --- HEADER PRINCIPAL --- */
.main-header {
  padding: 24px 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}

.nav-extra {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* --- SEÇÃO DE TÍTULO GERAL --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-light);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--btn-gold);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

/* --- 1. HERO --- */
.hero {
  position: relative;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(223, 183, 108, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 60%
    ),
    #050811;
  padding: 100px 0 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 183, 108, 0.08);
  border: 1px solid rgba(223, 183, 108, 0.2);
  color: var(--primary-color);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  width: fit-content;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-light);
  /* text-align: center; */
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 32px;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Seta indicadora curta para mobile */
.mobile-scroll-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ef4444; /* Vermelho correspondente ao ponto da transmissão */
  font-size: 60px;
  /* margin-top: -20px; */
  /* margin-bottom: 40px; */
  animation: arrow-bounce 1.6s infinite ease-in-out;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (min-width: 768px) {
  .mobile-scroll-indicator {
    display: none;
  }
}

.hero-form {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 15px;
  margin-top: 45px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-form h3 {
  font-family: var(--font-body);
  font-size: 1.35rem; /* Ajustado ligeiramente para harmonizar com a nova fonte */
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text-light);
}

/* --- BLOCO EXCLUSIVO DE TRANSMISSÃO --- */
.exclusivo-badge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(223, 183, 108, 0.03);
  border: 1px dashed rgba(223, 183, 108, 0.35);
  padding: 16px 20px;
  border-radius: 12px;
  margin: 0 auto 35px auto;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 0 15px rgba(223, 183, 108, 0.05);
  position: relative;
  overflow: hidden;
}

.exclusivo-badge-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(223, 183, 108, 0.06) 0%,
    transparent 85%
  );
  pointer-events: none;
}

.exclusivo-badge-container .live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.exclusivo-badge-container .live-label i {
  color: #ef4444;
  font-size: 0.55rem;
  animation: pulse-live-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-live-dot {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
}

.exclusivo-badge-container .exclusivo-date {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.25;
  transition: var(--transition-smooth);
}

@media (min-width: 481px) {
  .exclusivo-badge-container .exclusivo-date {
    font-size: 2.55rem;
  }
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.required-mark {
  color: #ef4444;
  margin-left: 2px;
  font-weight: bold;
}

.form-required-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: left;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #10b981;
  border-radius: 6px;
  color: var(--text-light);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* --- 2. CONTEÚDO --- */
.conteudo {
  padding: 100px 0;
  background-color: var(--bg-dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cards-grid {
  display: grid;
  gap: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-glass-gold);
  box-shadow: 0 20px 45px -10px rgba(223, 183, 108, 0.1);
}

.card-icon {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  width: 76px;
  height: 76px;
  line-height: 76px;
  background: rgba(223, 183, 108, 0.06);
  border: 1px solid rgba(223, 183, 108, 0.15);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  background: rgba(223, 183, 108, 0.12);
  transform: scale(1.1);
  color: var(--primary-light);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- 3. VÍDEO --- */
.video-section {
  padding: 100px 0;
  background-color: var(--bg-dark-1);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.video-container {
  max-width: 850px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.7);
  margin-bottom: 48px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section .btn-scroll {
  display: inline-block;
  max-width: 440px;
}

/* --- 4. SOBRE --- */
.sobre {
  padding: 100px 0;
  background-color: var(--bg-dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sobre-img-container {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-img {
  width: 100%;
  max-width: 450px;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.sobre-img-glow {
  position: absolute;
  width: 100%;
  max-width: 450px;
  height: 480px;
  border-radius: 16px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.sobre-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-light);
}

.sobre-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- 5. DEPOIMENTOS --- */
.depoimentos {
  padding: 60px 0;
  background:
    linear-gradient(rgba(6, 9, 19, 0.95), rgba(6, 9, 19, 0.95)),
    radial-gradient(circle, rgba(223, 183, 108, 0.08) 0%, transparent 65%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.quote-container {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  padding: 32px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  text-align: center;
}

.quote-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 16px;
}

blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-light);
}

cite {
  font-style: normal;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- CARROSSEL DE DEPOIMENTOS --- */
.depoimentos-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
  padding: 40px 10px; /* Evita que a sombra / blur dos cards seja cortada */
  margin: -40px -10px;
  transition: height 0.3s ease; /* Transição suave para ajuste de altura */
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 15px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.carousel-btn:hover {
  background: var(--btn-gold);
  color: var(--bg-dark-1);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(223, 183, 108, 0.35);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(223, 183, 108, 0.5);
}

@media (min-width: 1024px) {
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -24px; /* Ajusta para alinhar verticalmente com o centro do card */
  }

  .prev-btn {
    left: -70px;
  }

  .next-btn {
    right: -70px;
  }

  .carousel-controls {
    margin-top: 10px;
  }
}

/* --- 6. SOCIAL --- */
.social {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-dark-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.social h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--btn-gold);
  color: var(--bg-dark-1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(223, 183, 108, 0.3);
  border-color: var(--primary-color);
}

/* --- 7. RODAPÉ --- */
.rodape {
  background-color: #03050a;
  color: var(--text-muted);
  padding: 48px 0;
  font-size: 0.95rem;
}

.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

/* --- INTERATIVIDADE --- */
.hero-content h1,
.hero-subheadline,
.hero-form {
  animation: slide-up 1s ease forwards;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVIDADE (Telas Maiores) --- */
@media (min-width: 768px) {
  .hero {
    padding: 100px 0 120px 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 48px;
    row-gap: 0;
    align-items: center;
  }
  .hero-content {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }
  .hero-subheadline {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 16px;
    margin-bottom: 40px; /* Keep bottom margin to match the original height/spacing */
  }
  .hero-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    padding: 40px 32px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .sobre-img-container {
    margin-bottom: 0;
  }
  .sobre-img {
    height: 540px;
  }
  .sobre-img-glow {
    height: 540px;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-nav {
    margin-top: 0;
  }

  /* --- 5. DEPOIMENTOS OVERRIDES (Desktop) --- */
  .depoimentos {
    padding: 120px 0;
  }
  .quote-container {
    padding: 56px 40px;
  }
  .quote-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
  }
  blockquote {
    font-size: 1.65rem;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  cite {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
  }
}

/* --- PAGINA DE OBRIGADO (obrigado.html) --- */
.thank-you-body {
  background-color: var(--bg-dark-1);
}

.thank-you-body .header-container {
  justify-content: center;
}

.thank-you-section {
  padding: 120px 0 60px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-section .container {
  padding: 0 8px !important;
}

.thank-you-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.thank-you-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  padding: 32px 16px !important;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 24px;
  animation: scale-up 0.6s ease;
}

.thank-you-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.thank-you-card .subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.whatsapp-box {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: left;
  margin-top: 20px;
}

.whatsapp-box h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  color: #10b981;
  margin-bottom: 12px;
}

.whatsapp-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.feedback-form-box {
  background: transparent !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none !important;
  padding: 32px 0px !important;
  border-radius: 20px;
  box-shadow: none !important;
  text-align: center;
}

.feedback-form-box h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.feedback-notice {
  font-style: italic;
  color: var(--primary-color);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.google-form-wrapper {
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  border: none !important;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  margin: 0 !important;
}

.google-form-wrapper iframe {
  width: 100% !important;
  max-width: 640px;
  height: 600px !important;
  border: none;
  border-radius: 0 !important;
  display: block;
}

.google-form-placeholder {
  padding: 40px;
  color: var(--text-muted);
}

.placeholder-form-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  opacity: 0.7;
}

.code-tip {
  display: block;
  margin-top: 16px;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--primary-light);
  font-size: 0.85rem;
}

@keyframes scale-up {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 481px) {
  .thank-you-section .container {
    padding: 0 24px !important;
  }
  .thank-you-card {
    padding: 32px 20px !important;
  }
  .feedback-form-box {
    padding: 32px 20px !important;
    background: var(--bg-glass) !important;
    border: 1px solid var(--border-glass) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
  }
  .google-form-wrapper {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  .google-form-wrapper iframe {
    height: 2200px !important;
    border-radius: 12px !important;
  }
}

@media (min-width: 768px) {
  .thank-you-section {
    padding: 90px 0 80px 0;
  }
  .thank-you-card {
    padding: 48px !important;
  }
  .thank-you-card h1 {
    font-size: 2.5rem;
  }
  .whatsapp-box {
    padding: 36px;
  }
  .feedback-form-box {
    padding: 48px !important;
  }
  .google-form-wrapper iframe {
    height: 1781px !important;
  }
}
