/* ==========================================
   SERENA — Design System & Global Styles
   Aesthetic: minimalist premium / spa / calm
   Mobile-first
   ========================================== */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --cream:        #FAF8F5;
  --cream-dark:   #F3EDE6;
  --beige:        #E8DFD4;
  --olive:        #8A9A7B;
  --olive-light:  #A8B89C;
  --olive-dark:   #6B7D5E;
  --charcoal:     #3A3A3A;
  --charcoal-light:#5C5C5C;
  --warm-gray:    #9B9488;
  --white:        #FFFFFF;
  --shadow:       rgba(58, 58, 58, 0.06);
  --shadow-md:    rgba(58, 58, 58, 0.10);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Layout */
  --max-width:  1100px;
  --radius:     10px;
  --radius-lg:  16px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

a:hover {
  opacity: 0.7;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

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

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

.section--beige {
  background: var(--cream-dark);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

p {
  color: var(--charcoal-light);
  max-width: 560px;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
}

/* --- Header / Nav --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo__img {
  height: 38px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: var(--space-md);
}

.menu a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color 0.3s var(--ease);
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--olive);
  transition: width 0.3s var(--ease);
}

.menu a:hover {
  opacity: 1;
  color: var(--olive-dark);
}

.menu a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s var(--ease);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-align: center;
  min-width: 180px;
}

.btn--primary {
  background: var(--olive);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--olive-dark);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(138, 154, 123, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}

.btn--outline:hover {
  background: var(--olive);
  color: var(--white);
  opacity: 1;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1DAF54;
  opacity: 1;
  transform: translateY(-1px);
}

/* --- Hero (kept for other pages if needed) --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 75vh;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  margin-bottom: var(--space-sm);
  animation: fadeUp 0.8s var(--ease) both;
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  margin: 0 auto var(--space-lg);
  animation: fadeUp 0.8s 0.15s var(--ease) both;
}

.hero .btn {
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

/* --- Hero Parallax (Home) --- */
.hero-parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax__img {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 28, 24, 0.55) 0%,
    rgba(30, 28, 24, 0.45) 40%,
    rgba(30, 28, 24, 0.65) 100%
  );
  z-index: 1;
}

.hero-parallax__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 700px;
}

.label--light {
  color: var(--olive-light);
}

.hero-parallax__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  animation: fadeUp 1s var(--ease) both;
}

.hero-parallax__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(250, 248, 245, 0.75);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
  animation: fadeUp 1s 0.2s var(--ease) both;
}

.btn--light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 248, 245, 0.4);
  animation: fadeUp 1s 0.4s var(--ease) both;
}

.btn--light:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

/* Scroll indicator */
.hero-parallax__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 0.8s var(--ease) both;
}

.hero-parallax__scroll span {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250, 248, 245, 0.4);
}

.hero-parallax__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,248,245,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Header transparent on hero */
.header--hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(250, 248, 245, 0.08);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.header--hero .logo a,
.header--hero .menu a {
  color: var(--cream);
  transition: color 0.4s var(--ease);
}

.header--hero .logo__img {
  filter: brightness(3);
  transition: filter 0.4s var(--ease);
}

.header--scrolled .logo__img {
  filter: brightness(1);
}

.header--hero .menu a::after {
  background: var(--cream);
}

.header--hero .menu a:hover {
  color: rgba(250, 248, 245, 0.7);
}

/* Header solid after scroll */
.header--scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--beige);
}

.header--scrolled .logo a,
.header--scrolled .menu a {
  color: var(--charcoal);
}

.header--scrolled .menu a::after {
  background: var(--olive);
}

.header--scrolled .menu a:hover {
  color: var(--olive-dark);
  opacity: 1;
}

/* Overlap section (rises over hero) */
.section--overlap {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.06);
}

/* Section intro */
.section-intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-intro .label {
  margin-bottom: var(--space-xs);
  display: block;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for benefits */
.benefits .reveal:nth-child(2) { transition-delay: 0.15s; }
.benefits .reveal:nth-child(3) { transition-delay: 0.3s; }

/* --- Mid Parallax (Home) --- */
.mid-parallax {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mid-parallax__img {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
  transition: transform 0.1s linear;
}

.mid-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 28, 24, 0.6) 0%,
    rgba(30, 28, 24, 0.5) 40%,
    rgba(30, 28, 24, 0.7) 100%
  );
  z-index: 1;
}

.mid-parallax__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  max-width: 640px;
}

.mid-parallax__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.mid-parallax__sub {
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.8;
  margin: 0 auto var(--space-lg);
  max-width: 480px;
}

/* --- Benefícios (Home) --- */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.benefit {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--beige);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.benefit h3 {
  margin-bottom: var(--space-xs);
}

.benefit p {
  margin: 0 auto;
  font-size: 0.9rem;
}

/* --- Ritual section (Home) --- */
.ritual {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.ritual h2 {
  margin-bottom: var(--space-sm);
}

.ritual p {
  margin: 0 auto var(--space-lg);
}

/* --- Product Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__image-placeholder {
  font-size: 3rem;
  opacity: 0.35;
}

.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
}

.product-card__btn {
  font-size: 0.7rem;
  padding: 10px 24px;
}

/* --- Produto Individual --- */
.product-detail {
  padding: var(--space-xl) 0;
}

.product-detail__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.product-detail__image {
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__image-placeholder {
  font-size: 5rem;
  opacity: 0.3;
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

.product-detail__name {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.product-detail__aroma {
  color: var(--olive);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.product-detail__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-light);
}

.product-detail__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
}

.product-detail__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.spec-tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--cream-dark);
  color: var(--warm-gray);
}

/* --- About / Sobre --- */
.about-hero {
  text-align: center;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.about-hero h1 {
  margin-bottom: var(--space-sm);
}

.about-hero p {
  margin: 0 auto;
}

.about-content {
  padding: var(--space-xl) 0;
}

/* Decorative watermark */
.about-story {
  position: relative;
  overflow: hidden;
}

.about-story__watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(350px, 42vw, 550px);
  height: auto;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

.about-block {
  margin-bottom: var(--space-xl);
}

.about-block h2 {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: var(--space-sm);
  max-width: 640px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-item {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Contato --- */
.contact-hero {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.contact-hero h1 {
  margin-bottom: var(--space-sm);
}

.contact-hero p {
  margin: 0 auto var(--space-lg);
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: var(--space-2xl);
}

.contact-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px var(--shadow);
}

.contact-card h3 {
  margin-bottom: var(--space-xs);
}

.contact-card p {
  margin: 0 auto var(--space-md);
  font-size: 0.9rem;
}

/* --- Contact Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 2px 16px var(--shadow);
}

.contact-form-card h3 {
  margin-bottom: 4px;
}

.contact-form-card > p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* --- Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--olive-light);
  box-shadow: 0 0 0 3px rgba(138, 154, 123, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
}

/* --- Product card image with real images --- */
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

/* --- Divider --- */
.divider {
  width: 50px;
  height: 1.5px;
  background: var(--beige);
  margin: var(--space-lg) auto;
  border: none;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--beige);
  font-size: 0.75rem;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

footer .footer-links {
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

footer .footer-links a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
}

footer p {
  margin: 0 auto;
  text-align: center;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 0.6s var(--ease) both;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (min-width: 600px) {
  body {
    font-size: 16px;
  }

  .nav {
    height: 68px;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-xl);
  }

  .product-detail__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Desktop */
@media (min-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    min-height: 80vh;
  }
}

/* Tablet and below */
@media (max-width: 768px) {
  .logo__img {
    height: 28px;
  }

  .menu {
    gap: var(--space-sm);
  }

  .menu a {
    font-size: 0.72rem;
  }

  .about-story__watermark {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 60%;
    max-width: 280px;
    margin: var(--space-lg) auto var(--space-md);
    display: block;
    opacity: 1;
  }

  .about-story {
    overflow: visible;
  }

  .about-content {
    position: relative;
    z-index: 1;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .logo__img {
    height: 24px;
  }

  .menu {
    gap: 8px;
  }

  .menu a {
    font-size: 0.62rem;
  }

  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .btn--light {
    width: auto;
    padding: 14px 36px;
  }

  .contact-form .btn {
    align-self: stretch;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .product-card__btn {
    width: 100%;
  }

  .hero-parallax__scroll {
    display: none;
  }

  .section--overlap {
    margin-top: -30px;
    border-radius: 20px 20px 0 0;
  }

  .benefit-number {
    font-size: 2.2rem;
  }
}

/* Very small */
@media (max-width: 374px) {
  :root {
    --space-md: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .menu a {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
}