/* ==================================================
   DIAMANTE DOURO — GLOBAL STYLES
   ================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

/* ==================================================
   DESIGN TOKENS
   ================================================== */

:root {
  /* Colors */
  --color-background: #ffffff;
  --color-surface: #0b2f32;
  --color-surface-transparent: rgba(7, 35, 38, 0.92);

  --color-text: #111111;
  --color-text-light: #f5f3ee;
  --color-text-muted: #b8b8b8;

  --color-accent: #9a7c55;
  --color-accent-hover: #b09168;
  --color-border: rgba(255, 255, 255, 0.25);

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 2rem;
  --font-size-2xl: clamp(3rem, 6vw, 5rem);

  /* Layout */
  --container-width: 1200px;
  --page-padding: clamp(1.25rem, 5vw, 5rem);

  /* Other */
  --radius-small: 6px;
  --radius-medium: 12px;

  --transition-fast: 180ms ease;
  --transition-default: 300ms ease;
}

/* ==================================================
   RESET
   ================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

/* ==================================================
   REUSABLE LAYOUT
   ================================================== */
.container {
  width: min(calc(100% - 2.5rem), 1400px);
  margin-inline: auto;
}

.site-header__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  width: calc(100% - 5rem);
  margin-inline: auto;
  padding-top: 2rem;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */

.heading {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
}

.section-title {
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}

/* ==================================================
   BUTTONS
   ================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0.8rem 1.3rem;

  border-radius: var(--radius-small);

  background: var(--color-accent);
  color: var(--color-text-light);

  font-size: var(--font-size-sm);
  font-weight: 500;

  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 4px;
}

/* ==================================================
   SITE HEADER
   ================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;

  width: 100%;
}

.site-header__container {
    margin-inline: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-left: 2.8rem;
    padding-top: 2rem;
}

.site-header__logo {
  width: 90px;
  flex-shrink: 0;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-toggle {
  position: relative;
  z-index: 21;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;

  padding-bottom: 10px;
  width: 48px;
  height: 48px;
  padding: 8px;

  background: transparent;
}

.menu-toggle__line {
  display: block;

  width: 100%;
  height: 3px;

  background: var(--color-text-light);

  transition:
    transform var(--transition-default),
    opacity var(--transition-default);
}

/* ==================================================
   HERO
   ================================================== */

.hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 100svh;
  overflow: hidden;

  background:
    url("../assets/images/hero/hero-boat-3.jpg")
    center / cover no-repeat;

  color: var(--color-text-light);
}

.hero__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 25, 28, 90) 0%,
      rgba(4, 25, 28, 0.5) 42%,
      rgba(4, 25, 28, 0.08) 75%
    );
}

.hero__content {
  position: relative;
  z-index: 1;

  width: calc(100% - 5rem);
  margin-inline: auto;

  padding-left: 45px;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

.hero__title {
  display: flex;
  flex-direction: column;

  margin-bottom: 1.75rem;

  letter-spacing: 10%;
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__title span + span {
  margin-top: 0.35em;
  margin-bottom: 1em;
}

.hero__subtitle {
  margin-bottom: 3rem;

  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.4;
}

.hero__button {
  min-height: 52px;
  padding-inline: 2rem;
  border-radius: 8px;
}

/* ==================================================
   FOOTER
   ================================================== */

.site-footer {
  padding: 5rem 2.5rem 1.5rem;
  background: #08282b;
  color: var(--color-text-light);
}

.site-footer__container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;

  max-width: 1400px;
  margin-inline: auto;
}

.site-footer__brand img {
  width: 130px;
  margin-bottom: 1.5rem;
}

.site-footer__brand p,
.site-footer__contact p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer a {
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.site-footer a:hover {
  color: var(--color-accent-hover);
  transform: translateX(4px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;

  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.16);

  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-xs);
}

.site-footer__bottom p {
  margin-bottom: 0;
}

/* ==================================================
   SIDE MENU
   ================================================== */

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 25;

  visibility: hidden;
  opacity: 0;

  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);

  transition:
    opacity var(--transition-default),
    visibility var(--transition-default);
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;

  display: flex;
  flex-direction: column;

  width: min(88vw, 420px);
  height: 100dvh;
  padding: 7rem 3rem 3rem;

  background: rgba(7, 42, 45, 0.96);
  color: var(--color-text-light);

  transform: translateX(100%);
  visibility: hidden;

  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);

  transition:
    transform var(--transition-default),
    visibility var(--transition-default);
}

.side-menu__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;

  width: 42px;
  height: 42px;
  padding: 8px;

  background: transparent;
}

.side-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 28px;
  height: 2px;

  background: var(--color-text-light);
}

.side-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.side-menu__nav a {
  position: relative;
  padding-left: 1.25rem;

  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.side-menu__nav a::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 1px;
  height: 1.2rem;

  background: var(--color-accent);

  transform: translateY(-50%);
}

.side-menu__nav a:hover {
  color: var(--color-accent-hover);
  transform: translateX(6px);
}

.side-menu__button {
  align-self: flex-start;
  margin-top: auto;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  visibility: visible;
  opacity: 1;
}

body.menu-open .side-menu {
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 700px) {
  .side-menu {
    width: 100%;
    padding: 6rem 1.5rem 2rem;
  }

  .side-menu__close {
    top: 1.25rem;
    right: 1.25rem;
  }

  .side-menu__nav {
    gap: 1.6rem;
  }
}

/* ==================================================
   EXPERIENCE
   ================================================== */

.experience {
  background: #f5f2ec;
}

.experience__container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);

  width: calc(100% - 5rem);
  max-width: 1400px;
  margin-inline: auto;
}

.experience__content {
  max-width: 460px;
}

.experience__eyebrow {
  margin-bottom: 1rem;

  color: var(--color-accent);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience__title {
  margin-bottom: 1.75rem;

  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}

.experience__text {
  margin-bottom: 2.25rem;

  max-width: 48ch;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.experience__image {
  min-height: 700px;
  overflow: hidden;
  border-radius: 18px;
  transform:translateY(-20px);
  object-position: center top;
}

.experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 170px;
  border-radius: var(--radius-medium);
}

/* ========================================
   CONTACT — SUCCESS MODAL
======================================== */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.contact-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(5, 35, 37, 0.82);
  backdrop-filter: blur(8px);
}

.contact-modal__content {
  position: relative;
  z-index: 1;

  width: min(620px, 100%);
  padding: 72px 60px;

  text-align: center;

  background: #f5f3ee;
  border-radius: 24px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25);

  transform: translateY(20px);

  transition: transform 0.4s ease;
}

.contact-modal.is-visible .contact-modal__content {
  transform: translateY(0);
}

.contact-modal__eyebrow {
  display: block;
  margin-bottom: 22px;

  color: #9a7c55;

  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-modal__content h2 {
  margin: 0 0 24px;

  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.contact-modal__content h2 em {
  color: #9a7c55;
  font-weight: 400;
}

.contact-modal__content p {
  margin: 0 auto 34px;

  max-width: 440px;

  color: #555;
  line-height: 1.8;
}

.contact-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;

  border: 0;
  background: transparent;

  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;

  transition: transform 0.2s ease;
}

.contact-modal__close:hover {
  transform: rotate(90deg);
}

.contact-modal__button {
  border: 0;
  cursor: pointer;
}


/* FORM SENDING STATE */

.contact-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}






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

@media (max-width: 850px) {
  .experience__container {
    grid-template-columns: 1fr;
    width: calc(100% - 2.5rem);
  }

  .experience__image {
    min-height: 420px;
  }
}

/* ==================================================
   CINEMATIC BREAK
   ================================================== */

.cinematic-break {
  position: relative;
  display: flex;
  align-items: flex-end;

  min-height: 90svh;
  padding: clamp(3rem, 7vw, 7rem);

  overflow: hidden;

  background:
    url("../assets/images/about/cinematic-douro.jpeg")
    center / cover no-repeat;

  color: var(--color-text-light);
}

.cinematic-break__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(5, 25, 27, 0.08) 25%,
      rgba(5, 25, 27, 0.78) 100%
    );
}

.cinematic-break__content {
  position: relative;
  z-index: 1;

  max-width: 900px;
}

.cinematic-break__eyebrow {
  margin-bottom: 1rem;

  color: #FFFFFF;
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cinematic-break__title {
  margin-bottom: 0;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
}

@media (max-width: 700px) {
  .cinematic-break {
    min-height: 75svh;
    padding: 2rem 1.25rem;
    background-position: 58% center;
  }

  .cinematic-break__title {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }
}

/* ==================================================
   FLEET
   ================================================== */

.fleet {
  background: #08282b;
  color: var(--color-text-light);
}

.fleet__container {
  width: calc(100% - 5rem);
  max-width: 1400px;
  margin-inline: auto;
}

.fleet__heading {
  display: block;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.fleet__eyebrow {
  margin-bottom: 1rem;
  color: var(--color-accent-hover);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet__title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.fleet-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .fleet__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}


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

.fleet-card__content {
  margin-top: 1rem;
}

.fleet-card__type {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-card__name {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
}

.fleet-card__capacity {
  margin-bottom: 0;
  color: var(--color-accent-hover);
  font-size: var(--font-size-sm);
  white-space: nowrap;
}

.fleet-card__description {
  margin-top: 0.8rem;
  line-height: 1.65;
}

.fleet-card h3 {
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
}


.fleet__cta {
  margin-top: 3rem;
}

.fleet.section {
  padding-block: clamp(4rem, 7vw, 6rem);
}

@media (max-width: 850px) {
  .fleet__container {
    width: calc(100% - 2.5rem);
  }

  .fleet__heading {
    display: block;
  }

  .fleet__grid {
    grid-template-columns: 1fr;
  }

  .fleet-card__content {
    align-items: flex-start;
  }
}

/* ==================================================
   SIGNATURE EXPERIENCES
   ================================================== */

.experiences {
  background: #f5f2ec;
  color: var(--color-text);
}

.experiences .container {
  width: calc(100% - 5rem);
  max-width: 1400px;
  margin-inline: auto;
}

.section-eyebrow {
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experiences__title {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.experiences__wrapper {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.experiences__menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experience-btn {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 47, 50, 0.18);
  border-radius: 8px;

  background: transparent;
  color: var(--color-surface);

  text-align: left;
  font-size: 0.95rem;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.experience-btn:hover {
  transform: translateX(5px);
  background: rgba(154, 124, 85, 0.12);
}

.experience-btn.active {
  background: var(--color-surface);
  color: var(--color-text-light);
  border-color: var(--color-surface);
}

.experience-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 560px;   /* ou 580px */
  overflow: hidden;

  border-radius: 18px;
  background: #ffffff;

  box-shadow: 0 24px 70px rgba(7, 35, 38, 0.1);

   transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.experience-card.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.experience-card > img {
  width: 100%;
  height: 100%;
  min-height: 50px;
  object-fit: cover;
  object-position:center;
  display: block;
  overflow: hidden;
}

.experience-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.experience-card__content h3 {
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.experience-card__content > p {
  margin-bottom: 2rem;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.8;
}

.experience-info {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.25rem;
}

.experience-info div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.experience-info span {
  color: rgba(17, 17, 17, 0.5);
  font-size: var(--font-size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-info strong {
  font-size: 1rem;
  font-weight: 500;
}

.experience-card__content .button {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .experiences .container {
    width: calc(100% - 2.5rem);
  }

  .experiences__wrapper {
    grid-template-columns: 1fr;
  }

  .experiences__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .experience-card > img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .experiences__menu {
    grid-template-columns: 1fr;
  }

  .experience-info {
    flex-direction: column;
    gap: 1rem;
  }
}


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

@media (max-width: 800px) {
  .site-footer {
    padding-inline: 1.25rem;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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


   @media (max-width: 700px) {
  .site-header__container,
  .hero__content {
    width: calc(100% - 2.5rem);
  }

  .site-header__logo {
    width: 80px;
  }
}
@media (max-width: 700px) {
  .site-header__container {
    padding-top: 1rem;
  }

  .site-header__logo {
    width: 80px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    
  }

  .hero {
    background-position: 62% center;
  }

  .hero__content {
    display: flex;
    padding-left: 45px;
    flex-direction: column;
    justify-content: center;

    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    margin-bottom: 1.5rem;
  }

  .hero__subtitle {
    margin-bottom: 1.75rem;
  }

  .hero__button {
    align-self: flex-start;
  }

  @media (max-width: 700px) {
  .container {
    width: calc(100% - 2.5rem);
    margin-inline: auto;
  }

  .site-header__container {
    width: calc(100% - 2.5rem);
  }
}
}

/* ==================================================
   SCROLL REVEAL ANIMATIONS
   ================================================== */

.reveal {
  opacity: 0;
  transform: translateY(45px);

  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Respeita utilizadores que preferem menos movimento */

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==================================================
   REVIEWS
   ================================================== */ 
/* ==================================================
   REVIEWS
   ================================================== */

.reviews {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(18, 70, 72, 0.24),
      transparent 42%
    ),
    var(--color-surface);

  color: var(--color-text-light);
}

.reviews.section {
  padding-block: clamp(5rem, 8vw, 7rem);
}

.reviews .container {
  width: calc(100% - 5rem);
  max-width: 1400px;
  margin-inline: auto;
}


/* ==================================================
   REVIEWS HEADER
   ================================================== */

.reviews__header {
  max-width: 900px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);

  text-align: center;
}

.reviews__header .section-eyebrow {
  margin-bottom: 1.25rem;
}

.reviews__title {
  margin-bottom: 1.75rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.reviews__title em {
  color: var(--color-accent);
  font-weight: 400;
}

.reviews__intro {
  max-width: 680px;
  margin: 0 auto;

  color: rgba(245, 243, 238, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}


/* ==================================================
   REVIEWS SUMMARY
   ================================================== */

.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  max-width: 900px;
  margin: 0 auto 3rem;

  text-align: center;
}

.reviews__summary-label {
  margin: 0;

  color: rgba(245, 243, 238, 0.6);

  font-size: 0.78rem;
  font-weight: 500;

  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.reviews__stars {
  color: var(--color-accent);

  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.12em;
}

.reviews__score {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.reviews__out-of {
  align-self: flex-end;

  margin-bottom: 0.35rem;

  color: rgba(245, 243, 238, 0.48);
  font-size: 0.9rem;
}

.reviews__platforms {
  margin: 0;

  color: rgba(245, 243, 238, 0.5);

  font-size: 0.78rem;
  letter-spacing: 0.07em;
  line-height: 1.8;
  text-transform: uppercase;
}

.reviews__platforms strong {
  margin-inline: 0.25rem;

  color: rgba(245, 243, 238, 0.9);
  font-weight: 500;
}

.reviews__platforms span {
  margin-inline: 0.2rem;
  color: var(--color-accent);
}


/* ==================================================
   REVIEWS DIVIDER
   ================================================== */

.reviews__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;

  margin-bottom: 2rem;
}

.reviews__divider > span {
  width: clamp(45px, 7vw, 100px);
  height: 1px;

  background: rgba(154, 124, 85, 0.55);
}

.reviews__divider p {
  margin: 0;

  color: var(--color-accent);

  font-size: 0.76rem;
  font-weight: 500;

  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}


/* ==================================================
   CUSTOM REVIEWS CAROUSEL
   ================================================== */

.reviews__carousel {
  position: relative;

  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
}

.review-slide {
  display: none;

  min-height: 320px;
  padding: clamp(2rem, 4vw, 3.5rem);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.review-slide.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  animation: reviewFade 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-slide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-slide__platform {
  color: rgba(245, 243, 238, 0.55);

  font-size: 0.76rem;
  font-weight: 500;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-slide__stars {
  color: var(--color-accent);

  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-slide__text {
  max-width: 880px;

  margin: 2.5rem 0;

  color: rgba(245, 243, 238, 0.9);

  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.45;
}

.review-slide__text::before {
  content: "“";

  display: block;

  height: 2.5rem;
  margin-bottom: 0.5rem;

  color: var(--color-accent);

  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
}

.review-slide__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;

  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-slide__footer > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-slide__footer strong {
  color: var(--color-text-light);

  font-size: 0.95rem;
  font-weight: 500;
}

.review-slide__footer div span {
  color: rgba(245, 243, 238, 0.45);

  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-slide__rating {
  color: var(--color-accent);

  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}


/* ==================================================
   REVIEWS CAROUSEL CONTROLS
   ================================================== */

.reviews__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;

  margin-top: 2rem;
}

.reviews__carousel-arrow {
  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;
  padding: 0;

  border: 1px solid rgba(154, 124, 85, 0.65);
  border-radius: 50%;

  background: transparent;
  color: var(--color-accent);

  font-size: 1.1rem;

  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

.reviews__carousel-arrow:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-surface);

  transform: scale(1.08);
}

.reviews__carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.reviews__carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(245, 243, 238, 0.28);

  transition:
    width 250ms ease,
    background-color 250ms ease,
    transform 250ms ease;
}

.reviews__carousel-dots button:hover {
  background: rgba(245, 243, 238, 0.6);
}

.reviews__carousel-dots button.active {
  width: 22px;

  border-radius: 999px;

  background: var(--color-accent);
}


/* ==================================================
   REVIEWS ANIMATION
   ================================================== */

@keyframes reviewFade {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


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

@media (max-width: 800px) {
  .reviews .container {
    width: calc(100% - 2.5rem);
  }

  .reviews__header {
    margin-bottom: 3rem;
  }

  .reviews__title br {
    display: none;
  }

  .reviews__summary {
    margin-bottom: 2.5rem;
  }

  .reviews__rating {
    flex-wrap: wrap;
  }

  .review-slide {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .reviews .container {
    width: calc(100% - 2rem);
  }

  .reviews__platforms {
    max-width: 320px;
  }

  .reviews__platforms strong {
    display: inline-block;
    margin-block: 0.15rem;
  }

  .reviews__divider {
    gap: 1rem;
  }

  .reviews__divider > span {
    width: 35px;
  }

  .review-slide {
    min-height: 390px;
    padding: 1.6rem;
  }

  .review-slide__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .review-slide__text {
    margin-block: 2rem;

    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .review-slide__footer {
    align-items: flex-start;
  }

  .review-slide__rating {
    font-size: 1.8rem;
  }

  .reviews__carousel-controls {
    gap: 1.25rem;
  }

  .reviews__carousel-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-slide.active {
    animation: none;
  }

  .reviews__carousel-arrow,
  .reviews__carousel-dots button {
    transition: none;
  }
}

.review-slide__source-link {
  display: inline-flex;
  align-items: center;

  margin-top: 0.65rem;

  color: var(--color-accent);

  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  opacity: 0.72;

  transition:
    opacity 250ms ease,
    transform 250ms ease,
    color 250ms ease;
}

.review-slide__source-link:hover {
  opacity: 1;
  color: var(--color-accent-hover);
  transform: translateX(4px);
}

/* ==================================================
   GALLERY PAGE
   ================================================== */

.gallery-page {
  background: #f5f2ec;
  color: var(--color-text);
}

.gallery-hero {
  position: relative;
  min-height: 72vh;
  padding-top: clamp(10rem, 16vw, 14rem);
  padding-bottom:4rem;

  background:
    linear-gradient(
      90deg,
      rgba(4, 25, 28, 0.88) 0%,
      rgba(4, 25, 28, 0.55) 45%,
      rgba(4, 25, 28, 0.14) 100%
    ),
    url("../assets/images/gallery/gallery-08.jpg") center / cover no-repeat;

  color: var(--color-text-light);
}

.gallery-hero__container {
  position: relative;
  z-index: 1;
}

.gallery-hero__title {
  max-width: 850px;
  margin-bottom: 2rem;

  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.gallery-hero__title em {
  color: var(--color-accent);
  font-weight: 400;
}

.gallery-hero__intro {
  max-width: 650px;
  margin: 0;

  color: rgba(245, 243, 238, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

/* ==================================================
   GALLERY FILTERS
   ================================================== */

.gallery-content {
  background: #f5f2ec;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;

  margin-bottom:4rem;
}

.gallery-filter {
  padding: 0.8rem 1.2rem;

  border: 1px solid rgba(11, 47, 50, 0.18);
  border-radius: 999px;

  background: transparent;
  color: var(--color-surface);

  font-size: 0.85rem;
  letter-spacing: 0.04em;

  transition:
    background-color 250ms ease,
    color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.gallery-filter:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.gallery-filter.active {
  border-color: var(--color-surface);
  background: var(--color-surface);
  color: var(--color-text-light);
}

/* ==================================================
   GALLERY GRID
   ================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 1.25rem;
  margin-top: 1.5rem;


  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;

  padding: 0;
  overflow: hidden;

  border: 0;
  border-radius: 16px;

  background: var(--color-surface);
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--tall {
  grid-row: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 400ms ease;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 1.5rem;

  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(4, 25, 28, 0.72) 100%
  );

  opacity: 0;

  transition: opacity 300ms ease;
}

.gallery-item__overlay span {
  color: var(--color-text-light);

  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transform: translateY(10px);

  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(0.88);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item__overlay span {
  transform: translateY(0);
}

/* Item escondido pelos filtros */

.gallery-item.is-hidden {
  display: none;
}

/* ==================================================
   GALLERY CTA
   ================================================== */

.gallery-cta {
  background: var(--color-surface);
  color: var(--color-text-light);
  text-align: center;
}

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

.gallery-cta__title {
  margin-bottom: 2.5rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}


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

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    min-height: 65vh;
    padding-top: 9rem;
  }

  .gallery-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;

    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .gallery-filter {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ==================================================
   GALLERY LIGHTBOX
   ================================================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: clamp(1rem, 4vw, 3rem);

  background: rgba(3, 18, 20, 0.96);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__figure {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: min(100%, 1400px);
  height: min(86vh, 900px);
  margin: 0;
}

.gallery-lightbox__image {
  transition:
    opacity 280ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox__image.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.gallery-lightbox__image {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: contain;

  opacity: 0;
  transform: scale(0.97);

  transition:
    opacity 300ms ease,
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox.is-open .gallery-lightbox__image {
  opacity: 1;
  transform: scale(1);
}

.gallery-lightbox__caption {
  position: absolute;
  bottom: 0;
  left: 50%;

  padding: 0.6rem 1rem;

  border-radius: 999px;

  background: rgba(3, 18, 20, 0.7);
  color: rgba(245, 243, 238, 0.82);

  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transform: translateX(-50%);
}

.gallery-lightbox__close,
.gallery-lightbox__arrow {
  position: absolute;
  z-index: 2;

  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(245, 243, 238, 0.32);
  border-radius: 50%;

  background: rgba(3, 18, 20, 0.35);
  color: var(--color-text-light);

  font-size: 1.3rem;

  backdrop-filter: blur(10px);

  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__arrow:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-surface);

  transform: scale(1.08);
}

.gallery-lightbox__close {
  top: 1.5rem;
  right: 1.5rem;

  font-size: 2rem;
  font-weight: 300;
}

.gallery-lightbox__arrow--previous {
  left: 1.5rem;
}

.gallery-lightbox__arrow--next {
  right: 1.5rem;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox__figure {
    width: 100%;
    height: 78vh;
  }

  .gallery-lightbox__close,
  .gallery-lightbox__arrow {
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__close {
    top: 1rem;
    right: 1rem;
  }

  .gallery-lightbox__arrow--previous {
    left: 0.75rem;
  }

  .gallery-lightbox__arrow--next {
    right: 0.75rem;
  }

  .gallery-lightbox__caption {
    max-width: calc(100% - 2rem);
    text-align: center;
  }
}

/* ==================================================
   OUR STORY PAGE
   ================================================== */

.story-page {
  background: #f5f2ec;
  color: var(--color-text);
}

/* ==================================================
   STORY HERO
   ================================================== */

.story-hero {
  position: relative;

  display: flex;
  align-items: flex-end;

  min-height: 90svh;
  padding-top: clamp(10rem, 16vw, 14rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);

  overflow: hidden;

  background:
    url("../assets/images/about/story-06.jpg")
    center / cover no-repeat;

  color: var(--color-text-light);
}

.story-hero__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 25, 28, 0.88) 0%,
      rgba(4, 25, 28, 0.58) 45%,
      rgba(4, 25, 28, 0.16) 100%
    );
}

.story-hero__container {
  position: relative;
  z-index: 1;
}

.story-hero__title {
  max-width: 950px;
  margin-bottom: 2rem;

  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
}

.story-hero__title em {
  color: var(--color-accent);
  font-weight: 400;
}

.story-hero__intro {
  max-width: 670px;
  margin: 0;

  color: rgba(245, 243, 238, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

/* ==================================================
   STORY INTRO
   ================================================== */

.story-intro {
  background: #f5f2ec;
}

.story-intro__container {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.story-intro__label {
  padding-top: 0.6rem;
}

.story-intro__content {
  max-width: 850px;
}

.story-intro__content h2 {
  margin-bottom: 2.5rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.story-intro__content p {
  max-width: 680px;
  margin-bottom: 1.4rem;

  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  line-height: 1.9;
}

/* ==================================================
   STORY PEOPLE
   ================================================== */

.story-people {
  background: #f5f2ec;
}

.story-people__container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.story-people__content {
  max-width: 620px;
}

.story-people__content h2 {
  margin-bottom: 2rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.story-people__content p {
  margin-bottom: 1.4rem;

  color: rgba(17, 17, 17, 0.7);
  line-height: 1.9;
}

.story-people__image {
  height: clamp(480px, 55vw, 720px);
  overflow: hidden;

  border-radius: 18px;
}

.story-people__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================================================
   FULL-WIDTH STORY IMAGE
   ================================================== */

.story-image {
  width: 100%;
  height: clamp(420px, 68vw, 820px);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================
   STORY RIVER
   ================================================== */

.story-river {
  background: var(--color-surface);
  color: var(--color-text-light);
}

.story-river__container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.story-river__image {
  min-height: 620px;
  overflow: hidden;
  border-radius: 18px;
}

.story-river__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-river__content h2 {
  margin-bottom: 2rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.story-river__content p {
  margin-bottom: 1.4rem;

  color: rgba(245, 243, 238, 0.7);
  line-height: 1.9;
}

.story-quote {
  padding-block: clamp(6rem, 10vw, 9rem);
  background: #f5f2ec;
  text-align: center;
}

.story-quote__container {
  display: flex;
  justify-content: center;
}

.story-quote blockquote {
  position: relative;

  max-width: 980px;
  margin: 0;

  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.story-quote blockquote::before {
  content: "";
  display: block;

  width: 110px;
  height: 1px;
  margin: 0 auto 3rem;

  background: rgba(154, 124, 85, 0.65);
}

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

@media (max-width: 900px) {
  .story-hero {
    min-height: 78svh;
    background-position: 58% center;
  }

  .story-intro__container,
  .story-river__container {
    grid-template-columns: 1fr;
  }

  .story-river__image {
    min-height: 480px;
  }
}

@media (max-width: 600px) {
  .story-hero {
    min-height: 72svh;
    padding-top: 9rem;
    padding-bottom: 4rem;
  }

  .story-hero__title {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }

  .story-image {
    height: 420px;
  }

  .story-river__image {
    min-height: 380px;
  }
}
@media (max-width: 900px) {
  .story-people__container {
    grid-template-columns: 1fr;
  }

  .story-people__image {
    height: 480px;
  }
}

@media (max-width: 600px) {
  .story-people__image {
    height: 380px;
  }
}

/* ==================================================
   STORY VALUES
   ================================================== */

.story-values {
  background: #f5f2ec;
}

.story-values__header {
  max-width: 720px;
  margin-bottom: 5rem;
}

.story-values__header h2 {
  margin-top: 1rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
}

.story-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
}

.story-value {
  padding: 2.8rem;

  background: white;

  border: 1px solid rgba(17,17,17,.08);
  border-radius: 20px;

  transition: .35s ease;
}

.story-value:hover{
  transform: translateY(-8px);

  border-color: var(--color-accent);

  box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.story-value span{
  display:block;

  margin-bottom:1.5rem;

  font-family:var(--font-heading);
  font-size:3rem;

  color:var(--color-accent);
}

.story-value h3{
  margin-bottom:1rem;

  font-size:1.5rem;
}

.story-value p{
  line-height:1.9;

  color:rgba(17,17,17,.72);
}

@media (max-width:950px){

.story-values__grid{
    grid-template-columns:1fr;
}

}
/* ==================================================
   STORY FINAL CTA
   ================================================== */

.story-cta {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 72svh;
  padding-block: clamp(5rem, 9vw, 8rem);

  overflow: hidden;

background:
  linear-gradient(
    rgba(4, 25, 28, 0.93),
    rgba(4, 25, 28, 0.96)
  ),
  url("../assets/images/about/story-06.jpg")
    center / cover no-repeat;

  color: var(--color-text-light);
  text-align: center;
}

.story-cta__container {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 920px;
}

.story-cta__ornament {
  display: block;

  width: 70px;
  height: 1px;

  margin: 0 auto 2rem;

  background: var(--color-accent);
  opacity: 0.7;
}

.story-cta .section-eyebrow {
  margin-bottom: 1.5rem;
}

.story-cta h2 {
  max-width: 800px;
  margin-bottom: 1.75rem;

  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.story-cta__container > p:not(.section-eyebrow) {
  max-width: 640px;
  margin-bottom: 2.5rem;

  color: rgba(245, 243, 238, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
}

.story-cta .button {
  min-height: 54px;
  padding-inline: 2.2rem;
}

@media (max-width: 600px) {
  .story-cta {
    min-height: 65svh;
    background-position: 60% center;
  }

  .story-cta h2 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }
}

/* ==================================================
   CONTACT PAGE
   ================================================== */

.contact-page {
  background: #f5f2ec;
  color: var(--color-text);
}


/* ==================================================
   CONTACT HERO
   ================================================== */

.contact-hero {
  position: relative;

  padding-top: clamp(11rem, 16vw, 15rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);

  background: var(--color-surface);
  color: var(--color-text-light);

  overflow: hidden;
}

/* brilho muito subtil no fundo */
.contact-hero::after {
  content: "";

  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: -250px;

  border-radius: 50%;

  background: rgba(154, 124, 85, 0.08);
  filter: blur(20px);

  pointer-events: none;
}

.contact-hero__container {
  position: relative;
  z-index: 1;
}

.contact-hero__title {
  max-width: 1050px;
  margin-bottom: 2rem;

  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
}

.contact-hero__title em {
  color: var(--color-accent);
  font-weight: 400;
}

.contact-hero__intro {
  max-width: 650px;
  margin: 0;

  color: rgba(245, 243, 238, 0.68);

  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.8;
}


/* ==================================================
   CONTACT MAIN
   ================================================== */

.contact-main {
  background: #f5f2ec;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: clamp(4rem, 8vw, 8rem);

  align-items: start;
}


/* ==================================================
   CONTACT INFORMATION
   ================================================== */

.contact-info {
  position: sticky;
  top: 8rem;
}

.contact-info h2 {
  max-width: 600px;
  margin-bottom: 2rem;

  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.contact-info__intro {
  max-width: 540px;
  margin-bottom: 3.5rem;

  color: rgba(17, 17, 17, 0.65);
  line-height: 1.8;
}

.contact-info__list {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-info__item {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 0.45rem;

  padding: 1.5rem 3rem 1.5rem 0;

  border-bottom: 1px solid rgba(17, 17, 17, 0.12);

  color: var(--color-text);
  text-decoration: none;

  transition:
    padding-left 250ms ease,
    border-color 250ms ease;
}

a.contact-info__item:hover {
  padding-left: 0.6rem;

  border-color: rgba(154, 124, 85, 0.65);
}

.contact-info__label {
  color: var(--color-accent);

  font-size: 0.7rem;
  font-weight: 500;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info__item strong {
  font-size: 1rem;
  font-weight: 500;
}

.contact-info__arrow {
  position: absolute;

  right: 0;
  top: 50%;

  color: var(--color-accent);
  font-size: 1.2rem;

  transform: translateY(-50%);

  transition: transform 250ms ease;
}

a.contact-info__item:hover .contact-info__arrow {
  transform: translate(4px, -4px);
}


/* ==================================================
   CONTACT FORM PANEL
   ================================================== */

.contact-form__wrapper {
  padding: clamp(2rem, 4vw, 4rem);

  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;

  background: #ffffff;

  box-shadow: 0 25px 70px rgba(7, 35, 38, 200);
}

.contact-form__wrapper > .section-eyebrow {
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form__field label {
  color: rgba(17, 17, 17, 0.65);

  font-size: 0.72rem;
  font-weight: 500;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;

  padding: 1rem 0;

  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;

  outline: none;

  background: transparent;
  color: var(--color-text);

  font: inherit;

  transition: border-color 250ms ease;
}

.contact-form__field textarea {
  min-height: 150px;

  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(17, 17, 17, 0.35);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--color-accent);
}

.contact-form__submit {
  align-self: flex-start;

  margin-top: 0.5rem;

  min-width: 180px;
}


/* ==================================================
   DIRECT CONTACT CTA
   ================================================== */

.contact-direct {
  position: relative;

  background: var(--color-surface);
  color: var(--color-text-light);

  text-align: center;

  overflow: hidden;
}

.contact-direct__container {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 900px;
}

.contact-direct h2 {
  max-width: 800px;

  margin-bottom: 1.5rem;

  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.contact-direct__container > p:not(.section-eyebrow) {
  max-width: 600px;

  margin-bottom: 2.5rem;

  color: rgba(245, 243, 238, 0.65);

  line-height: 1.8;
}

.contact-direct__actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1rem;
  flex-wrap: wrap;
}


/* Outline button specifically for dark background */

.contact-direct .button--outline {
  border: 1px solid rgba(245, 243, 238, 0.35);

  background: transparent;
  color: var(--color-text-light);
}

.contact-direct .button--outline:hover {
  border-color: var(--color-accent);

  background: rgba(154, 124, 85, 0.1);
}


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

@media (max-width: 950px) {

  .contact-main__grid {
    grid-template-columns: 1fr;

    gap: 4rem;
  }

  .contact-info {
    position: static;
  }

}


@media (max-width: 650px) {

  .contact-hero {
    padding-top: 9rem;
    padding-bottom: 4.5rem;
  }

  .contact-hero__title {
    font-size: clamp(3.5rem, 15vw, 5.5rem);
  }

  .contact-hero__title br {
    display: none;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__wrapper {
    padding: 1.75rem;
  }

  .contact-direct__actions {
    flex-direction: column;

    width: 100%;
  }

  .contact-direct__actions .button {
    width: 100%;
  }

}

/* ==================================================
   CONTACT SUCCESS MODAL
   ================================================== */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: grid;
  place-items: center;

  padding: 1.5rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 300ms ease,
    visibility 300ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(3, 18, 20, 0.82);
  backdrop-filter: blur(8px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;

  width: min(100%, 620px);

  padding: clamp(2.5rem, 5vw, 4.5rem);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;

  background: var(--color-surface);
  color: var(--color-text-light);

  text-align: center;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);

  transform: translateY(20px) scale(0.98);

  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal__panel {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(245, 243, 238, 0.25);
  border-radius: 50%;

  background: transparent;
  color: var(--color-text-light);

  font-size: 1.7rem;
  line-height: 1;

  transition:
    background-color 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

.contact-modal__close:hover {
  background: var(--color-accent);
  color: var(--color-surface);

  transform: rotate(4deg) scale(1.05);
}

.contact-modal h2 {
  margin-bottom: 1.5rem;

  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.contact-modal h2 span {
  color: var(--color-accent);
}

.contact-modal__panel > p:not(.section-eyebrow) {
  max-width: 470px;
  margin: 0 auto 2rem;

  color: rgba(245, 243, 238, 0.7);

  line-height: 1.8;
}

.contact-modal__button {
  margin-inline: auto;
}

.gallery-item {
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.gallery-item.is-hidden {
  display: none;
}


/* =========================
   COOKIE CONSENT
========================= */

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;

  width: min(420px, calc(100% - 48px));

  background: #f5f3ee;
  color: #111;

  border: 1px solid rgba(154, 124, 85, 0.25);
  border-radius: 4px;

  padding: 24px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.16);
}

.cookie-banner__eyebrow {
  display: block;
  margin-bottom: 10px;

  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #9a7c55;
}

.cookie-banner__text p {
  margin: 0;

  font-size: 0.9rem;
  line-height: 1.6;

  color: #444;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;

  margin-top: 20px;
}

.cookie-banner__button {
  border: 0;
  padding: 11px 20px;

  font: inherit;
  font-size: 0.8rem;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.cookie-banner__button--reject {
  background: transparent;
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.cookie-banner__button--accept {
  background: #9a7c55;
  color: #fff;
}

.cookie-banner__button--accept:hover {
  background: #b09168;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;

    width: auto;
    padding: 20px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__button {
    flex: 1;
  }
}

/* =========================
   FLOATING CONTACT MENU
========================= */

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.floating-contact__options {
  display: flex;
  flex-direction: column;
  gap: 12px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.floating-contact.is-open .floating-contact__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact__toggle,
.floating-contact__option {
  width: 54px;
  height: 54px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  cursor: pointer;

  font-family: inherit;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.floating-contact__toggle {
  background: #25D366;
  color: #fff;

  font-size: 2rem;
  line-height: 1;
}

.floating-contact__option {
  background: #f5f3ee;
  color: #9a7c55;

  border: 1px solid rgba(154, 124, 85, 0.25);

  font-size: 0.85rem;
}

.floating-contact__toggle:hover,
.floating-contact__option:hover {

   background: #1ebe5d;
  transform: scale(1.06);
}

.floating-contact.is-open .floating-contact__toggle {
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact__toggle,
  .floating-contact__option {
    width: 50px;
    height: 50px;
  }
}

.floating-contact__toggle svg,
.floating-contact__option svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* =========================
   FLOATING BOOK BUTTON
========================= */

.floating-book {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9998;

  padding: 17px 30px;

  background: #25D366;
  color: #fff;

  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;

  border-radius: 999px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.floating-book:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
}

@media (max-width: 600px) {
  .floating-book {
    left: 16px;
    bottom: 16px;

    padding: 12px 18px;
    font-size: 0.85rem;
  }
}