/* Rota D'Água — design tokens espelhando o projeto React original */
:root {
  --deep-current: #002B49;
  --oxygen-white: #F8FDFF;
  --vitality-cyan: #00A3E0;
  --glacier-mist: #E1EFF5;
  --font-heading: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --radius: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  background: var(--oxygen-white);
  color: var(--deep-current);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.page {
  min-height: 100vh;
  background: var(--oxygen-white);
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.container-stats {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glass */
.glass {
  background: rgba(248, 253, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #F8FDFF;
}
::-webkit-scrollbar-thumb {
  background: #00A3E0;
  border-radius: 3px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
  animation: navSlideDown 0.6s ease-out;
}

.navbar.is-scrolled {
  background: rgba(248, 253, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 43, 73, 0.05);
}

@keyframes navSlideDown {
  from { transform: translateY(-80px); }
  to { transform: translateY(0); }
}

.navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 640px) {
  .navbar__inner { height: 6rem; }
}
@media (min-width: 768px) {
  .navbar__inner { height: 7rem; }
}
@media (min-width: 1024px) {
  .navbar__inner { padding: 0 2.5rem; }
}

.navbar__logo img {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

@media (min-width: 640px) {
  .navbar__logo img { height: 3.75rem; }
}

@media (min-width: 768px) {
  .navbar__logo img { height: 4.25rem; }
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 43, 73, 0.7);
  transition: color 0.3s;
}

.navbar__links a:hover {
  color: var(--vitality-cyan);
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--vitality-cyan);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.btn-cyan:hover {
  background: var(--deep-current);
}

.navbar__toggle {
  display: flex;
  color: var(--deep-current);
}

@media (min-width: 768px) {
  .navbar__toggle { display: none; }
}

.navbar__toggle svg,
.mobile-menu__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--deep-current);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.5s ease-in-out;
  pointer-events: none;
}

.mobile-menu.is-open {
  clip-path: circle(150% at 50% 50%);
  pointer-events: auto;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
}

.mobile-menu__close svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}

.mobile-menu__links a:hover {
  color: var(--vitality-cyan);
}

.mobile-menu__cta {
  margin-top: 1rem;
  background: var(--vitality-cyan);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-current);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 43, 73, 0.6),
    rgba(0, 43, 73, 0.8),
    var(--deep-current)
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__content { padding: 8rem 2.5rem 5rem; }
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  color: var(--vitality-cyan);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
}

.hero__title {
  font-weight: 800;
  color: var(--oxygen-white);
  line-height: 1.05;
  font-size: 2.25rem;
}

.hero__title span {
  display: block;
}

.hero__title span + span {
  margin-top: 0.5rem;
}

.hero__desc {
  margin-top: 2rem;
  color: rgba(248, 253, 255, 0.7);
  font-size: 1.125rem;
  max-width: 32rem;
  line-height: 1.625;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--vitality-cyan);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  background: #fff;
  color: var(--deep-current);
}

.btn-hero-primary svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(248, 253, 255, 0.2);
  color: rgba(248, 253, 255, 0.8);
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: rgba(248, 253, 255, 0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero__scroll-ring {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(248, 253, 255, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.hero__scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: var(--vitality-cyan);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.35s; }
.reveal-delay-3 { transition-delay: 0.5s; }
.reveal-delay-4 { transition-delay: 0.1s; }
.reveal-delay-5 { transition-delay: 0.2s; }
.reveal-delay-6 { transition-delay: 0.3s; }
.reveal-delay-7 { transition-delay: 0.4s; }

/* ========== STATS ========== */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
}

.stats__card {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 43, 73, 0.05);
  padding: 2rem;
}

@media (min-width: 640px) {
  .stats__card { padding: 2.5rem; }
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glacier-mist);
}

.stats__item:last-child {
  border-bottom: none;
}

@media (min-width: 640px) {
  .stats__item {
    padding: 0;
    border-bottom: none;
    border-right: 1px solid var(--glacier-mist);
  }
  .stats__item:last-child {
    border-right: none;
  }
}

.stats__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--deep-current);
}

@media (min-width: 640px) {
  .stats__value { font-size: 3rem; }
}

.stats__label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 43, 73, 0.5);
  font-weight: 500;
}

/* ========== PRODUCTS ========== */
.products {
  padding: 7rem 0;
  background: var(--oxygen-white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .products { padding: 9rem 0; }
}

.section-eyebrow {
  color: var(--vitality-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.section-eyebrow.uppercase {
  text-transform: uppercase;
}

.section-title {
  margin-top: 1rem;
  font-weight: 800;
  color: var(--deep-current);
  line-height: 1.25;
  font-size: 1.875rem;
}

.section-title--white {
  color: var(--oxygen-white);
}

.section-title--lg {
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .section-title--lg { font-size: 3rem; }
}

.section-desc {
  margin-top: 1.25rem;
  color: rgba(0, 43, 73, 0.6);
  font-size: 1.125rem;
}

.products__header {
  max-width: 42rem;
  margin-bottom: 4rem;
}

.products__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.products__image-wrap {
  position: relative;
}

.products__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 43, 73, 0.1);
}

.products__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .products__image img { height: 500px; }
}

.products__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.products__badge span:first-child {
  display: block;
  font-size: 0.75rem;
  color: rgba(0, 43, 73, 0.5);
}

.products__badge span:last-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep-current);
  font-size: 1.125rem;
}

.products__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-card {
  background: rgba(225, 239, 245, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s;
  cursor: default;
}

.product-card:hover {
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 43, 73, 0.05);
}

.product-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.product-card__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(0, 43, 73, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vitality-cyan);
  transition: all 0.3s;
}

.product-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.product-card:hover .product-card__icon {
  background: var(--vitality-cyan);
  color: #fff;
}

.product-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep-current);
  font-size: 1rem;
}

.product-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--vitality-cyan);
  background: rgba(0, 163, 224, 0.1);
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
}

.product-card__desc {
  margin-top: 0.5rem;
  color: rgba(0, 43, 73, 0.55);
  font-size: 15px;
  line-height: 1.625;
}

.products__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--vitality-cyan);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.products__cta:hover {
  color: var(--deep-current);
}

/* ========== DIFFERENTIALS ========== */
.differentials {
  padding: 7rem 0;
  background: rgba(225, 239, 245, 0.4);
  border-radius: 0.25rem;
  margin: 0 0.75rem;
}

@media (min-width: 1024px) {
  .differentials { padding: 9rem 0; }
}

.differentials__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.differentials__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .differentials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .differentials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diff-card {
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.5s;
}

.diff-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 43, 73, 0.05);
}

.diff-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(0, 163, 224, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vitality-cyan);
  transition: all 0.3s;
}

.diff-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.diff-card:hover .diff-card__icon {
  background: var(--vitality-cyan);
  color: #fff;
}

.diff-card__title {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--deep-current);
}

.diff-card__desc {
  margin-top: 0.75rem;
  color: rgba(0, 43, 73, 0.5);
  font-size: 15px;
  line-height: 1.625;
}

/* ========== FLOW / PROCESS ========== */
.flow {
  padding: 7rem 0;
  background: var(--oxygen-white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .flow { padding: 9rem 0; }
}

.flow__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

.flow__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__header {
  max-width: 42rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.flow__timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  z-index: 10;
}

.flow__line {
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--glacier-mist);
}

@media (min-width: 640px) {
  .flow__line { left: 2rem; }
}

.flow__line-progress {
  width: 100%;
  background: linear-gradient(to bottom, var(--vitality-cyan), var(--deep-current));
  border-radius: 9999px;
  height: 0%;
  transition: height 0.1s;
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.flow__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-left: 0.5rem;
}

@media (min-width: 640px) {
  .flow__step { gap: 2rem; }
}

.flow__step-icon {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--deep-current);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vitality-cyan);
  box-shadow: 0 10px 15px -3px rgba(0, 43, 73, 0.2);
}

@media (min-width: 640px) {
  .flow__step-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.flow__step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.flow__step-body {
  padding-top: 0.25rem;
}

.flow__step-num {
  color: rgba(0, 163, 224, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.flow__step-title {
  margin-top: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-current);
}

.flow__step-desc {
  margin-top: 0.5rem;
  color: rgba(0, 43, 73, 0.55);
  font-size: 15px;
  line-height: 1.625;
  max-width: 28rem;
}

/* ========== ABOUT ========== */
.about {
  padding: 7rem 0;
  background: var(--deep-current);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about { padding: 9rem 0; }
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about__image-col {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .about__image-col { order: 1; }
}

.about__image {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about__image img { height: 450px; }
}

.about__deco-1 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background: rgba(0, 163, 224, 0.2);
  z-index: 0;
}

.about__deco-2 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  background: rgba(0, 163, 224, 0.1);
  z-index: 0;
}

.about__text-col {
  order: 1;
}

@media (min-width: 1024px) {
  .about__text-col { order: 2; }
}

.about__text {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: rgba(248, 253, 255, 0.65);
  font-size: 16px;
  line-height: 1.625;
}

.about__text strong {
  color: rgba(248, 253, 255, 0.9);
  font-weight: 700;
}

.about__meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about__meta-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
}

.about__meta-year .cyan {
  color: var(--vitality-cyan);
}

.about__meta-year .white {
  color: var(--oxygen-white);
  margin-left: 0.5rem;
}

.about__meta-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(248, 253, 255, 0.15);
}

.about__meta-region {
  color: rgba(248, 253, 255, 0.5);
  font-size: 0.875rem;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  background: var(--deep-current);
  overflow: hidden;
}

.footer__main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer__main {
    padding: 9rem 2.5rem;
  }
}

.footer__grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.footer__desc {
  margin-top: 1.5rem;
  color: rgba(248, 253, 255, 0.55);
  font-size: 1.125rem;
  max-width: 28rem;
}

.footer__contacts {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer__contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__contact-icon--ig {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
}

.footer__contact:hover .footer__contact-icon--ig {
  background: #ec4899;
  color: #fff;
}

.footer__contact-icon--mail {
  background: rgba(0, 163, 224, 0.2);
  color: var(--vitality-cyan);
}

.footer__contact:hover .footer__contact-icon--mail {
  background: var(--vitality-cyan);
  color: #fff;
}

.footer__contact-label {
  display: block;
  color: var(--oxygen-white);
  font-weight: 600;
  font-size: 0.875rem;
}

.footer__contact-value {
  color: rgba(248, 253, 255, 0.4);
  font-size: 0.75rem;
}

.footer__cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vitality-cyan);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
}

.footer__cta:hover {
  background: var(--oxygen-white);
  color: var(--deep-current);
}

.footer__cta svg {
  width: 1rem;
  height: 1rem;
}

.footer__bottom {
  border-top: 1px solid rgba(248, 253, 255, 0.08);
}

.footer__bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer__bottom-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer__bottom-inner {
    padding: 1.5rem 2.5rem;
  }
}

.footer__bottom-logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  border-radius: 0.5rem;
}

.footer__copy {
  color: rgba(248, 253, 255, 0.3);
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__copy { text-align: right; }
}
