/* ==========================================================
   DANI GATELLI — ARTE TERAPEUTA
   CSS Architecture:
   1. @font-face
   2. :root (design tokens)
   3. Reset
   4. Utilities (.visually-hidden, .skip-link, .container, .section)
   5. Button component
   6. Hero section
   7. Sobre section
   8. Destaque section
   9. Atendimentos section
   10. Inspiracoes section
   11. Contato section
   12. Footer section
   13. Media queries — Tablet (min-width: 768px)
   14. Media queries — Desktop (min-width: 1024px)
   ========================================================== */

/* ==========================================================
   1. @font-face
   ========================================================== */

@font-face {
  font-family: "The Seasons";
  src: url("../fonts/the-seasons/TheSeasons-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "The Seasons";
  src: url("../fonts/the-seasons/TheSeasons-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eymen Pro";
  src: url("../fonts/eymen-pro/EymenPro-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/libre-baskerville/LibreBaskerville-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/libre-baskerville/LibreBaskerville-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "The Castle Elizah";
  src: url("../fonts/the-castle-elizah/TheCastleElizah-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================
   2. Design Tokens
   ========================================================== */

:root {
  /* ========================================
     COLOR PALETTE
     ======================================== */
  --color-verde-sage:      #a6ad9a;
  --color-creme:           #f4efe5;
  --color-branco:          #ffffff;
  --color-marrom:          #8a5333;
  --color-verde-escuro:    #4e5b3c;
  --color-rosa-salmao:     #e5c4b3;
  --color-bege-medio:      #ae9479;

  /* ========================================
     TYPOGRAPHY — FONT FAMILIES
     ======================================== */
  --font-the-seasons:       "The Seasons", serif;
  --font-eymen-pro:         "Eymen Pro", sans-serif;
  --font-libre-baskerville: "Libre Baskerville", serif;
  --font-castle-elizah:     "The Castle Elizah", serif;

  /* ========================================
     TYPOGRAPHY — SCALE (rem values)
     Conversao: valor-px / 16 = rem
     ======================================== */
  --text-xs:    0.75rem;     /* 12px */
  --text-sm:    0.875rem;    /* 14px */
  --text-base:  1rem;        /* 16px */
  --text-md:    1.0625rem;   /* 17px */
  --text-lg:    1.125rem;    /* 18px */
  --text-xl:    1.25rem;     /* 20px */
  --text-2xl:   1.375rem;    /* 22px */
  --text-3xl:   1.5rem;      /* 24px */
  --text-hero-mobile:    1.875rem;  /* 30px */
  --text-hero-tablet:    2.375rem;  /* 38px */
  --text-hero-desktop:   3.25rem;   /* 52px */
  --text-destaque-mobile:  2rem;      /* 32px */
  --text-destaque-tablet:  2.25rem;   /* 36px */
  --text-destaque-desktop: 2.5rem;    /* 40px */
  --text-sobre-mobile:   1.75rem;   /* 28px */
  --text-sobre-tablet:   2rem;      /* 32px */
  --text-sobre-desktop:  2.1875rem; /* 35px */
  --text-card-mobile:    2rem;      /* 32px */
  --text-card-tablet:    2.25rem;   /* 36px */
  --text-card-desktop:   2.375rem;  /* 38px */

  /* ========================================
     SPACING SCALE
     ======================================== */
  --space-1:   0.25rem;   /* 4px  */
  --space-2:   0.5rem;    /* 8px  */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-14:  3.5rem;    /* 56px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */

  /* ========================================
     LAYOUT
     ======================================== */
  --container-max:              1200px;
  --container-padding-desktop:  3.75rem;  /* 60px */
  --container-padding-mobile:   1.5rem;   /* 24px */
  --section-padding-desktop:    5rem;     /* 80px */
  --section-padding-mobile:     3.75rem;  /* 60px */

  /* ========================================
     BORDERS
     ======================================== */
  --radius-sm:   0.25rem;   /* 4px */
  --radius-md:   0.5rem;    /* 8px */
  --radius-lg:   1rem;      /* 16px */
  --radius-xl:   1.5rem;    /* 24px */
  --radius-pill: 1.875rem;  /* 30px */
  --radius-full: 9999px;

  /* ========================================
     SHADOWS
     ======================================== */
  --shadow-sm:   0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:   0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* ========================================
     TRANSITIONS
     ======================================== */
  --transition-fast:   150ms ease;
  --transition-normal: 300ms ease;
}

/* ==========================================================
   3. Reset
   ========================================================== */

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

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

body {
  font-family: var(--font-eymen-pro);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-marrom);
  background-color: var(--color-creme);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

blockquote {
  margin: 0;
  padding: 0;
}

/* ==========================================================
   4. Utilities
   ========================================================== */

.visually-hidden {
  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;
  top: -100%;
  left: var(--space-4);
  background: var(--color-marrom);
  color: var(--color-creme);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-mobile);
}

.section {
  padding-block: var(--section-padding-mobile);
}

/* ==========================================================
   5. Button Component
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-eymen-pro);
  font-weight: 300;
  font-size: var(--text-lg);      /* 18px */
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  padding: var(--space-4) 2.5rem;  /* 16px 40px */
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              opacity var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-marrom);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--color-marrom);
  color: var(--color-creme);
  border-color: var(--color-marrom);
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--outline {
  background-color: transparent;
  border-color: var(--color-marrom);
  color: var(--color-marrom);
}

.btn--outline:hover {
  background-color: var(--color-marrom);
  color: var(--color-creme);
}

.btn--newsletter {
  font-family: var(--font-castle-elizah);
  font-weight: 400;
  font-size: 1.125rem;  /* 18px */
  color: var(--color-marrom);
  background-color: transparent;
  border: 2px solid var(--color-marrom);
  border-radius: var(--radius-pill);
  padding: 0.875rem 3rem; /* 14px 48px */
  cursor: pointer;
  transition: background-color var(--transition-normal),
              color var(--transition-normal);
}

.btn--newsletter:hover {
  background-color: var(--color-marrom);
  color: var(--color-creme);
}

.btn--newsletter:focus-visible {
  outline: 3px solid var(--color-marrom);
  outline-offset: 2px;
}

/* ==========================================================
   6. Hero Section
   ========================================================== */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--color-verde-sage);
  background-image: url("../images/background-hero.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.hero__nav-container {
  padding-top: var(--space-6);
  padding-bottom: var(--space-4);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav__logo {
  font-family: var(--font-the-seasons);
  font-weight: 400;
  font-size: 2rem;  /* 32px */
  color: var(--color-marrom);
  text-decoration: none;
  line-height: 1.2;
}

.nav__logo:focus-visible {
  outline: 3px solid var(--color-marrom);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav__links {
  display: none;
  gap: var(--space-6);
  list-style: none;
}

.nav__link {
  font-family: var(--font-eymen-pro);
  font-weight: 700;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-branco);
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity var(--transition-fast);
}

.nav__link:hover {
  opacity: 0.75;
}

.nav__link:focus-visible {
  outline: 3px solid var(--color-branco);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  gap: 0;
}

.nav__hamburger:focus-visible {
  outline: 3px solid var(--color-branco);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav__hamburger-line {
  display: block;
  width: 1.5rem;    /* 24px */
  height: 0.125rem; /* 2px */
  background: var(--color-branco);
  margin: 0.3125rem 0; /* 5px 0 */
}

/* Mobile Menu Overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-verde-sage);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav__mobile-overlay.is-open {
  display: flex;
}

.nav__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-marrom);
  cursor: pointer;
  line-height: 1;
  padding: var(--space-2);
}

.nav__close:focus-visible {
  outline: 3px solid var(--color-marrom);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: var(--space-8);
}

.nav__mobile-link {
  font-family: var(--font-eymen-pro);
  font-weight: 700;
  font-size: 1.5rem;  /* 24px */
  color: var(--color-branco);
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity var(--transition-fast);
}

.nav__mobile-link:hover {
  opacity: 0.75;
}

.nav__mobile-link:focus-visible {
  outline: 3px solid var(--color-branco);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Decorative Sun */
.hero__sun {
  display: none;
  position: absolute;
  left: 1.25rem;   /* 20px */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* Hero Content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: var(--space-24); /* space for wave */
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-style: italic;
  font-size: var(--text-hero-mobile);  /* 30px */
  color: var(--color-creme);
  line-height: 1.3;
  margin-bottom: var(--space-8);
  max-width: 37.5rem; /* ~600px */
}

.hero__title-break {
  display: none;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 37.5rem;
  width: 100%;
}

.hero__subtitle {
  font-family: var(--font-eymen-pro);
  font-weight: 300;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-branco);
  line-height: 1.6;
}

.hero__subtitle-break {
  display: none;
}

/* Wave */
.hero__wave {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 101%;
  display: block;
  object-fit: fill;
  z-index: 2;
}

/* ==========================================================
   7. Sobre Section
   ========================================================== */

.sobre {
  background: var(--color-creme);
  margin-top: -2px;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.sobre__image-wrapper {
  display: flex;
  justify-content: center;
}

.sobre__image {
  width: 100%;
  height: auto;
}

.sobre__content {
  display: flex;
  flex-direction: column;
}

.sobre__title {
  font-family: var(--font-the-seasons);
  font-weight: 400;
  font-size: var(--text-sobre-mobile);  /* 28px */
  color: var(--color-marrom);
  text-align: left;
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.sobre__text {
  font-family: var(--font-eymen-pro);
  font-weight: 300;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-marrom);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.sobre__text:last-child {
  margin-bottom: 0;
}

/* ==========================================================
   8. Destaque Section
   ========================================================== */

.destaque {
  position: relative;
  background-color: var(--color-verde-sage);
  background-image: url("../images/background-contrast.svg");
  background-size: cover;
  background-position: center;
}

.destaque__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);  /* 40px */
}

.destaque__block {
  text-align: center;
}

.destaque__title {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-destaque-mobile);  /* 32px */
  color: var(--color-creme);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.destaque__text {
  font-family: var(--font-eymen-pro);
  font-weight: 300;
  font-size: var(--text-md);  /* 17px */
  color: var(--color-branco);
  line-height: 1.7;
}

.destaque__cta {
  text-align: center;
  margin-top: var(--space-14);  /* 56px */
}

/* ==========================================================
   9. Atendimentos Section
   ========================================================== */

.atendimentos {
  background: var(--color-creme);
}

/* Icons block */
.atendimentos__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);  /* 40px */
}

.atendimentos__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atendimentos__icon-img {
  width: 8.75rem;   /* 140px */
  height: 8.75rem;  /* 140px */
}

.atendimentos__icon-label {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-xl);  /* 20px */
  text-align: center;
  margin-top: var(--space-4);
  max-width: 8.75rem; /* match icon width */
  line-height: 1.4;
}

.atendimentos__icon-label--sage {
  color: var(--color-verde-sage);
  font-style: italic;
}

.atendimentos__icon-label--rosa {
  color: var(--color-rosa-salmao);
  font-style: italic;
}

.atendimentos__icon-label--marrom {
  color: var(--color-marrom);
  font-style: italic;
}

/* Phrase block */
.atendimentos__frase {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-marrom);
  text-align: center;
  line-height: 1.7;
  margin-top: var(--space-12); /* 48px */
  margin-bottom: var(--space-16); /* 64px */
  max-width: 42.5rem;  /* ~680px — aligns with icon group */
  margin-inline: auto;
}

/* Cards block */
.atendimentos__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);  /* 40px */
  max-width: 62.5rem;    /* 1000px */
  margin-inline: auto;
}

.atendimentos__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--color-bege-medio);
  border-radius: var(--radius-lg);
  background: var(--color-creme);
  padding: var(--space-6);  /* 24px */
  gap: var(--space-6);
}

.atendimentos__card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.atendimentos__card-img {
  max-width: 100%;
  height: auto;
}

.atendimentos__card-title {
  font-family: var(--font-the-seasons);
  font-weight: 700;
  font-size: var(--text-card-mobile);  /* 32px */
  color: var(--color-marrom);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.atendimentos__card-text {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-marrom);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* ==========================================================
   10. Inspiracoes Section
   ========================================================== */

.inspiracoes {
  position: relative;
  overflow: hidden;
  background: var(--color-verde-sage);
}

.inspiracoes__deco {
  position: absolute;
}

.inspiracoes__deco--top-left {
  top: 0;
  left: 0;
  transform: scale(0.65);
  transform-origin: top left;
}

.inspiracoes__deco--bottom-left {
  bottom: 0;
  left: 0;
  transform: scale(0.65);
  transform-origin: bottom left;
}

.inspiracoes__deco--bottom-right {
  bottom: 0;
  right: 0;
  transform: scale(0.65);
  transform-origin: bottom right;
}

.inspiracoes__card {
  background: var(--color-creme);
  max-width: 40.625rem;  /* 650px */
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  padding: var(--space-8);  /* 32px */
}

.inspiracoes__title {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-style: italic;
  font-size: var(--text-destaque-mobile);  /* 32px */
  color: var(--color-marrom);
  text-align: center;
  line-height: 1.3;
  margin-bottom: var(--space-5);  /* 20px */
}

.inspiracoes__desc {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-marrom);
  text-align: center;
  line-height: 1.7;
  margin-bottom: var(--space-8);  /* 32px */
}

.inspiracoes__form {
  display: flex;
  flex-direction: column;
}

.inspiracoes__field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-5);  /* 20px */
}

.inspiracoes__field:last-of-type {
  margin-bottom: var(--space-8);  /* 32px */
}

.inspiracoes__label {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-marrom);
  text-align: left;
  margin-bottom: var(--space-2);
}

.inspiracoes__input {
  background: var(--color-verde-sage);
  height: 3rem;  /* 48px */
  width: 100%;
  padding: 0.75rem 1.25rem; /* 12px 20px */
  border: none;
  border-radius: var(--radius-xl);
  color: var(--color-branco);
  font-size: var(--text-base);  /* 16px */
  font-family: var(--font-eymen-pro);
  font-weight: 300;
}

.inspiracoes__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.inspiracoes__input:focus {
  outline: 2px solid var(--color-marrom);
  box-shadow: 0 0 0 3px rgba(138, 83, 51, 0.1);
}

.inspiracoes__submit {
  text-align: center;
}

/* ==========================================================
   11. Contato Section
   ========================================================== */

.contato {
  position: relative;
  overflow: hidden;
  background: var(--color-marrom);
}

.contato__texture {
  position: absolute;
  inset: 0;
  background-image: url("../images/background-talk-with-me.svg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.contato__wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--section-padding-mobile);
  padding-inline: var(--container-padding-mobile);
  padding-bottom: calc(var(--section-padding-mobile) + 4rem); /* extra space for wave */
}

.contato__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);  /* 40px */
}

.contato__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contato__frase {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-style: italic;
  font-size: var(--text-destaque-mobile);  /* 32px */
  color: var(--color-creme);
  line-height: 1.7;
  text-align: center;
  margin-bottom: var(--space-20);  /* 80px */
}

.contato__social {
  display: flex;
  gap: 2.1875rem;  /* 35px */
  justify-content: center;
}

.contato__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.contato__social-link:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.contato__social-link:focus-visible {
  outline: 3px solid var(--color-creme);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.contato__social-icon {
  width: 4rem;   /* 64px */
  height: 4rem;  /* 64px */
}

.contato__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contato__image {
  width: 100%;
  max-height: 25rem;  /* 400px */
  object-fit: contain;
}

.contato__wave {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 101%;
  display: block;
  object-fit: fill;
  z-index: 999;
}

/* ==========================================================
   12. Footer Section
   ========================================================== */

.footer {
  background: var(--color-creme);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__sun {
  width: 12.3125rem;   /* 197px */
  height: 12.3125rem;  /* 197px */
  margin-bottom: var(--space-8);
}

.footer__quote {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-md);  /* 17px */
  color: var(--color-verde-escuro);
  line-height: 1.7;
  text-align: center;
  max-width: 43.75rem;  /* 700px */
  margin-bottom: var(--space-6);
  border: none;
}

.footer__quote p {
  font-size: inherit;
  line-height: inherit;
}

.footer__signature {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-base);  /* 16px */
  color: var(--color-verde-escuro);
  text-align: center;
  margin-bottom: var(--space-4);
}

.footer__copyright {
  font-family: var(--font-libre-baskerville);
  font-weight: 400;
  font-size: var(--text-xs);  /* 12px */
  color: var(--color-verde-escuro);
  opacity: 0.8;
  text-align: center;
  line-height: 1.5;
}

.footer__link {
  color: var(--color-verde-escuro);
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link:focus-visible {
  outline: 3px solid var(--color-verde-escuro);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ==========================================================
   13. Media Queries — Tablet (min-width: 768px)
   ========================================================== */

@media (min-width: 768px) {

  /* Container */
  .container {
    padding-inline: var(--container-padding-desktop);
  }

  /* Section */
  .section {
    padding-block: var(--section-padding-desktop);
  }

  /* Nav */
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  /* Hero Sun */
  .hero__sun {
    display: block;
  }

  .hero__title-break,
  .hero__subtitle-break {
    display: inline;
  }

  /* Hero Content */
  .hero__content {
    align-items: flex-end;
    text-align: right;
  }

  .hero__title {
    font-size: var(--text-hero-tablet);  /* 38px */
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    max-width: 24.5rem;
    text-align: center;
  }

  .hero__subtitle {
    font-size: var(--text-lg);  /* 18px */
  }

  /* Sobre */
  .sobre__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-8);  /* 32px */
    align-items: center;
  }

  .sobre__title {
    font-size: var(--text-sobre-tablet);  /* 32px */
  }

  .sobre__text {
    font-size: var(--text-md);  /* 17px */
  }

  /* Destaque */
  .destaque__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);  /* 32px */
  }

  .destaque__title {
    font-size: var(--text-destaque-tablet);  /* 36px */
  }

  .destaque__text {
    font-size: var(--text-lg);  /* 18px */
  }

  /* Atendimentos — Icons */
  .atendimentos__icons {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3.75rem;  /* 60px */
  }

  .atendimentos__icon-img {
    width: 10rem;   /* 160px */
    height: 10rem;  /* 160px */
  }

  .atendimentos__icon-label {
    font-size: var(--text-md);  /* 17px */
    max-width: 10rem;  /* match icon */
  }

  .atendimentos__frase {
    font-size: var(--text-md);  /* 17px */
  }

  /* Atendimentos — Cards */
  .atendimentos__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);  /* 40px */
    align-items: center;
    text-align: left;
    padding: var(--space-8);  /* 32px */
    flex-direction: unset;
  }

  .atendimentos__card-title {
    font-size: var(--text-card-tablet);  /* 36px */
  }

  .atendimentos__card-text {
    font-size: var(--text-md);  /* 17px */
  }

  /* Inspiracoes */
  .inspiracoes__deco--top-left,
  .inspiracoes__deco--bottom-left,
  .inspiracoes__deco--bottom-right {
    transform: none;
  }

  .inspiracoes__card {
    padding: var(--space-12);  /* 48px */
  }

  .inspiracoes__title {
    font-size: var(--text-destaque-tablet);  /* 36px */
  }

  .inspiracoes__desc {
    font-size: var(--text-md);  /* 17px */
  }

  .inspiracoes__label {
    font-size: var(--text-md);  /* 17px */
  }

  .btn--newsletter {
    font-size: 1.25rem;  /* 20px */
  }

  /* Contato */
  .contato__wrapper {
    padding-block: var(--section-padding-desktop);
    padding-bottom: calc(var(--section-padding-desktop) + 4rem);
    padding-inline: var(--container-padding-desktop);
  }

  .contato__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-10);  /* 40px */
    align-items: center;
  }

  .contato__frase {
    font-size: var(--text-destaque-tablet);  /* 36px */
  }

  .contato__image {
    width: auto;
    max-height: none;
    height: 100%;
  }

  /* Footer */
  .footer__quote {
    font-size: var(--text-lg);  /* 18px */
  }

  .footer__signature {
    font-size: var(--text-md);  /* 17px */
  }

  .footer__copyright {
    font-size: 0.8125rem;  /* 13px */
  }
}

/* ==========================================================
   14. Media Queries — Desktop (min-width: 1024px)
   ========================================================== */

@media (min-width: 1024px) {

  /* Nav */
  .nav__link {
    font-size: var(--text-lg);  /* 18px */
  }

  /* Hero */
  .hero__title {
    font-size: var(--text-hero-desktop);  /* 52px */
  }

  .hero__actions {
    max-width: 38.5rem;
  }

  /* Sobre */
  .sobre__grid {
    gap: var(--space-10);  /* 40px */
  }

  .sobre__title {
    font-size: var(--text-sobre-desktop);  /* 35px */
  }

  .sobre__text {
    font-size: var(--text-lg);  /* 18px */
  }

  /* Destaque */
  .destaque__grid {
    gap: var(--space-10);  /* 40px */
  }

  .destaque__title {
    font-size: var(--text-destaque-desktop);  /* 40px */
  }

  .destaque__text {
    font-size: var(--text-xl);  /* 20px */
  }

  /* Atendimentos — Icons */
  .atendimentos__icons {
    gap: 5rem;  /* 80px */
  }

  .atendimentos__icon-img {
    width: 12.375rem;   /* 198px */
    height: 12.375rem;  /* 198px */
  }

  .atendimentos__icon-label {
    font-size: var(--text-xl);  /* 20px */
    max-width: 12.375rem;  /* match icon */
  }

  .atendimentos__frase {
    font-size: var(--text-lg);  /* 18px */
  }

  /* Atendimentos — Cards */
  .atendimentos__card {
    padding: var(--space-10);  /* 40px */
  }

  .atendimentos__card-title {
    font-size: var(--text-card-desktop);  /* 38px */
  }

  .atendimentos__card-text {
    font-size: var(--text-lg);  /* 18px */
  }

  /* Inspiracoes */
  .inspiracoes__card {
    padding: 3.75rem;  /* 60px */
  }

  .inspiracoes__title {
    font-size: 2.375rem;  /* 38px per spec */
  }

  .inspiracoes__desc {
    font-size: var(--text-lg);  /* 18px */
  }

  .inspiracoes__label {
    font-size: var(--text-lg);  /* 18px */
  }

  .btn--newsletter {
    font-size: 1.375rem;  /* 22px */
  }

  /* Contato */
  .contato__wrapper {
    padding-inline: 5.625rem;  /* 90px */
  }

  .contato__grid {
    gap: 3.75rem;  /* 60px */
  }

  .contato__frase {
    font-size: 2.375rem;  /* 38px per spec */
  }

  /* Footer */
  .footer__quote {
    font-size: var(--text-xl);  /* 20px */
  }

  .footer__signature {
    font-size: var(--text-lg);  /* 18px */
  }

  .footer__copyright {
    font-size: var(--text-sm);  /* 14px */
  }
}

@media (min-width: 1440px) {

  /* Hero */
  .hero__actions {
    max-width: 55.5rem;
  }

}

@media (min-width: 1441px) {

  /* Hero */
  .hero__actions {
    max-width: 100%;
    align-items: center;
  }

}
