/* ==================== CSS VARIABLES (Redundante, mas útil para manutenção) ==================== */
:root {
  --header-height: 80px;
  --container-max-width: 1200px;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --font-headline: "Sora", sans-serif;
  --font-body: "Poppins", sans-serif;
  --headline-size: 62px;
  --description-size: 18px;
  --primary-gradient-left: #00aaff;
  --primary-gradient-right: #ffffff;
  --transition-speed: 0.2s;

  --primary: #00aaff;
  --primary-dark: #0091da;
  --msg-form: #4fbbf1;
  --box-line: #bde9ff;
  --bg-blue-light: #def4ff;
  --bg-quiz-light: #ebf8ff;

  --secondary: #8b2be2;
  --black-primary: #1a1a1a;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --bg-light: #f8f9fa;
  --border: #e0e0e0;
  --error: #ff4444;
  --success: #00c851;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
/* ==================== NON-CRITICAL STYLES: HEADER ==================== */

.inative {
  color: rgb(82, 82, 82);
}
.container-1200 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
/* Logo Hover (Não Crítico) */
.logo {
  transition: transform var(--transition-speed);
}
.logo:hover {
  transform: scale(1.05);
}
.logo-image {
  fill: var(--text-primary);
}
.logo-mix {
  fill: var(--primary-gradient-left);
}
.logo-slogan {
  padding: 0;
  margin: 0;
  font-size: 14px;
  margin-top: -6px;
}
/* Navigation (Estilos de nav bar completos) */
.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-item {
  font-family: var(--font-body);
  font-size: var(--nav-size);
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-speed);
  font-weight: 500;
  border-radius: 5px;
  padding: 1px 8px;
  transition: background var(--transition-speed);
}

.nav-item:hover {
  color: var(--primary-gradient-left);
  border-radius: 5px;
  padding: 1px 8px;
}
.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}
.nav-item.active {
  color: var(--primary-gradient-left);
}

.flag-circle-small {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none; /* Escondido por padrão, mostrado apenas em mobile media query */
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-speed);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -2px);
}

/* Mobile Language Selector (Visível apenas quando o JS ativar o menu) */
.mobile-lang-selector {
  display: none;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e8e8e8;
}
.mobile-lang-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.mobile-lang-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f8f8;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-speed);
}
.mobile-lang-option:hover {
  background: #f0f0f0;
}
.flag-circle-mobile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}

/* ==================== NON-CRITICAL STYLES: HERO ==================== */

.hero-label {
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 30px;
  color: var(--primary);
  border: solid 1px var(--primary);
}

/* CTA Button Hover */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 158, 250, 0.3);
}
.cta-button:active {
  transform: translateY(0);
}

/* Hero Visual Animation/Hover */
.hero-visual-reel {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-visual-reel:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 76, 250, 0.4);
}
.hero-visual-reel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 76, 250, 0.3),
    rgba(0, 76, 250, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-visual-reel:hover::after {
  opacity: 1;
}
.play-button {
  transition: all 0.3s ease;
}
.play-button:hover {
  background: white;
  transform: scale(1.1);
}
/* ==================== NON-CRITICAL BENEFITS ==================== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--black-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.benefit-card {
  padding: 40px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.benefit-card:hover {
  background: #d9f4ff;
  border-color: #d4d4d4;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black-primary);
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}

.use-cases {
  margin-top: 80px;
}

.use-cases h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--black-primary);
  margin-bottom: 40px;
  text-align: center;
}

.use-cases-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.use-case-item {
  border: 2px solid #ffffff;
  padding: 32px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.use-case-item:hover {
  border: 2px solid var(--primary-gradient-left);
}
.use-case-item:hover .use-case-number {
  background: var(--primary-gradient-left); /* ou qualquer cor que desejar */
  color: #fff; /* exemplo adicional para melhor contraste */
}

.use-case-number {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #999999;
  margin-bottom: 12px;
  letter-spacing: 2px;
  background: rgb(241, 241, 241);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.use-case-item h4 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black-primary);
  margin-bottom: 12px;
}

.use-case-item p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.stats-section {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  padding: 60px 40px;
  margin-top: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h4 {
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--black-primary);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: #666666;
  font-weight: 500;
}
.container-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 36px;
  }

  .benefits-grid,
  .use-cases-list {
    grid-template-columns: 1fr;
  }

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

/* ==================== NON-CRITICAL RESPONSIVE ==================== */

@media (max-width: 1024px) {
  :root {
    --headline-size: 48px;
    --description-size: 16px;
  }
  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Menu Mobile */
  .mobile-menu-toggle {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--black-primary);

    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 10px;

    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: solid 1px var(--primary);
  }
  .nav-item {
    color: white;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu .nav-item {
    padding: 18px;
  }
  .nav-item.active {
    background: var(--primary);
    color: var(--black-primary);
    padding-left: 20px;
  }
  .nav-item::after {
    display: none;
  }
  /* Otimizações de tamanho (mantidas no CSS externo para carregar rapidamente o mobile view) */
  .play-button {
    width: 50px;
    height: 50px;
  }
}

/* About ------------------------------------- */

.about-section {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 120px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CSS Comum para todas as telas */
.about-image {
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-color: var(--bg-quiz-light);
  background-repeat: no-repeat;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-content p {
  margin-bottom: 24px;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

.experience-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* Responsividade para tablets */
@media (max-width: 968px) {
  .about-container {
    gap: 40px;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-image {
    min-height: 350px;
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image {
    width: 100%;
    height: 216px;
    order: 1;
  }

  .about-content {
    order: 2;
  }

  .about-content h1 {
    font-size: 2rem;
    text-align: center;
  }
}

/* Responsividade para mobile pequeno */
@media (max-width: 480px) {
  .about-content {
    text-align: center;
  }
  .about-content h1 {
    font-size: 1.75rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-image {
    min-height: 250px;
  }
}

/* Services ------------------------------------- */
.box-label {
  text-align: center;
  color: var(--primary);
  border: solid 1px var(--primary);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 500;
}
.check {
  width: 15px;
  height: 15px;
  padding: 2px;
}
.check img {
  padding: 5px;
}
.services-container {
  background: var(--bg-blue-light);
}
.services-container h2 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
}
.services-container .service-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.intro-section {
  margin-bottom: 60px;
  text-align: center;
}

.intro-section p {
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
}

.service-category {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  border-radius: 24px;
  padding: 40px 30px;
  gap: 20px;
  border: solid 1px var(--box-line);
}
.motion {
  background: var(--black-primary);
}
.motion .box-title {
  color: white;
}
.motion ul li {
  color: white;
}

.service-category ul {
  max-width: 350px;
}

.service-category h3 {
  font-family: var(--font-headline);
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-category .subtitle {
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 500;
  padding: 0 40px;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 500;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-primary);
}

.checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.divider {
  height: 1px;
  background-color: var(--border);
  margin: 40px 0;
  width: 100%;
}

/* Responsividade para tablets e desktop */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-section h1 {
    font-size: 3rem;
  }

  .service-category {
    padding: 40px;
  }
}

/* Responsividade para desktop grande */
@media (min-width: 1200px) {
  .services-container {
    padding: 80px 20px;
  }
}
@media (max-width: 768px) {
  .container-1200 {
    padding: 40px 20px;
  }
  .service-category {
    padding: 40px 0;
  }
  .service-category ul {
    max-width: 100%;
  }
}
/* Simulator ----------------------------------- */

.simulator-section {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 120px 0;
}
.intro-simulator {
  padding: 30px 0;
}
.intro-simulator h2 {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
}
.intro-simulator p {
  text-align: center;
  margin-bottom: 24px;
}

.content-simulator {
  background: var(--black-primary);
  border: 1px solid var(--black-primary);
  border-radius: 24px;
  padding: 50px;
  color: #ccc;
}
/* Layout principal */
.simulator-body {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}
.col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.col-right {
  flex: 0 0 320px;
}

/* Card de preço */
.result-card {
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
}
.item.title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
.item.coins {
  color: #888;
  margin-bottom: 15px;
}
.item.cost {
  font-size: 2.5rem;
  color: var(--primary);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

/* Títulos */
h3 {
  font-family: "Sora", sans-serif;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Qualidade */
.quality-steps {
  display: flex;
  gap: 10px;
  margin: 25px 0 15px;
}
.quality-step-btn {
  flex: 1;
  height: 10px;
  background: #313131;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.quality-step-btn.active-btn {
  background: var(--primary);
}

.quality-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #686868;
}

/* Slider */
.intro-cases h2 {
  color: white;
  text-align: center;
  font-family: var(--font-headline);
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
.intro-cases p {
  color: white;
  text-align: center;
  margin-bottom: 24px;
}

.slider-wrapper {
  position: relative;
  height: 60px;
  margin: 30px 0;
  margin-bottom: 0;
}

.range-blue {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: transparent;
  outline: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}

/* Bolinha */
.range-blue::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 38px;
  height: 38px;
  background: var(--primary);
  border: 5px solid var(--black-primary);
  border-radius: 50%;
  cursor: grab;
}
.range-blue::-moz-range-thumb {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border: 5px solid var(--black-primary);
  border-radius: 50%;
  cursor: grab;
  border: none;
}
.range-blue:active::-webkit-slider-thumb,
.range-blue:active::-moz-range-thumb {
  cursor: grabbing;
  transform: scale(1.15);
}

/* Trilho cinza */
.slider-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 10px;
  background: #313131;
  border-radius: 5px;
  transform: translateY(-50%);
}

/* Preenchimento azul */
.slider-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 10px;
  width: 25%;
  background: var(--primary);
  border-radius: 5px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Footer */
.simulator-footer {
  padding-top: 30px;
  display: flex;
  gap: 30px;
  border-top: 1px solid #222;
}
.description-footer {
  flex: 60;
  color: #ddd;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.btn {
  background: white;
  color: var(--black-primary);
  border: none;
  padding: 12px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

/* RESPONSIVO - MOBILE */
@media (max-width: 900px) {
  .simulator-body {
    flex-direction: column;
    gap: 50px;
  }
  .col-right {
    /*order: -1;  preço vai para cima */
    flex: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .content-simulator {
    padding: 40px 25px;
  }
  .simulator-footer {
    text-align: center;
  }
  .description-footer {
    margin-bottom: 30px;
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 500px) {
  .simulator-footer {
    flex-direction: column;
  }
  .content-simulator {
    padding: 30px 20px;
    border-radius: 18px;
  }
  h3 {
    font-size: 1.4rem;
  }
  .item.cost {
    font-size: 2.4rem;
  }
  .simulator-section {
    padding: 0px 0;
  }
  .result-card {
    padding: 0px 30px;
  }
}

/* Footer ------------------------------------- */

footer {
  background-color: var(--black-primary);
  color: white;
  padding: 60px 20px 30px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.social-icons {
  display: flex;
  gap: 15px;
  padding-top: 20px;
}
.icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: solid 1px rgb(155, 155, 155);
  border-radius: 10px;
}

.icons:hover a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: solid 1px var(--primary);
  border-radius: 10px;
  background: rgb(0, 140, 255, 0.2);
}

.logo span {
  color: var(--primary);
}

.brand-description {
  padding-top: 20px;
  color: #cccccc;
  margin-bottom: 24px;
  max-width: 400px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  color: #cccccc;
  font-size: 1rem;
}

.contact-item i {
  margin-right: 10px;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.links-column h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 8px;
}

.links-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.links-column ul {
  list-style: none;
}

.links-column li {
  margin-bottom: 12px;
}

.links-column a {
  color: #cccccc;
  text-decoration: none;
  transition: color var(--transition-speed);
  font-size: 1rem;
}

.links-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}

/* Responsividade para tablets */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 3fr;
    gap: 60px;
  }
}

/* 🔥 ESTILOS PARA COMPARTILHAMENTO NO FOOTER */
.footer-share-section {
  color: white;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #333;
}

.share-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.share-container h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.share-container p {
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Botão de compartilhamento nativo */
.share-native-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.share-native-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Fallback para desktop */
.share-fallback {
  display: none;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.share-option {
  background: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.9rem;
}

.share-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-option[data-network="whatsapp"]:hover {
  background: #25d366;
  color: white;
}

.share-option[data-network="linkedin"]:hover {
  background: #0077b5;
  color: white;
}

.share-option[data-network="twitter"]:hover {
  background: #1da1f2;
  color: white;
}

.share-option[data-network="copy"]:hover {
  background: #6c757d;
  color: white;
}

/* Mensagem de confirmação */
.share-confirmation {
  display: none;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Mostrar fallback apenas quando necessário */
.show-fallback .share-fallback {
  display: flex;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-share-section {
    padding: 30px 0;
  }

  .share-container h4 {
    font-size: 1.3rem;
  }

  .share-native-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .share-fallback {
    flex-direction: column;
    align-items: center;
  }

  .share-option {
    width: 200px;
    justify-content: center;
  }
  .simulator-body {
    margin-bottom: 0px;
  }
}

/* 🔥 ESTILOS PARA OS LINKS DE CONTATO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-weight: 500;
}

.contact-item:hover {
  transform: translateY(-2px);
}

/* Estilos específicos para WhatsApp */
.whatsapp-link:hover {
  color: #25d366;
}

/* Estilos específicos para Email */
.email-link:hover {
  color: #4285f4;
}

/* Ícones */
.contact-item svg {
  flex-shrink: 0;
}

/* Versão Mobile */
@media (max-width: 768px) {
  .contact-info {
    gap: 8px;
  }

  .contact-item {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
