html,body{
  margin:0;
  padding:0;
  height:100%;
  background:#fff;
  font-family:system-ui;
  color:#111;
}

/* SPLASH */
#splash{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity 1.2s ease;
  z-index:9999;
}
#logo{
  width:130px;
  opacity:0;
  transform:scale(.94);
  transition:opacity 2.2s ease, transform 2.2s ease;
}
#logo.logo-in{
  opacity:1;
  transform:scale(1);
}
#splash.fade{opacity:0}

/* PAGE */
#page{opacity:0;transition:opacity .6s ease;min-height:100vh}
#page.show{opacity:1}
.hidden{opacity:0}

/* HEADER */
.header{
  position:sticky;
  top:0;
  background:#fff;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* TITULO GRANDE */
.header-title{
  font-size:40px;
  font: weight 800px;
  letter-spacing: 0.2px;
  margin:-0.5;
}

/* HAMBURGER */
.hamburger{
  position:absolute;
  right:18px;
  width:28px;
  height:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}
.hamburger span{
  height:2px;
  background:#111;
  border-radius:2px;
}

/* DIVIDER */
.top-divider{
  height:1px;
  background:#e9e9e9;
}

/* CONTENT */
.content{padding:24px}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.15);
  opacity:0;
  pointer-events:none;
  transition:.25s;
}
.overlay.show{
  opacity:1;
  pointer-events:auto;
}

/* DRAWER */
.drawer{
  position:fixed;
  top:0;
  right:-260px;
  width:260px;
  height:100%;
  background:#fff;
  box-shadow:-8px 0 30px rgba(0,0,0,.12);
  transition:.3s;
  padding:22px;
}
.drawer.open{right:0}

.drawer-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:16px;
}

.lang-btn{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  border-radius:8px;
}
.lang-btn:hover{background:#f5f5f5}

/* ===== Floating language menu ===== */

.lang-popup{
  position: absolute;
  top: 78px;
  right: 18px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: all .18s ease;
}

.lang-popup.open{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px) scale(1);
}

.lang-card{
  background: #f6f6f6;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  width: 220px;
}

.lang-buttons{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.lang-btn{
  flex:1;
  padding:12px 0;
  border-radius:14px;
  border:2px solid transparent;
  background:#ececec;
  font-weight:700;
  cursor:pointer;
  transition:.15s;
}

.lang-btn.active{
  background:#ffffff;
  border:2px solid #000;
}

/* DOWNLOAD ICONS */

.download-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.store-btn {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s ease;
}

.store-btn img {
  width: 70px;
  height: 70px;
  padding: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: white;
  transition: .25s ease;
}

.store-btn:hover img {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* CONTACT EMAIL STYLE */

.contact-email {
  color: black;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}

.contact-email:hover {
  text-decoration: underline;
}

