/* ─── ESTILOS EXCLUSIVOS DA HOME (VITRINE) ─────────────────────────── */

.home-body {
  background: #f5f5f7 !important;
  color: #1d1d1f;
  padding-top: 0 !important;
}

/* NAV HOME */
.nav-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 72px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
}

.nav-logo img {
  height: 40px;
  display: block;
  cursor: pointer;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link-dropdown {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  padding: 10px 0;
}

.nav-flags {
  display: flex;
  gap: 10px;
  align-items: center;
}

.flag-round {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.nav-cta {
  background: #0071e3;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #0077ed;
}

/* MENU DROPDOWN INICIO */
.menu-dropdown-container {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 0.5px solid rgba(0, 0, 0, 0.05);
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-dropdown-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.menu-dropdown-content {
  display: flex;
  padding: 32px;
  gap: 60px;
}
.menu-col h4 {
  font-size: 12px;
  color: #86868b;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.menu-col a {
  display: block;
  font-size: 14px;
  color: #1d1d1f;
  text-decoration: none;
  margin-bottom: 12px;
  cursor: pointer;
}
.menu-col a:hover {
  color: #0071e3;
}

/* ESTILOS GERAIS DE MODAL PARA A HOME */
.home-body .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none; /* Escondido por padrão */
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.home-body .modal-overlay.active {
  display: flex; /* Mostra quando ativo */
}

/* MODAL PEOPLE METRICS */
.pm-modal {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  text-align: center;
  animation: fadeUp 0.3s ease-out;
}
.pm-icon-wrap {
  font-size: 32px;
  margin-bottom: 16px;
}
.pm-modal h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.pm-modal p {
  color: #86868b;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.pm-placeholder-img {
  background: #f5f5f7;
  border-radius: 12px;
  margin-bottom: 24px;
  min-height: 150px;
}
.pm-modal-actions {
  display: flex;
  gap: 12px;
}
.btn-modal-sec {
  flex: 1;
  background: none;
  border: none;
  color: #0071e3;
  font-weight: 500;
  cursor: pointer;
}
.pm-modal-actions .nav-cta {
  flex: 1;
  border: none;
}

/* HERO HOME */
.home-body .hero {
  padding: 120px 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.home-body .hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 24px;
}
.home-body .hero h1 span {
  color: #ff7a50;
}
.home-body .hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #86868b;
  max-width: 540px;
  margin: 0 auto;
}

/* APPLE PRODUCT CARD EFFECT */
.product-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  margin-bottom: 40px;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.dq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.dq-info {
  max-width: 420px;
}
.dq-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d1f;
}
.dq-desc {
  font-size: 18px;
  color: #86868b;
  line-height: 1.5;
}

.dq-video-thumb {
  width: 480px;
  height: 270px;
  background: #0a0a1f;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 10px;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.feat-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feat-col h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  margin-top: 0 !important;
  margin-bottom: 0 !important; 
  line-height: 1.2;
}

.feat-sub {
  font-size: 13px;
  color: #86868b;
   margin-top: 0 !important; 
    margin-bottom: 32px !important; 
    line-height: 1.1;
}

.feat-item {
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1f;
  margin-bottom: 16px;
  gap: 16px;
  display: flex;
  align-items: center;
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: #f0f2f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-link {
  display: flex;
  align-items: center;
  color: #0071e3;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
}

.product-link:hover {
  opacity: 0.7;
}

/* DATA QUALITY SECTION */
.home-body .product-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}
.home-body .dq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.home-body .dq-info {
  max-width: 400px;
}
.home-body .dq-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}
.home-body .dq-desc {
  font-size: 20px;
  color: #86868b;
  line-height: 1.5;
}
.home-body .dq-video-thumb {
  width: 480px;
  height: 270px;
  background: #0a0a1f;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* GRID DE FUNCIONALIDADES */
.home-body .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 40px;
}
.home-body .feat-col h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.home-body .feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #1d1d1f;
}
.home-body .feat-icon {
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 6px;
  flex-shrink: 0;
}

/* PEOPLE METRICS */
.home-body .pm-section {
  background: #f5f5f7;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto;
  gap: 100px;
}
.home-body .pm-content {
  max-width: 400px;
}
.home-body .badge-soon {
  background: #e8e8ed;
  color: #86868b;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 10px;
}

/* FMETRIC ID */

.id-card {
    background: #ffffff !important;
    border-radius: 32px !important;
    padding: 60px !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04) !important;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.id-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08) !important;
}

.id-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 40px;
}

.id-card-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.id-card-text p {
    font-size: 20px;
    color: #86868b;
    max-width: 540px;
    line-height: 1.4;
    margin: 0;
}

.id-pills {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.id-pill {
    background: #f0f2f5;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

footer {
    padding: 80px 0 100px 0; /* Espaço generoso acima e abaixo do texto */
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

footer span {
    font-size: 14px;
    color: #86868b;
}

.footer-links a {
    font-size: 14px;
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1d1d1f;
}




