:root {
  --bg: #eff7ff;
  --ink: #12202e;
  --sea: #0e7490;
  --deep: #063248;
  --foam: #f4fbff;
  --sun: #ff9f1c;
  --card: rgba(255, 255, 255, 0.86);
  --ring: rgba(14, 116, 144, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 82% 10%, #d0f0ff 0%, transparent 35%),
    radial-gradient(circle at 10% 80%, #b6ebff 0%, transparent 40%),
    linear-gradient(140deg, #f7fcff 0%, #e6f6ff 45%, #edf8ff 100%);
  color: var(--ink);
}

body {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.2rem;
  backdrop-filter: blur(8px);
  background: rgba(247, 252, 255, 0.86);
  border-bottom: 1px solid rgba(6, 50, 72, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.35rem 0.6rem;
  box-shadow: 0 2px 8px rgba(6, 50, 72, 0.1);
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  gap: 1.1rem;
}

.menu a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
}

.header-icons {
  display: flex;
  gap: 0.5rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(6, 50, 72, 0.18);
  transition: transform 0.15s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-btn.whatsapp {
  background: #25d366;
}

.icon-btn.instagram {
  background: radial-gradient(circle at 30% 110%, #ffdb61 0%, #ff5176 45%, #b900b4 75%, #4a00e0 100%);
}

.icon-btn.facebook {
  background: #1877f2;
}

.fab-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  vertical-align: -3px;
  margin-right: 0.35rem;
}

main {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.fish-deco {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1.6rem;
  opacity: 0.65;
  pointer-events: none;
  margin-bottom: 0.4rem;
}

.fish-deco span:nth-child(even) {
  transform: scaleX(-1);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--sea);
  font-weight: 700;
}

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  line-height: 1.08;
  margin: 0.6rem 0;
  color: #07283a;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.hero p {
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-media {
  margin: 0;
  background: linear-gradient(145deg, #ffffffcc, #d4effcdd);
  border-radius: 30px;
  border: 1px solid rgba(6, 50, 72, 0.08);
  padding: 1.6rem;
  box-shadow: 0 30px 70px rgba(5, 52, 78, 0.14);
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.cta,
.ghost {
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
}

.cta {
  color: #00131f;
  background: linear-gradient(120deg, #ffd166, #ff9f1c);
  box-shadow: 0 10px 24px rgba(255, 159, 28, 0.34);
}

.cta.small {
  padding: 0.65rem 0.9rem;
  font-size: 0.86rem;
}

.ghost {
  color: var(--deep);
  border-color: rgba(6, 50, 72, 0.3);
  background: #ffffff99;
}

.feature-list {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1rem;
  line-height: 1.65;
}

.visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 240px;
  font-size: 3.4rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(6, 50, 72, 0.14);
}

.split {
  margin: 2.2rem 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr 0.8fr;
  background: linear-gradient(155deg, #ebf8ff 0%, #d3f0ff 100%);
  border-radius: 26px;
  border: 1px solid rgba(6, 50, 72, 0.12);
  padding: 1.2rem;
}

.split img {
  width: 100%;
  height: 240px;
  object-fit: contain;
}

.logo-blend {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 10px 26px rgba(6, 50, 72, 0.14);
}

.contact {
  margin: 2rem 0 3rem;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 50, 72, 0.12);
  background: #ffffffc2;
}

.socials {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
}

.socials .icon-btn {
  width: 42px;
  height: 42px;
}

.socials .icon-btn svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  border-top: 1px solid rgba(6, 50, 72, 0.1);
  padding: 1rem;
  text-align: center;
  color: #2a5068;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.2rem;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .visual-box {
    height: 160px;
    font-size: 2.4rem;
  }

  .hero-media img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(1.8rem, 11vw, 2.4rem);
  }

  .site-header {
    padding: 0.7rem;
  }

  main {
    width: min(1160px, 95vw);
  }
}
