/* ================================================
   PETIT BLEU — Stylesheet
   Director · ASTherma · Business Blooming
   ================================================ */

/* ===== @FONT-FACE ===== */

/* Director */
@font-face {
  font-family: 'Director';
  src: url('../fonts/Director-Light.otf') format('opentype'),
       url('../fonts/Director-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Director';
  src: url('../fonts/Director-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Director';
  src: url('../fonts/Director-bold.otf') format('opentype'),
       url('../fonts/Director-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ASTherma Condensed */
@font-face {
  font-family: 'ASTherma';
  src: url('../fonts/ASTherma-LightCondensed.otf') format('opentype'),
       url('../fonts/ASTherma-LightCondensed.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'ASTherma';
  src: url('../fonts/ASTherma-MediumCondensed.otf') format('opentype'),
       url('../fonts/ASTherma-MediumCondensed.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'ASTherma';
  src: url('../fonts/ASTherma-BoldCondensed.otf') format('opentype'),
       url('../fonts/ASTherma-BoldCondensed.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'ASTherma';
  src: url('../fonts/ASTherma-BlackCondensed.otf') format('opentype'),
       url('../fonts/ASTherma-BlackCondensed.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

/* Business Blooming */
@font-face {
  font-family: 'BusinessBlooming';
  src: url('../fonts/BusinessBlooming.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* ===== VARIABLES ===== */
:root {
  --cream:       #F7F4EF;
  --white:       #FFFFFF;
  --black:       #0D0D0D;
  --blue:        #1632CC;
  --gray:        #8A8680;
  --gray-light:  #E4E0D8;

  --font-body:    'Director', sans-serif;
  --font-display: 'ASTherma', sans-serif;
  --font-accent:  'BusinessBlooming', cursive;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 64px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  transition:
    background 0.5s var(--ease),
    padding 0.4s var(--ease);
}

#header.scrolled {
  background: rgba(247, 244, 239, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 64px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}

#header.scrolled .logo-img {
  filter: brightness(0);
}

nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s;
}

nav a:hover {
  color: var(--white);
}

#header.scrolled nav a {
  color: var(--gray);
}

#header.scrolled nav a:hover {
  color: var(--black);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 9px 22px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
  border-color: var(--white);
}

#header.scrolled .nav-cta {
  border-color: rgba(0, 0, 0, 0.3);
}

#header.scrolled .nav-cta:hover {
  background: var(--black);
  color: var(--white) !important;
  border-color: var(--black);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s, transform 0.35s var(--ease);
  transform-origin: center;
}

#header.scrolled .burger span {
  background: var(--black);
}

.burger.open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  font-variant-ligatures: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.32s; }

.mobile-link:hover {
  color: var(--gray);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--blue);
}

.hero-img {
  object-position: center center;
  filter: sepia(0.22) saturate(1.35) brightness(1.06);
}

/* Grain film sur le hero */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.25) 0%,
    rgba(13, 13, 13, 0.15) 40%,
    rgba(13, 13, 13, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 88px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

/* Titre hero : ASTherma Black — UNIQUEMENT ici */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 15vw, 200px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tagline : Business Blooming script */
.hero-sub {
  margin-top: 20px;
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
}

.hero-address {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-descriptor {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  right: 64px;
  bottom: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ===== SECTION COMMONS ===== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}

/* Titres de section : Business Blooming */
.section-title {
  font-family: var(--font-accent);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.section-header {
  margin-bottom: 88px;
}

.section-header.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ===== MENU SECTION ===== */
#menu {
  padding: 128px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 56px;
}

.category-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.item-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
}

.item-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Photos menu */
.menu-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.menu-photo-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.menu-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.menu-photo-wrap:hover img {
  transform: scale(1.04);
}

.menu-photo-label {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

.menu-note {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--gray);
  border-top: 1px solid var(--gray-light);
  padding-top: 36px;
}

/* ===== DOS MOMENTOS ===== */
.momentos {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: var(--white);
  padding: 96px 64px;
  max-width: 100%;
  margin: 0;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--gray-light);
}

.momento-divider {
  background: var(--gray-light);
  align-self: stretch;
}

.momento-time {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 20px;
}

.momento-title {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--black);
}

.momento p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
}

/* ===== EL LUGAR ===== */
#el-lugar {
  background: var(--white);
  overflow: hidden;
}

.lugar-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 800px;
}

.lugar-image {
  position: relative;
  min-height: 520px;
  background: var(--blue);
}

.lugar-text {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lugar-text .section-title {
  margin-bottom: 40px;
}

.lugar-text p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 22px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  transition: background 0.3s;
}

.btn:hover {
  background: var(--blue);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ===== GALERÍA ===== */
.galeria {
  background: var(--cream);
  padding: 0 64px 120px;
  overflow: hidden;
}

.galeria-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.galeria-item {
  overflow: hidden;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.galeria-item:hover img {
  transform: scale(1.03);
}

/* Aspect ratios légèrement différents — feel editorial */
.galeria-item--1 {
  aspect-ratio: 3 / 4;
}

.galeria-item--2 {
  aspect-ratio: 4 / 5;
  margin-top: 64px;
}

.galeria-item--3 {
  aspect-ratio: 3 / 4;
  margin-top: 32px;
}

/* ===== CONTACT ===== */
#contact {
  padding: 128px 0;
}

#contact .section-header {
  margin-bottom: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  border-top: 1px solid var(--gray-light);
  padding-top: 72px;
}

.contact-block h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.contact-block p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 14px;
}

.link-underline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.link-underline:hover {
  color: var(--black);
  border-color: var(--black);
}

/* ===== RESERVAS ===== */
#reservas {
  background: var(--blue);
  padding: 140px 64px;
  text-align: center;
}

.reservas-inner {
  max-width: 600px;
  margin: 0 auto;
}

#reservas .section-label {
  color: rgba(255, 255, 255, 0.45);
}

.reservas-title {
  font-family: var(--font-accent);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.reservas-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 36px 64px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.05em;
}

footer a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gray);
  transition: color 0.3s;
}

footer a:hover {
  color: var(--white);
}

/* ===== BOUTON VER LA CARTA ===== */
.menu-carta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-light);
  width: 100%;
}

.btn-carta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0;
  transition: opacity 0.3s;
}

.btn-carta:hover { opacity: 0.5; }

/* ===== MODAL CARTE ===== */
.carta-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.carta-modal.open {
  opacity: 1;
  pointer-events: all;
}

.carta-inner {
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 2px;
}

.carta-inner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.carta-close {
  position: fixed;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  z-index: 201;
  transition: color 0.3s;
}

.carta-close:hover { color: var(--white); }

/* ===== OCTOTABLE — déplace le bouton hors écran (display:none l'empêche de fonctionner) ===== */
.button-container {
  position: fixed !important;
  bottom: -200px !important;
  left: -200px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  #header,
  #header.scrolled { padding-left: 40px; padding-right: 40px; }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .lugar-text { padding: 72px 56px; }

  .momentos {
    padding: 80px 40px;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  /* Prevent any horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container { padding: 0 24px; }

  #header { padding: 22px 24px; }
  #header.scrolled { padding: 16px 24px; }

  nav { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero-content { padding: 0 24px 80px; }
  .hero-scroll { display: none; }
  .hero-title {
    font-size: clamp(56px, 18vw, 120px);
    white-space: normal;
    word-break: break-word;
  }

  /* Menu */
  #menu { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .menu-photos {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-photo-wrap {
    aspect-ratio: 4 / 3;
  }

  /* Momentos — stack vertically */
  .momentos {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 44px;
    max-width: 100%;
  }

  .momento-divider {
    display: none;
  }

  .momento-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* El Lugar */
  .lugar-inner { grid-template-columns: 1fr; }
  .lugar-image { min-height: 280px; }
  .lugar-text { padding: 52px 24px; }

  /* Galeria */
  .galeria {
    padding: 0 24px 80px;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .galeria-item--1 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    margin-top: 0;
  }

  .galeria-item--2 {
    aspect-ratio: 3 / 4;
    margin-top: 0;
  }

  .galeria-item--3 {
    aspect-ratio: 3 / 4;
    margin-top: 0;
  }

  /* Contact */
  #contact { padding: 72px 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
  }

  /* Reservas */
  #reservas {
    padding: 88px 24px;
    width: 100%;
  }

  .reservas-title {
    font-size: clamp(32px, 10vw, 52px);
  }

  /* Section titles */
  .section-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  /* Footer */
  footer { padding: 28px 24px; }
  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  /* Carta modal */
  .carta-inner {
    max-width: 95vw;
    max-height: 85vh;
  }
}
