@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand: #0092f3;
  --brand-foreground: #ffffff;
  --brand-strong: #1267b6;
  --brand-deep: #073e6e;
  --brand-soft: #edf8ff;
  --brand-surface: #f7fcff;
  --brand-border: #d2ecfb;
  --brand-glow: #5fd4ff;
  --background: #f7fbfe;
  --foreground: #203040;
  --muted-foreground: #5f7183;
  --card: #ffffff;
  --card-soft: #f5fbff;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --whatsapp-soft: #eefcf4;
  --instagram: #e84f93;
  --instagram-soft: #fff0f7;
  --shadow-card: 0 24px 60px -40px rgba(0, 146, 243, 0.45);
  --shadow-card-lg: 0 28px 70px -45px rgba(0, 146, 243, 0.28);
  --shadow-footer: 0 28px 90px -50px rgba(8, 48, 95, 0.7);
  --shadow-header: 0 12px 32px -24px rgba(0, 146, 243, 0.55);
  --shadow-highlight: 0 18px 45px -32px rgba(0, 146, 243, 0.55);
  --shadow-media: 0 26px 80px -50px rgba(8, 47, 73, 0.35);
  --shadow-panel: 0 34px 90px -48px rgba(8, 47, 73, 0.78);
  --shadow-overlay: 0 36px 120px -50px rgba(0, 0, 0, 0.55);
  --radius-lg: 32px;
  --radius-md: 28px;
  --radius-sm: 20px;
  --container: 1200px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 120;
  border-radius: 999px;
  background: var(--foreground);
  color: #fff;
  padding: 10px 16px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main-content {
  flex: 1;
  outline: none;
}

.section {
  padding: 64px 0;
}

.section--background {
  background: var(--background);
}

.section--muted {
  background: var(--brand-soft);
}

.section--page {
  background: linear-gradient(180deg, var(--brand-soft) 0%, #ffffff 40%, var(--brand-surface) 100%);
}

.section-header {
  margin-bottom: 40px;
}

.section-header h1,
.section-header h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-header p {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.8;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-inline: auto;
}

.section-header--split {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.section-divider {
  height: 1px;
  margin-bottom: 56px;
  background: linear-gradient(90deg, transparent, rgba(0, 146, 243, 0.35), transparent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button .icon,
.icon-button .icon,
.floating-buttons a .icon,
.contact-item__icon .icon,
.benefit-card__icon .icon,
.mission-card__icon .icon,
.footer-contact .icon,
.footer-links .icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.button--small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button--large {
  min-height: 48px;
}

.button--full {
  width: 100%;
}

.button--rounded {
  border-radius: 999px;
}

.button--primary {
  background: var(--brand);
  color: var(--brand-foreground);
}

.button--primary:hover {
  background: #0085dd;
}

.button--light {
  background: #fff;
  color: var(--brand-strong);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.button--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.button--whatsapp:hover {
  background: var(--whatsapp-hover);
}

.button--outline {
  border: 1px solid var(--brand-border);
  background: #fff;
  color: var(--foreground);
}

.button--outline:hover {
  background: rgba(237, 248, 255, 0.7);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 20px -18px rgba(0, 0, 0, 0.9);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.icon-button:hover {
  transform: translateY(-1px);
  background: rgba(237, 248, 255, 0.7);
}

.icon-button .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--brand-border);
  background: rgba(247, 251, 254, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link__image {
  width: auto;
  height: 48px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px;
}

.site-nav__link {
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(32, 48, 64, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background-color var(--transition),
    color var(--transition);
}

.site-nav__link:hover {
  background: rgba(237, 248, 255, 0.7);
}

.site-nav__link.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px -18px rgba(0, 146, 243, 0.95);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__whatsapp {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--foreground);
}

.menu-toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.menu-toggle__close {
  display: none;
}

.site-header.is-open .menu-toggle__open {
  display: none;
}

.site-header.is-open .menu-toggle__close {
  display: inline-flex;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--brand-border);
  background: var(--background);
  padding: 0 0 20px;
}

.site-header.is-open .mobile-nav {
  display: block;
}

.mobile-nav__links {
  padding: 12px 16px 0;
}

.mobile-nav__links .site-nav__link {
  display: block;
  margin-top: 10px;
  border-radius: 20px;
  padding: 14px 20px;
  background: transparent;
}

.mobile-nav__cta {
  padding: 12px 24px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
}

.hero__image,
.hero__graphic,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image img,
.hero__graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(0, 146, 243, 0.78), rgba(0, 146, 243, 0.58), rgba(6, 24, 44, 0.3));
}

.hero__graphic img {
  opacity: 0.1;
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.hero__panel {
  width: 100%;
  max-width: 864px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: 28px;
  box-shadow: var(--shadow-overlay);
  backdrop-filter: blur(24px);
}

.hero__panel h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero__panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 36px;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-strong) 55%, var(--brand-glow) 100%);
  color: #fff;
  padding: 32px;
  box-shadow: var(--shadow-panel);
}

.page-hero-card::before,
.page-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
}

.page-hero-card::before {
  width: 192px;
  height: 192px;
  right: -40px;
  top: 0;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero-card::after {
  width: 160px;
  height: 160px;
  left: 0;
  top: 96px;
  background: rgba(95, 212, 255, 0.18);
}

.page-hero-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-hero-card h1 {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(2rem, 6vw, 3.15rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero-card p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
}

.page-copy {
  max-width: 760px;
}

.page-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page-copy p {
  margin: 0 0 18px;
  color: rgba(32, 48, 64, 0.82);
  line-height: 1.8;
}

.category-carousel__panel {
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(0, 146, 243, 0.12), rgba(0, 146, 243, 0.04));
  padding: 16px;
  box-shadow: var(--shadow-card-lg);
}

.category-carousel__viewport {
  overflow: hidden;
}

.category-carousel__track {
  display: flex;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-carousel__item {
  min-width: 100%;
}

.category-slide {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
}

.category-slide__image,
.category-slide__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-slide__image {
  transform: scale(1);
  transition: transform 800ms ease;
}

.category-slide.is-active .category-slide__image {
  transform: scale(1.08);
}

.category-slide__glow {
  transform: scale(1.12);
  opacity: 0.28;
  filter: blur(24px);
}

.category-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 52, 98, 0.56), rgba(0, 146, 243, 0.2), rgba(8, 52, 98, 0.18));
}

.category-slide__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: 24px;
}

.category-slide__glass {
  max-width: min(94%, 540px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.16));
  padding: 24px;
  color: #fff;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-highlight);
}

.category-slide__eyebrow {
  margin: 0;
  color: var(--brand-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.category-slide__glass h3 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.9rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.category-slide__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.97rem;
  line-height: 1.8;
}

.category-carousel__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-nav--center {
  justify-content: center;
}

.category-carousel__thumbs {
  display: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-thumb {
  min-width: 88px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.85;
  transition:
    opacity var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.category-thumb img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.category-thumb.is-active {
  border-color: var(--brand);
  opacity: 1;
  box-shadow: var(--shadow-highlight);
}

.category-carousel__title {
  margin-top: 14px;
  color: rgba(0, 146, 243, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.product-carousel__mobile {
  display: block;
}

.product-carousel__desktop {
  display: none;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow-card-lg);
}

.product-card--mobile {
  display: flex;
  flex-direction: column;
  min-height: 640px;
}

.product-card--desktop {
  display: grid;
  min-height: 620px;
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
  padding: 20px;
}

.product-card__media img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.product-card__media--desktop {
  padding: 28px;
}

.product-card__media--desktop img {
  max-height: 420px;
}

.product-card__body,
.product-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__body {
  flex: 1;
  padding: 24px;
}

.product-card__copy {
  min-height: 0;
  padding: 28px;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.product-card p {
  margin: 18px 0 0;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.9;
}

.product-card__actions {
  display: grid;
  gap: 18px;
  padding-top: 20px;
}

.product-side-list {
  display: grid;
  gap: 16px;
}

.product-side-card {
  position: relative;
  min-height: 198px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  text-align: left;
  opacity: 0.5;
  transition:
    opacity var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.product-side-card:hover {
  opacity: 0.82;
  border-color: rgba(0, 146, 243, 0.4);
}

.product-side-card.is-active {
  border-color: var(--brand);
  box-shadow: var(--shadow-highlight);
  opacity: 1;
}

.product-side-card__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
  padding: 20px;
}

.product-side-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-side-card__label {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9), transparent);
}

.product-side-card__label h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card,
.mission-card,
.support-card,
.info-card {
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.benefit-card span {
  font-size: 0.95rem;
  font-weight: 700;
}

.benefit-card__icon,
.mission-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(0, 146, 243, 0.1);
  color: var(--brand);
}

.mission-list {
  display: grid;
  gap: 16px;
}

.mission-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.mission-card span {
  font-weight: 600;
}

.category-featured {
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-media);
}

.category-featured__media,
.category-entry__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.category-featured__media img,
.category-entry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 47, 73, 0.12), rgba(8, 47, 73, 0.54));
}

.category-featured__body,
.category-entry__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.category-featured__body h2,
.category-entry__body h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.category-featured__body h2 {
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.category-entry__body h3 {
  font-size: 1.8rem;
}

.category-featured__body p,
.category-entry__body p,
.support-card p,
.info-card p,
.footer-nav__link,
.footer-links a,
.site-footer__subtitle {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.category-featured__body p + p,
.category-entry__body p + p {
  margin-top: 14px;
}

.category-group {
  border: 1px solid var(--brand-border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.category-group__items {
  display: grid;
  gap: 24px;
}

.category-entry {
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  background: rgba(237, 248, 255, 0.35);
}

.category-entry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 116, 215, 0.05), rgba(8, 47, 73, 0.4));
}

.support-grid {
  display: grid;
  gap: 24px;
}

.support-card {
  padding: 24px;
}

.support-card h3,
.info-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.support-card p,
.info-card p {
  margin: 12px 0 0;
}

.contact-layout {
  display: grid;
  gap: 32px;
}

.contact-column {
  display: grid;
  gap: 24px;
}

.info-card {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item small {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.contact-item strong {
  display: block;
  margin-top: 4px;
  color: var(--foreground);
  font-weight: 600;
  line-height: 1.7;
}

.contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.contact-item__icon--whatsapp {
  background: var(--whatsapp-soft);
  color: var(--whatsapp);
}

.contact-item__icon--instagram {
  background: var(--instagram-soft);
  color: var(--instagram);
}

.contact-item__icon--primary {
  background: rgba(0, 146, 243, 0.1);
  color: var(--brand);
}

.map-card {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.site-footer {
  background: var(--brand);
  color: #fff;
}

.site-footer__wrap {
  padding: 40px 0 0;
}

.site-footer__panel {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--brand-strong);
  padding: 32px 24px;
  box-shadow: var(--shadow-footer);
}

.site-footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 32px;
  text-align: center;
}

.site-footer__title {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer__subtitle {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.site-footer__columns {
  display: grid;
  gap: 32px;
  padding-top: 32px;
}

.site-footer__columns h3,
.site-footer__columns h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer__columns p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact,
.footer-links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-links {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.footer-nav__link,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}

.footer-nav__link:hover,
.footer-links a:hover {
  color: #fff;
}

.site-footer__bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-align: center;
}

.floating-buttons {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.floating-buttons a:hover {
  transform: scale(1.08);
}

.floating-buttons__catalog {
  width: 48px;
  height: 48px;
  background: var(--brand);
}

.floating-buttons__whatsapp {
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  animation: float 3s ease-in-out infinite;
}

.floating-buttons a .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  background: var(--brand-soft);
  padding: 24px;
}

.not-found__card {
  width: min(100%, 520px);
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  background: #fff;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.not-found__card p:first-child {
  margin: 0;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.not-found__card h1 {
  margin: 18px 0 0;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.not-found__card p:last-of-type {
  margin: 18px 0 0;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.not-found__card .button {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 640px) {
  .site-header__whatsapp {
    display: inline-flex;
  }

  .category-slide__content {
    padding: 40px;
  }

  .category-slide__glass {
    max-width: 70%;
    padding: 32px;
  }

  .category-carousel__thumbs {
    display: flex;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 88px 0;
  }

  .site-header__inner {
    min-height: 96px;
  }

  .brand-link__image {
    height: 56px;
  }

  .hero__inner {
    justify-content: flex-end;
    padding: 96px 0 112px;
  }

  .hero__panel {
    margin-top: 80px;
    padding: 32px;
  }

  .page-hero-card {
    padding: 40px;
  }

  .section-header--split {
    flex-direction: row;
    align-items: flex-end;
  }

  .category-slide {
    min-height: 580px;
  }

  .category-carousel__controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .category-carousel__title {
    text-align: left;
  }

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

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

  .site-footer__panel {
    padding: 40px;
  }

  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .category-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .category-entry {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .category-entry--reverse .category-entry__media {
    order: 2;
  }

  .category-entry--reverse .category-entry__body {
    order: 1;
  }

  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .map-card {
    min-height: 100%;
  }
}

@media (min-width: 1080px) {
  .site-nav {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }
}

@media (min-width: 1200px) {
  .product-carousel__mobile {
    display: none;
  }

  .product-carousel__desktop {
    display: grid;
    grid-template-columns: minmax(0, 2.75fr) minmax(280px, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .product-card--desktop {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .product-card__copy {
    padding: 40px;
  }

  .product-card__media--desktop {
    padding: 32px;
  }

  .product-card__media--desktop img {
    max-height: 450px;
  }
}
