:root {
  --navy: #003688;
  --blue: #003688;
  --blue-light: #eaf1fb;
  --green: #16783b;
  --green-light: #eaf5ee;
  --ink: #10233b;
  --muted: #66758a;
  --line: #e5ebf2;
  --surface: rgba(255, 255, 255, 0.92);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, #edf4ff 0%, #ffffff 48%, #edf8f1 100%);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 30px 16px 46px;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(7px);
  opacity: .7;
  pointer-events: none;
}

.ambientOne {
  width: 330px;
  height: 330px;
  top: -170px;
  right: -100px;
  background: radial-gradient(circle, rgba(0,54,136,.24) 0, rgba(0,54,136,0) 68%);
}

.shell { width: min(100%, 620px); margin: 0 auto; position: relative; z-index: 1; }

.hero { text-align: center; padding: 4px 10px 26px; }

.logoFrame {
  width: 200px;
  height: 132px;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
}

.logo { width: 100%; height: 100%; object-fit: contain; }

h1 { margin: 0; font-size: clamp(25px, 6.8vw, 34px); font-weight: 900; letter-spacing: -.6px; color: var(--navy); }
.subtitle {
  margin: 18px 0 5px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.slogan {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c91f2b, #ef4d3f);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(201, 31, 43, .2);
  transform-origin: center;
  animation: mapBounce 2.6s ease-in-out infinite;
  will-change: transform;
}

.sloganIcon { color: #ffe36e; font-size: 14px; line-height: 1; }

.section { margin-bottom: 24px; }
.sectionHeading { display: flex; align-items: center; gap: 12px; margin: 0 2px 12px; font-size: 13px; font-weight: 800; color: #304862; }
.sectionHeading .line { height: 2px; flex: 1; border-radius: 99px; background: linear-gradient(90deg, rgba(7,85,173,0), var(--blue), var(--green)); opacity: .24; }

.phoneList, .socialList { display: grid; gap: 9px; }
.phoneCard, .socialCard, .infoCard {
  background: var(--surface);
  border: 1px solid rgba(7, 85, 173, .14);
  box-shadow: 0 8px 24px rgba(8, 47, 98, .07);
}

.phoneCard {
  min-height: 81px;
  border-radius: 17px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-right: 3px solid var(--blue);
}

.phoneCard:nth-child(2) { border-right-color: var(--green); }

.phoneLabel { display: block; color: var(--muted); font-size: 10px; margin-bottom: 7px; }
.phoneCard b {
  display: block;
  color: var(--navy);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 1px;
  line-height: 1.4;
  white-space: nowrap;
  unicode-bidi: isolate;
}
.phoneButtons { display: flex; gap: 6px; }
.phoneButtons a { padding: 9px 10px; border-radius: 10px; background: var(--blue-light); color: var(--blue); font-size: 10px; font-weight: 800; }
.phoneButtons .whatsappButton { background: var(--green-light); color: #11743a; }
.phoneButtons .rubikaButton {
  background: linear-gradient(135deg, #f1ecfa 0%, #f9edf3 38%, #fff3e9 70%, #eaf6f1 100%);
  color: #694685;
  border: 1px solid rgba(105, 70, 133, .08);
  box-shadow: none;
}
.socialCard {
  min-height: 69px;
  border-radius: 17px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 11px;
  align-items: center;
  transition: border-color .2s ease, transform .2s ease;
}

.socialCard:hover { transform: translateY(-2px); border-color: #bcd3ec; }
.socialMark { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 13px; text-transform: uppercase; }
.socialMark img { width: 23px; height: 23px; object-fit: contain; }
.socialCard:nth-child(odd) { border-right: 3px solid var(--blue); }
.socialCard:nth-child(even) { border-right: 3px solid var(--green); }
.pink { background: radial-gradient(circle at 31% 108%, #fdf497 0 5%, #fdf497 6%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.sky { background: #26a5e4; font-size: 20px; }
.green { background: #25d366; }
.orange { background: #fff; box-shadow: inset 0 0 0 1px rgba(7,85,173,.16); }
.orange img { width: 31px; height: 34px; }
.socialText strong { display: block; font-size: 13px; margin-bottom: 5px; }
.socialText small { display: block; font-size: 10px; color: var(--muted); direction: rtl; }
.openMark { color: #8190a1; font-size: 17px; }

.infoCard { border-radius: 22px; padding: 18px 16px; border-top: 3px solid var(--green); }
.infoCard > .sectionHeading { font-size: 19px; font-weight: 900; color: var(--navy); }
.infoRow { display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: start; }
.infoIcon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-light); color: var(--blue); font-size: 19px; font-weight: 700; }
.emojiIcon { display: block; font-size: 22px; line-height: 1; }
.mapIcon img { width: 31px; height: 31px; object-fit: contain; animation: mapBounce 2.6s ease-in-out infinite; }
.clockIcon .emojiIcon { animation: clockPulse 2.2s ease-in-out infinite; }
.infoRow strong { font-size: 15px; }
.infoRow p { margin: 7px 0 0; color: #586a7e; line-height: 2; font-size: 13px; }
.infoRow .addressText { color: #304a66; font-weight: 600; }
.mapButtons { margin: 14px 49px 0 0; display: grid; gap: 8px; }
.mapButton { height: 42px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border-radius: 12px; background: linear-gradient(90deg, var(--blue-light), var(--green-light)); color: var(--navy); font-size: 11px; font-weight: 800; }
.mapButtonLabel { display: inline-flex; align-items: center; gap: 8px; }
.mapButtonLabel img { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; flex: 0 0 auto; }
.divider { height: 1px; background: var(--line); margin: 18px 0; }
.hours { width: 100%; }
.hours p { display: flex; justify-content: space-between; gap: 14px; line-height: 1.7; }
.hours p span,
.hours b { color: #263d56; font-size: 14px; font-weight: 500; }
.hours .closed { color: #c04747; }

footer { text-align: center; padding: 10px 20px 2px; color: var(--muted); }
footer img { display: block; width: 120px; height: 74px; margin: 0 auto -9px; object-fit: contain; opacity: .9; }
footer p { color: #3b526c; font-weight: 800; margin: 0 0 7px; font-size: 12px; }
footer small { font-size: 9px; line-height: 1.9; }

@keyframes mapBounce {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-3px); }
  60% { transform: translateY(0); }
}

@keyframes clockPulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.08); }
}

@media (min-width: 560px) {
  main { padding-top: 30px; }
}

@media (max-width: 380px) {
  main { padding-inline: 11px; }
  .phoneCard { align-items: flex-start; flex-direction: column; }
  .phoneButtons { width: 100%; }
  .phoneButtons a { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .mapIcon img, .clockIcon .emojiIcon { animation: none !important; }
  .slogan { animation: none !important; }
}
