/* style.css */

:root {
  --bg-main: #FAFAFA;
  --text-dark: #111827;
  --text-muted: #4B5563;

  --yellow-primary: #FACC15;
  --yellow-hover: #EAB308;
  --yellow-light: #FEF9C3;
  --yellow-dark: #CA8A04;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h3 {
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: sticky;
  top: 0;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--text-dark), #555, var(--text-dark));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
}

.logo::after {
  content: ".";
  -webkit-text-fill-color: var(--yellow-primary);
  animation: blinkDot 1s step-end infinite;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes blinkDot {
  50% {
    opacity: 0;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-dark);
}

.lang-switch {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.lang-btn {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.22);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: var(--transition), transform 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lang-btn:hover {
  transform: translateY(-1px);
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.35);
  color: var(--text-dark);
}

.lang-btn.active {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(168, 85, 247, 0.18));
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.14);
}

/* HERO SECTION */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Mantém o texto e o card na frente */
  /* O background foi retirado daqui */
}

.hero-section::before {
  content: "";
  position: absolute;
  /* Expandimos um pouco além das bordas para o blur não vazar cortado */
  top: -20px; 
  left: -20px; 
  right: -20px; 
  bottom: -20px;
  z-index: -1; 

  background: linear-gradient(270deg, var(--yellow-primary), #94A3B8, var(--yellow-light), #94A3B8);
  background-size: 600% 600%;
  animation: bg-pan-left 15s ease infinite both;

  /* MUDANÇA 1: Blur pesado para "embaçar" as cores do degradê e misturá-las */
  filter: blur(40px);
  
  /* MUDANÇA 2: Opacidade reduzida para não ofuscar a leitura do texto */
  opacity: 0.65; 

  /* MUDANÇA 3: Transição esticada de 15% para 30%, deixando o sumiço do fundo bem mais gradual */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  top: -120px;
  right: -120px;
  filter: blur(38px);
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 50%;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  overflow: visible;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.75;
  z-index: 0;
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  background: rgba(250, 204, 21, 0.25);
  top: -20px;
  right: 20px;
}

.hero-visual::after {
  width: 140px;
  height: 140px;
  background: rgba(59, 130, 246, 0.18);
  bottom: -10px;
  left: 10px;
}

.hero-footer {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  
  /* Efeito de vidro Premium */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  z-index: 10;
}

.hero-footer .footer-separator {
  opacity: 0.55;
}

.hero-footer span[data-i18n] {
  opacity: 0.88;
}

.visual-card {
  width: 340px;
  max-width: 100%;
  min-height: 420px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.18);
  animation: floatCard 6.5s ease-in-out infinite;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08), transparent 30%);
  pointer-events: none;
}

.visual-card__header {
  height: 120px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.95), rgba(250, 204, 21, 0.4));
  position: relative;
  overflow: hidden;
}

.visual-card__header::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 20px;
  right: 15px;
  background: rgba(255, 255, 255, 0.45);
}

.visual-card__body {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.visual-bar {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.08));
}

.visual-bar.long {
  width: 90%;
}

.visual-bar.medium {
  width: 70%;
}

.visual-bar.short {
  width: 50%;
}

.visual-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.grid-square {
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.visual-chip {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.16);
  box-shadow: 0 0 0 22px rgba(59, 130, 246, 0.05);
  animation: pulseChip 3.5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-0.25deg);
  }
  50% {
    transform: translateY(-18px) rotate(-0.35deg);
  }
  75% {
    transform: translateY(-10px) rotate(-0.2deg);
  }
}

@keyframes pulseChip {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--yellow-light);
  color: var(--yellow-dark);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--yellow-primary);
  border-radius: 50%;
  margin-right: 8px;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  
  /* Adicione esta linha nova: */
  animation: premium-reveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.highlight-text {
  color: var(--text-dark);
  box-shadow: inset 0 -0.4em 0 var(--yellow-primary);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.button-group {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.2rem;
  background-color: var(--yellow-primary);
  color: var(--text-dark);
  border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 20px rgba(250, 204, 21, 0.25);
  padding: 1rem 2.2rem;
}

.btn-primary:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(250, 204, 21, 0.32);
}

.btn-secondary {
  background-color: #fff;
  color: var(--text-dark);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.18);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5b;
}

/* WHATSAPP */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: var(--transition);
  z-index: 1000;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}


/* FOOTER */
.footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 1.2rem 5% 0.5rem;
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--yellow-primary);
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 0.25rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.35rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--yellow-primary);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 0.65rem;
  text-align: center;
  color: #9ca3af;
}

/* MÉTODO */
.method-section {
  padding: 100px 20px;
  background: #fff;
}

.method-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--yellow-primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 6px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

.header-line {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow-primary);
}

.services-hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
}

.services-hero-text {
  max-width: 720px;
  margin: 0 auto;
}

.services-hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.services-hero-text p {
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.services-hero-visual {
  position: relative;
  width: min(440px, 100%);
}

.service-visual-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.service-visual-card__header {
  height: 120px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.95), rgba(250, 204, 21, 0.35));
}

.service-visual-card__body {
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.service-visual-line {
  height: 14px;
  border-radius: 999px;
  background: #e5e7eb;
}

.service-visual-line.long {
  width: 90%;
}

.service-visual-line.medium {
  width: 70%;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.service-visual-box {
  min-height: 72px;
  border-radius: 22px;
  background: #f3f4f6;
}

.service-visual-dot {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.18);
  box-shadow: 0 0 0 16px rgba(250, 204, 21, 0.08);
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 760px;
  line-height: 1.8;
}

.services-hero,
.projects-section,
.about-section,
.contact-section {
  padding: 2rem 5% 1rem 5%;
}

.services-list {
  padding: 0 5% 2rem 5%;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.services-benefits {
  padding: 4rem 0;
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}

.benefits-list li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-cta {
  padding: 3rem 0 5rem;
  text-align: center;
}

.services-cta h2 {
  margin-bottom: 1.75rem;
}

.services-cta .btn-primary,
.services-cta .btn-whatsapp {
  margin-top: 0;
}

/* SERVICES & PROJECTS PREVIEW */
.services-preview,
.projects-preview {
  padding: 100px 0;
  text-align: center;
}

.services-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card,
.project-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-primary);
  box-shadow: 0 15px 30px rgba(250, 204, 21, 0.12);
}

.service-card-visual {
  position: relative;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.92), rgba(250, 204, 21, 0.28));
  margin-bottom: 1rem;
  overflow: hidden;
}

.service-card-shape {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* PORTFÓLIO / PROJETOS */
.projects-section {
  padding: 5rem 5%;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-primary);
  box-shadow: 0 15px 30px rgba(250, 204, 21, 0.1);
}

.tech-stack {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.project-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--yellow-dark);
}

/* SOBRE */
.about-section {
  padding: 5rem 5%;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* CONTATO E FORMULÁRIO */
.contact-section {
  padding: 5rem 5%;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: #f8fafc;
  transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--yellow-primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
}

/* MODAL */
#success-modal {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalShow 0.3s ease-out;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.modal-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

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

/* LAYOUT BASE */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .button-group {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

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

  .method-section {
    padding: 60px 20px;
  }
}


/* --- KEYFRAMES DA ILUSTRAÇÃO (Mini Tela) --- */
/* --- ANIMAÇÃO PREMIUM: ENTRADA SUAVE COM BRILHO --- */
@-webkit-keyframes premium-reveal {
  0% {
    opacity: 0;
    transform: translateY(15px);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* Um brilho suave usando o seu tom de amarelo */
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3); 
  }
}

@keyframes premium-reveal {
  0% {
    opacity: 0;
    transform: translateY(15px);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
  }
}

/* --- KEYFRAMES DO TEXTO PISCANDO (Glow Amarelo) --- */
@-webkit-keyframes text-flicker-in-glow {
  0% { opacity: 0; }
  10% { opacity: 0; text-shadow: none; }
  10.1% { opacity: 1; text-shadow: none; }
  10.2% { opacity: 0; text-shadow: none; }
  20% { opacity: 0; text-shadow: none; }
  20.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.25); }
  20.6% { opacity: 0; text-shadow: none; }
  30% { opacity: 0; text-shadow: none; }
  30.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  30.5% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  30.6% { opacity: 0; text-shadow: none; }
  45% { opacity: 0; text-shadow: none; }
  45.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  50% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  55% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  55.1% { opacity: 0; text-shadow: none; }
  57% { opacity: 0; text-shadow: none; }
  57.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35); }
  60% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35); }
  60.1% { opacity: 0; text-shadow: none; }
  65% { opacity: 0; text-shadow: none; }
  65.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35), 0 0 100px rgba(250, 204, 21, 0.1); }
  75% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35), 0 0 100px rgba(250, 204, 21, 0.1); }
  75.1% { opacity: 0; text-shadow: none; }
  77% { opacity: 0; text-shadow: none; }
  77.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.4), 0 0 110px rgba(250, 204, 21, 0.2), 0 0 100px rgba(250, 204, 21, 0.1); }
  85% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.4), 0 0 110px rgba(250, 204, 21, 0.2), 0 0 100px rgba(250, 204, 21, 0.1); }
  85.1% { opacity: 0; text-shadow: none; }
  86% { opacity: 0; text-shadow: none; }
  86.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.6), 0 0 60px rgba(250, 204, 21, 0.45), 0 0 110px rgba(250, 204, 21, 0.25), 0 0 100px rgba(250, 204, 21, 0.1); }
  100% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.6), 0 0 60px rgba(250, 204, 21, 0.45), 0 0 110px rgba(250, 204, 21, 0.25), 0 0 100px rgba(250, 204, 21, 0.1); }
}
@keyframes text-flicker-in-glow {
  0% { opacity: 0; }
  10% { opacity: 0; text-shadow: none; }
  10.1% { opacity: 1; text-shadow: none; }
  10.2% { opacity: 0; text-shadow: none; }
  20% { opacity: 0; text-shadow: none; }
  20.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.25); }
  20.6% { opacity: 0; text-shadow: none; }
  30% { opacity: 0; text-shadow: none; }
  30.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  30.5% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  30.6% { opacity: 0; text-shadow: none; }
  45% { opacity: 0; text-shadow: none; }
  45.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  50% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  55% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.45), 0 0 60px rgba(250, 204, 21, 0.25); }
  55.1% { opacity: 0; text-shadow: none; }
  57% { opacity: 0; text-shadow: none; }
  57.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35); }
  60% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35); }
  60.1% { opacity: 0; text-shadow: none; }
  65% { opacity: 0; text-shadow: none; }
  65.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35), 0 0 100px rgba(250, 204, 21, 0.1); }
  75% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.35), 0 0 100px rgba(250, 204, 21, 0.1); }
  75.1% { opacity: 0; text-shadow: none; }
  77% { opacity: 0; text-shadow: none; }
  77.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.4), 0 0 110px rgba(250, 204, 21, 0.2), 0 0 100px rgba(250, 204, 21, 0.1); }
  85% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.55), 0 0 60px rgba(250, 204, 21, 0.4), 0 0 110px rgba(250, 204, 21, 0.2), 0 0 100px rgba(250, 204, 21, 0.1); }
  85.1% { opacity: 0; text-shadow: none; }
  86% { opacity: 0; text-shadow: none; }
  86.1% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.6), 0 0 60px rgba(250, 204, 21, 0.45), 0 0 110px rgba(250, 204, 21, 0.25), 0 0 100px rgba(250, 204, 21, 0.1); }
  100% { opacity: 1; text-shadow: 0 0 30px rgba(250, 204, 21, 0.6), 0 0 60px rgba(250, 204, 21, 0.45), 0 0 110px rgba(250, 204, 21, 0.25), 0 0 100px rgba(250, 204, 21, 0.1); }
}

.pc-animation {
    mix-blend-mode: multiply; /* Isso fará o fundo branco do vídeo desaparecer no seu site claro */
    filter: contrast(110%);   /* Dá um destaque maior no PC */
}