/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean-deep:   #00041b;
  --ocean-mid:    #002a4e;
  --ocean-teal:   #054870;
  --ocean-bright: #0f9fc7;
  --ocean-glow:   #70e1df;
  --ocean-shine:  #a8f0ee;

  --card-dark-bg:   #050e1f;
  --card-dark-btn:  rgba(112, 225, 223, 0.12);
  --card-light-bg:  #0b4a6f;
  --card-light-btn: rgba(0, 0, 0, 0.25);

  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.68);

  --content-max: 560px;
  --radius-card:  20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ocean-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   OCEAN BACKGROUND EFFECT (from the book site — full screen)
   ============================================================ */
.ocean-bg-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 16%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.82) 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 16%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.82) 76%, transparent 100%);
  opacity: .82;
}

.ocean-bg-effect::before,
.ocean-bg-effect::after {
  content: "";
  inset: 0;
  position: absolute;
}

.ocean-bg-effect::before {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(25, 158, 205, .34) 0%, rgba(7, 84, 133, .22) 35%, rgba(0, 4, 27, 0) 72%),
    radial-gradient(circle at 18% 68%, rgba(112, 225, 223, .16), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(42, 179, 255, .15), transparent 34%);
  filter: blur(18px);
  opacity: .72;
}

.ocean-bg-effect::after {
  animation: ocean-depth-glow 24s ease-in-out infinite;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(0, 164, 255, .26), transparent 48%),
    radial-gradient(ellipse at 50% 8%, rgba(112, 225, 223, .12), transparent 35%);
  mix-blend-mode: screen;
  opacity: .52;
  transform: scale(1.05);
}

.ocean-bubbles {
  animation: ocean-bubbles 20s linear infinite;
  border-radius: 50%;
  box-shadow:
    8vw 82vh rgba(164, 244, 255, .28),
    18vw 72vh rgba(164, 244, 255, .18),
    31vw 90vh rgba(164, 244, 255, .24),
    44vw 76vh rgba(164, 244, 255, .16),
    59vw 86vh rgba(164, 244, 255, .25),
    73vw 70vh rgba(164, 244, 255, .18),
    88vw 88vh rgba(164, 244, 255, .22);
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}

.ocean-bubbles-2 {
  animation-delay: -8s;
  animation-duration: 26s;
  box-shadow:
    13vw 92vh rgba(112, 225, 223, .2),
    27vw 78vh rgba(112, 225, 223, .26),
    39vw 96vh rgba(112, 225, 223, .18),
    64vw 74vh rgba(112, 225, 223, .24),
    81vw 91vh rgba(112, 225, 223, .2);
  height: 3px;
  width: 3px;
}

.ocean-bubbles-3 {
  animation-delay: -14s;
  animation-duration: 32s;
  box-shadow:
    6vw 74vh rgba(255, 255, 255, .14),
    21vw 91vh rgba(255, 255, 255, .2),
    52vw 79vh rgba(255, 255, 255, .15),
    69vw 94vh rgba(255, 255, 255, .18),
    95vw 80vh rgba(255, 255, 255, .16);
  height: 7px;
  width: 7px;
}

@keyframes ocean-bubbles {
  from { transform: translate3d(0, 16vh, 0); }
  to   { transform: translate3d(0, -92vh, 0); }
}

@keyframes ocean-depth-glow {
  0%, 100% { opacity: .42; transform: translate3d(-1%, 0, 0) scale(1.04); }
  50%       { opacity: .62; transform: translate3d(1%, 12px, 0) scale(1.08); }
}

/* ============================================================
   HERO — full width, transparent PNG floats over ocean bg
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(340px, 56vh, 500px);   /* baseado em vh, não vw */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* preenche, colado no topo — sem letterbox */
  object-position: center top;
  display: block;
}


.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.4rem;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,4,27,0.9), 0 1px 3px rgba(0,4,27,0.85);
}

.hero__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 1.2rem;
}

/* ---- HERO SOCIAL ICONS ---- */
.hero__socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}

.hero__soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(112, 225, 223, 0.45);
  background: rgba(0, 4, 27, 0.45);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s;
}
.hero__soc:hover {
  background: var(--ocean-teal);
  border-color: var(--ocean-glow);
  color: #fff;
  transform: translateY(-3px);
}
.hero__name-first {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__name-last {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 5.5vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ocean-glow);
  line-height: 1.1;
}

.hero__title {
  font-size: clamp(0.65rem, 2.2vw, 0.82rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.3rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ocean-teal);
  border: 1px solid var(--ocean-glow);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-pill:hover { background: var(--ocean-glow); color: var(--ocean-deep); transform: translateY(-2px); }
.btn-pill__icon { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================================
   CARDS WRAPPER — full-width bg, max-width on content
   ============================================================ */
.cards-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cards {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ---- STANDARD CARD ---- */
.card {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }

.card--dark  { background: var(--card-dark-bg); }
.card--light { background: var(--card-light-bg); }

.card__text {
  flex: 0 0 56%;
  max-width: 56%;
  padding: 1.5rem 1rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  position: relative;
  z-index: 2;
}

.card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.card__sub {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean-glow);
  font-weight: 500;
}

.card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  background: var(--card-dark-btn);
  border: 1px solid rgba(112, 225, 223, 0.28);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.card--light .card__btn { background: var(--card-light-btn); }
.card:hover .card__btn {
  background: var(--ocean-glow);
  color: var(--ocean-deep);
  border-color: var(--ocean-glow);
}
.card__btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.card__img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.card__img-fade { position: absolute; inset: 0; z-index: 1; }
.card__img-fade--dark {
  background: linear-gradient(to right, var(--card-dark-bg) 0%, rgba(5,14,31,0.55) 38%, rgba(5,14,31,0) 100%);
}
.card__img-fade--light {
  background: linear-gradient(to right, var(--card-light-bg) 0%, rgba(11,74,111,0.55) 38%, rgba(11,74,111,0) 100%);
}

/* ============================================================
   ★ BOOK CARD — special showcase banner
   ============================================================ */
.card--book {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 210px;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  background: var(--ocean-deep);
  border: 1px solid rgba(112, 225, 223, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card--book:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(112,225,223,0.18);
}

.card__book-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(7,84,133,0.8) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(0,60,100,0.6) 0%, transparent 50%),
    linear-gradient(135deg, #001428 0%, #002244 50%, #001020 100%);
  z-index: 0;
}

.card__book-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 30% 70%, rgba(112,225,223,0.15) 0%, transparent 60%);
  z-index: 1;
  animation: book-glow-pulse 4s ease-in-out infinite;
}
@keyframes book-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.card__book-cover {
  position: absolute;
  top: 0; left: 0;
  width: 100%;       /* cobre o card inteiro */
  height: 100%;
  z-index: 2;
  overflow: hidden;
}
.card__book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  filter: brightness(0.78) saturate(1.1);
}
.card__book-cover-overlay {
  position: absolute;
  inset: 0;
  /* escurece a direita onde o texto fica, livro à esquerda aparece limpo */
  background: linear-gradient(to right, rgba(0,10,28,0.05) 0%, rgba(0,10,28,0.25) 38%, rgba(0,10,28,0.88) 68%, rgba(0,10,28,0.97) 100%);
}

.card__book-content {
  position: relative;
  z-index: 4;
  margin-left: auto;
  width: 58%;
  padding: 1.5rem 1.4rem 1.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.card__book-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(112,225,223,0.15);
  border: 1px solid rgba(112,225,223,0.4);
  color: var(--ocean-shine);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  align-self: flex-start;
}

.card__book-title {
  font-family: var(--font-serif);
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.card__book-title em {
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ocean-glow);
}
.card__book-title span {
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  font-weight: 600;
  color: #fff;
}

.card__book-author {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.card__book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  background: var(--ocean-bright);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  align-self: flex-start;
  border: 1px solid var(--ocean-glow);
  transition: background 0.2s, box-shadow 0.2s;
}
.card--book:hover .card__book-btn {
  background: var(--ocean-glow);
  color: var(--ocean-deep);
  box-shadow: 0 0 16px rgba(112,225,223,0.5);
}

.card__book-photo {
  position: absolute;
  right: 0; top: 0;
  width: 36%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
}
.card__book-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.3;
  filter: blur(1px);
}
.card__book-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 0%, rgba(0,20,40,0.6) 60%, rgba(0,20,40,1) 100%);
}

/* ============================================================
   BIO SECTION — full-width bg, content centred
   ============================================================ */
.bio-wrap {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.bio {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 1.25rem 2rem;
  position: relative;
  text-align: center;
}
/* subtle glow removed — ocean bg handles atmosphere */

.bio__photo-col {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  align-self: center;
  border: 2px solid rgba(112, 225, 223, 0.35);
  box-shadow: 0 0 24px rgba(112, 225, 223, 0.12);
}
.bio__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.bio__content {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.bio__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.2rem;
  width: 100%;
}

.bio-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(112, 225, 223, 0.32);
  border-radius: 999px;
  background: rgba(112, 225, 223, 0.1);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.bio-action--primary {
  background: var(--ocean-bright);
  border-color: var(--ocean-glow);
}

.bio-action svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.bio-action:hover {
  background: var(--ocean-glow);
  border-color: var(--ocean-glow);
  color: var(--ocean-deep);
  transform: translateY(-2px);
}

/* ============================================================
   MODAL DE COMPRA DO LIVRO
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.book-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.book-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.book-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 4, 27, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.book-modal__panel {
  position: relative;
  width: min(100%, 440px);
  border: 1px solid rgba(112, 225, 223, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(112, 225, 223, 0.18), transparent 48%),
    linear-gradient(145deg, rgba(5, 14, 31, 0.98), rgba(0, 42, 78, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
  padding: 1.35rem;
}

.book-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.book-modal__close svg {
  width: 17px;
  height: 17px;
}

.book-modal__label {
  color: var(--ocean-glow);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  padding-right: 2.4rem;
}

.book-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.1rem;
  padding-right: 2.4rem;
}

.book-modal__title em {
  color: var(--ocean-glow);
  font-style: italic;
  font-weight: 400;
}

.book-modal__options {
  display: grid;
  gap: 0.8rem;
}

.book-option {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(112, 225, 223, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.book-option:hover,
.book-option:focus {
  background: rgba(112, 225, 223, 0.14);
  border-color: rgba(112, 225, 223, 0.55);
  outline: none;
  transform: translateY(-2px);
}

.book-option--primary {
  background: rgba(15, 159, 199, 0.22);
  border-color: rgba(112, 225, 223, 0.42);
}

.book-option__eyebrow {
  display: block;
  color: var(--ocean-glow);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.book-option__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.book-option__text {
  display: block;
  color: var(--text-secondary);
  font-size: 0.73rem;
  line-height: 1.5;
  margin-top: 0.35rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.social-icon svg { width: 17px; height: 17px; flex-shrink: 0; }
.social-icon:hover { color: var(--ocean-glow); }

/* ============================================================
   FOOTER — transparent, content centred
   ============================================================ */
.footer-wrap {
  position: relative;
  z-index: 1;
}

.footer-bar {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.footer-bar__copy {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.footer-bar__legal {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-bar__legal a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color 0.2s ease;
}

.footer-bar__legal a:hover,
.footer-bar__legal a:focus-visible {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   CARROSSEL DE NOTÍCIAS
   ============================================================ */
.press-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 0 2.5rem;
}

.press-label {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ocean-glow);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.press-outer {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  /* fade nas bordas */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.press-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  /* scroll controlado por JS — sem animation CSS */
}

/* esconde scrollbar nativa */
.press-outer::-webkit-scrollbar { display: none; }

.press-card {
  flex-shrink: 0;
  width: 210px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-dark-bg);
  border: 1px solid rgba(112,225,223,0.12);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
}
.press-card:hover {
  border-color: rgba(112,225,223,0.4);
  transform: translateY(-3px);
}

.press-card__img {
  width: 100%;
  height: 208px;
  overflow: hidden;
  flex-shrink: 0;
}
.press-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.press-card:hover .press-card__img img { transform: scale(1.05); }

.press-card__body {
  padding: 0.7rem 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.press-card__source {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean-glow);
}

.press-card__title {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   PÁGINA DE IMPRENSA
   ============================================================ */
.press-page {
  position: relative;
  z-index: 1;
  width: 100%;
}

.press-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.2rem 1.25rem 1.4rem;
}

.press-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ocean-glow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 1.8rem;
}

.press-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 10vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
}

.press-hero__subtitle {
  max-width: 540px;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem 3rem;
}

.news-year {
  margin-top: 1.4rem;
}

.news-year__title {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean-glow);
  margin-bottom: 0.85rem;
}

.news-year__title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(112, 225, 223, 0.22);
}

.news-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  text-decoration: none;
}

.news-item:hover .news-item__title {
  color: var(--ocean-glow);
}

.news-item__date {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-item__source {
  display: block;
  color: var(--ocean-glow);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.news-item__title {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.2s;
}

.news-item__arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(112, 225, 223, 0.28);
  color: var(--ocean-glow);
}

/* ============================================================
   RESPONSIVE — tablet / desktop (≥ 768px)
   ============================================================ */
@media (min-width: 768px) {
  .hero {
    min-height: clamp(480px, 62vh, 700px);  /* vh-based, flex-end mantido */
    align-items: flex-end;
  }

  .hero__content {
    max-width: 560px;
    padding: 2rem 2rem 3rem;
  }

  .hero__name-first { font-size: 2.8rem; }
  .hero__name-last  { font-size: 2.2rem; }

  .hero__soc { width: 52px; height: 52px; }
}

/* ============================================================
   RESPONSIVE — desktop largo (≥ 1100px)
   ============================================================ */
@media (min-width: 1100px) {
  /* cards em grade 2 colunas; book ocupa a largura toda */
  .cards {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .card--book { grid-column: 1 / -1; }

  .bio         { max-width: 900px; padding: 3.5rem 2rem; }
  .footer-bar  { max-width: 900px; }
}

/* ============================================================
   RESPONSIVE — small screens
   ============================================================ */
@media (max-width: 480px) {
  /* herda clamp(340px, 56vh, 500px) do base — sem override */

  .cards { padding: 1rem 0.85rem; gap: 0.9rem; }
  .card { min-height: 125px; }
  .card__text { padding: 1.1rem 0.8rem 1.1rem 1.1rem; flex: 0 0 58%; max-width: 58%; }
  .card__title { font-size: clamp(1.3rem, 8vw, 1.7rem); }

  .card--book { min-height: 175px; }
  .card__book-content { padding: 1.2rem 1rem 1.2rem 0.5rem; width: 62%; }
  .card__book-title em  { font-size: 1.3rem; }
  .card__book-title span { font-size: 1.1rem; }

  .bio {
    flex-direction: column;
    padding: 1.8rem 0.9rem;
    gap: 1.25rem;
  }
  .bio__photo-col { flex: 0 0 160px; width: 160px; height: 160px; align-self: center; }

  .news-item {
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  .news-item__date {
    grid-column: 1 / -1;
  }

  .footer-bar { justify-content: center; text-align: center; }
}

/* ============================================================
   CONTEÚDO LEGAL (Política de Privacidade / Termos de Uso)
   ============================================================ */
.press-page__legal-content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.5rem 1.25rem 4rem;
  text-align: left;
}

.press-page__legal-content h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  margin: 2.4rem 0 0.7rem;
}

.press-page__legal-content h2:first-child {
  margin-top: 0;
}

.press-page__legal-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.press-page__legal-content ul {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

.press-page__legal-content li {
  margin-bottom: 0.4rem;
}

.press-page__legal-content a {
  color: var(--ocean-glow);
  text-decoration: underline;
  text-decoration-color: rgba(112, 225, 223, 0.4);
  transition: color 0.2s ease;
}

.press-page__legal-content a:hover,
.press-page__legal-content a:focus-visible {
  color: var(--ocean-shine);
}

/* ============================================================
   BOTÕES DO CARROSSEL
   ============================================================ */
.press-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.85);
  border: 1px solid rgba(112, 225, 223, 0.4);
  color: var(--ocean-glow);
  display: none; /* Esconde no mobile */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.press-btn:hover {
  background: rgba(112, 225, 223, 0.15);
}
.press-btn svg {
  width: 20px;
  height: 20px;
}
.press-btn--prev { left: 10px; }
.press-btn--next { right: 10px; }
@media (min-width: 768px) {
  .press-btn {
    display: flex; /* Exibe apenas no desktop */
  }
  .press-btn--prev { left: 24px; }
  .press-btn--next { right: 24px; }
}
