:root {
  --bg: #eef3fb;
  --surface: #ffffff;
  --ink: #0d244f;
  --muted: #5f7393;
  --line: #dbe5f4;
  --blue-900: #08295f;
  --blue-800: #0d377e;
  --blue-700: #12469e;
  --blue-500: #1e63d5;
  --red-600: #da1024;
  --yellow-500: #ffcb28;
  --green-600: #15b159;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-sm: 0 12px 26px rgba(8, 35, 80, 0.08);
  --shadow-lg: 0 24px 54px rgba(6, 28, 69, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 320px at -10% -10%, #dbe9ff 0%, transparent 62%),
    radial-gradient(800px 280px at 110% -14%, #ffeaca 0%, transparent 64%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 56%, #f4f8ff 100%);
}

.top-wrap {
  position: sticky;
  top: 8px;
  z-index: 120;
  margin-top: 0.8rem;
}

.top-meta,
.nav-shell {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.top-meta {
  min-height: 44px;
  padding: 0.35rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-inline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-inline a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #dbe8fa;
  background: #fff;
  color: #23457c;
  transition: transform 0.2s ease;
}

.social-inline a:hover {
  transform: translateY(-2px);
}

.top-meta-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.meta-action {
  min-height: 34px;
  border-radius: 10px;
  padding: 0.3rem 0.66rem;
  border: 1px solid #d7e3f7;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1c3f78;
}

.phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Sora", sans-serif;
  color: #112e63;
}

.phone-inline i {
  font-size: 1rem;
}

.phone-inline small {
  display: block;
  font-size: 0.56rem;
  color: #60739b;
  line-height: 1.1;
}

.phone-inline strong {
  display: block;
  line-height: 1;
  font-size: 1.06rem;
}

.nav-shell {
  margin-top: 0.62rem;
  min-height: 78px;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 258px;
}

.brand-logo {
  width: 70px;
  min-height: 54px;
  border-radius: 12px;
  background: linear-gradient(160deg, #ffe155, #ffc928);
  color: #121212;
  box-shadow: 0 10px 20px rgba(255, 201, 40, 0.35);
  display: grid;
  place-items: center;
  line-height: 1;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  padding: 0.32rem 0.25rem;
}

.brand-top {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.brand-bottom {
  display: block;
  font-size: 0.95rem;
}

.brand-text strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.12;
}

.brand-text small {
  display: block;
  color: #506485;
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #173b72;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.18rem;
}

.nav-menu a {
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #18396f;
  position: relative;
  padding: 0.1rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb528, #ff8e18);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.6rem;
  min-height: 42px;
  border-radius: 10px;
  padding: 0.64rem 1.08rem;
  background: linear-gradient(120deg, #ff9c16, #ff7f10);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 139, 19, 0.3);
}

.main-content {
  margin-top: 0.95rem;
}

.hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #d4e1f7;
  box-shadow: var(--shadow-lg);
  background: #0a2d66;
  position: relative;
}

.hero-slide {
  display: none;
  min-height: 470px;
  position: relative;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(98deg, rgba(6, 27, 70, 0.92) 0%, rgba(8, 36, 90, 0.62) 46%, rgba(8, 39, 95, 0.22) 100%);
  z-index: 1;
}

.hero-layer {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 3.15rem clamp(1rem, 4vw, 2.4rem);
  color: #fff;
}

.hero-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  background: rgba(255, 203, 40, 0.16);
  border: 1px solid rgba(255, 203, 40, 0.44);
  color: #ffe394;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-layer h1 {
  margin: 0.62rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.66rem, 3vw, 3.02rem);
  line-height: 1.05;
}

.hero-layer p {
  margin: 0.62rem 0 0;
  color: #dde8ff;
  max-width: 52ch;
}

.hero-badges {
  margin-top: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  min-height: 36px;
  padding: 0.36rem 0.68rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8f0ff;
}

.hero-badges i {
  color: #ffd47b;
}

.btn-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.btn-main,
.btn-ghost,
.btn-outline {
  min-height: 45px;
  border-radius: 11px;
  padding: 0.62rem 1.02rem;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.btn-main {
  background: linear-gradient(120deg, #ff9e19, #ff8312);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-outline {
  border: 1px solid #c8d8f2;
  color: #1c4079;
  background: #fff;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 3;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
}

.hero-dots button.active {
  width: 34px;
  border-radius: 999px;
  background: #ff9a18;
}

.quick-actions {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.quick-box {
  border-radius: 14px;
  min-height: 76px;
  padding: 0.72rem 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  box-shadow: var(--shadow-sm);
}

.quick-box i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}

.quick-box strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  line-height: 1.1;
}

.quick-box small {
  display: block;
  font-size: 0.76rem;
  opacity: 0.92;
}

.quick-box-red { background: linear-gradient(120deg, #df1e33, #c80f2a); }
.quick-box-navy { background: linear-gradient(120deg, #263f76, #182e60); }
.quick-box-blue { background: linear-gradient(120deg, #0f5ec8, #0f4fab); }

.section-card {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.66rem);
}

.section-head p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.section-head.compact {
  margin-bottom: 0.6rem;
}

.program-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.pill {
  border: 1px solid #d4e2f8;
  border-radius: 999px;
  min-height: 38px;
  padding: 0.5rem 0.86rem;
  background: #fff;
  color: #1c3f74;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.pill.active {
  color: #fff;
  border-color: #e61d30;
  background: linear-gradient(120deg, #e61d30, #cb0f24);
}

.snap-head {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.snap-nav {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #ceddf6;
  background: #fff;
  color: #21457f;
}

.program-track,
.event-track,
.campus-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 310px);
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scrollbar-width: thin;
}

.program-track::-webkit-scrollbar,
.event-track::-webkit-scrollbar,
.campus-track::-webkit-scrollbar {
  height: 8px;
}

.program-track::-webkit-scrollbar-thumb,
.event-track::-webkit-scrollbar-thumb,
.campus-track::-webkit-scrollbar-thumb {
  background: #c5d5f2;
  border-radius: 999px;
}

.program-card,
.event-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d6e3f7;
  background: #fff;
  position: relative;
}

.program-card {
  min-height: 340px;
}

.program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 62, 0.12) 0%, rgba(5, 18, 44, 0.86) 100%);
}

.program-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 0.85rem;
}

.mini-tag {
  display: inline-flex;
  border-radius: 999px;
  background: #f40f28;
  color: #fff;
  padding: 0.24rem 0.56rem;
  font-size: 0.7rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.program-content h3 {
  margin: 0.52rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.program-content .meta {
  color: #d5e4ff;
  font-size: 0.82rem;
}

.partners-wrap {
  background: linear-gradient(145deg, #f8fbff, #eff5ff);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.partner-chip {
  border-radius: 12px;
  border: 1px solid #d3e0f6;
  min-height: 52px;
  background: #fff;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2a4f86;
}

.campus-photo {
  width: 220px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
}

.campus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotline-banner {
  margin-top: 0.82rem;
  border-radius: 14px;
  min-height: 78px;
  padding: 0.75rem 0.94rem;
  background: linear-gradient(120deg, #e21227, #ce1028);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.hotline-banner i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.14rem;
}

.hotline-banner small {
  display: block;
  font-size: 0.76rem;
}

.hotline-banner strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.54rem;
  line-height: 1;
  margin-top: 0.12rem;
}

.address-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1fr;
  gap: 0.78rem;
  background: linear-gradient(155deg, #646084, #596c8f);
  color: #fff;
}

.address-box {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.82rem;
}

.address-box h3 {
  margin: 0 0 0.36rem;
  font-family: "Sora", sans-serif;
}

.address-box p {
  margin: 0;
  color: #edf2ff;
}

.address-box .full {
  width: 100%;
  margin-top: 0.72rem;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
}

.mini-points div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.08);
  padding: 0.56rem;
  display: flex;
  align-items: center;
  gap: 0.44rem;
  font-size: 0.86rem;
}

.actions {
  display: grid;
  gap: 0.62rem;
}

.btn-wa,
.btn-test {
  border-radius: 12px;
  min-height: 46px;
  padding: 0.62rem 0.88rem;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-wa {
  background: linear-gradient(120deg, #25cc63, #13aa4d);
  color: #fff;
}

.btn-test {
  background: linear-gradient(120deg, #ff2a2a, #df1324);
  color: #fff;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 0.8rem;
}

.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  border-radius: 14px;
  border: 1px solid #dfe8f8;
  background: #fff;
  padding: 0.84rem;
}

.testimonial-card p {
  margin-top: 0.42rem;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d8e4f7;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11, 39, 84, 0.08);
}

.media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.media-card .pad {
  padding: 0.8rem;
}

.media-card h3,
.media-card h4 {
  margin: 0 0 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.meta {
  color: #5f7396;
  font-size: 0.85rem;
}

.stars {
  color: #f4a21d;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
}

.event-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.event-content {
  padding: 0.74rem;
}

.event-content h3 {
  margin: 0.2rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.event-content p {
  margin: 0.4rem 0 0;
  color: #576d93;
  font-size: 0.9rem;
}

.page-hero {
  margin-top: 0.95rem;
  border-radius: var(--radius-lg);
  border: 1px solid #d3e2fb;
  background: linear-gradient(125deg, #0b316f, #0a2456);
  color: #fff;
  box-shadow: var(--shadow-lg);
  padding: 1.3rem;
}

.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.42rem, 2.6vw, 2.24rem);
}

.page-hero p {
  margin: 0.45rem 0 0;
  color: #d9e6ff;
}

.home-cta {
  margin-bottom: 0.4rem;
}

.form-grid {
  display: grid;
  gap: 0.68rem;
}

.form-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.input,
.textarea,
.select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7e3f7;
  border-radius: 10px;
  padding: 0.62rem 0.74rem;
  font: inherit;
  color: #153765;
  background: #fff;
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  border: 0;
  border-radius: 11px;
  min-height: 46px;
  padding: 0.62rem 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #ff9f12, #ff7f0f);
}

.alert {
  border-radius: 12px;
  padding: 0.75rem 0.84rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.alert.success {
  background: #eafaf1;
  border: 1px solid #b4e8c8;
  color: #19663a;
}

.alert.error {
  background: #fff2f2;
  border: 1px solid #ffcbcb;
  color: #7e2323;
}

.site-footer {
  margin-top: 1.2rem;
  background: linear-gradient(162deg, #061b44, #04122f);
  color: #d2e1fb;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding-top: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
  padding-bottom: 0.8rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-family: "Sora", sans-serif;
}

.site-footer p {
  margin: 0;
  color: #c1d3f5;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
  font-size: 0.9rem;
}

.footer-social {
  margin-top: 0.66rem;
  display: flex;
  gap: 0.48rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom {
  min-height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-bottom: 0.75rem;
  font-size: 0.82rem;
  color: #a7bbdf;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #24cc62, #13a94d);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  box-shadow: 0 15px 30px rgba(9, 155, 64, 0.4);
  z-index: 140;
}

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .address-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .top-meta {
    min-height: 40px;
  }

  .meta-action {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
    position: relative;
  }

  .mobile-menu-btn {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    right: 12px;
    top: calc(100% + 8px);
    width: min(86vw, 330px);
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-slide {
    min-height: 410px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .program-track,
  .event-track {
    grid-auto-columns: minmax(240px, 78vw);
  }

  .campus-track {
    grid-auto-columns: minmax(190px, 56vw);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 0.95rem));
  }

  .top-wrap {
    top: 4px;
    margin-top: 0.45rem;
  }

  .phone-inline small {
    display: none;
  }

  .brand {
    min-width: 210px;
  }

  .brand-logo {
    width: 60px;
    min-height: 48px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero-slide {
    min-height: 338px;
  }

  .hero-layer {
    padding: 1.25rem 0.86rem 2.6rem;
  }

  .hero-badges {
    display: none;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid.cols-2,
  .partner-strip,
  .mini-points {
    grid-template-columns: 1fr;
  }

  .hotline-banner strong {
    font-size: 1.22rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 10px;
    bottom: 10px;
  }
}
