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

:root{
  --bg: #f7f2eb;
  --bg-alt: #f2e9df;
  --ink: #193C70;
  --muted: rgba(25,60,112,.78);
  --muted-soft: rgba(25,60,112,.62);
  --line-soft: rgba(25,60,112,.12);
  --gold: #c6a072;
  --gold-soft: #d8b58a;
  --surface: #FCF8F5;

  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 50px rgba(0,0,0,.10);
  --shadow-subtle: 0 10px 28px rgba(0,0,0,.08);

  --shell-width: 1080px;
}

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

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #FCF8F5;
  background-image: 
    radial-gradient(at 80% 0%, rgba(198,160,114,0.08) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(25,60,112,0.03) 0px, transparent 50%);
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
  transform: translateY(-160%);
  transition: transform .2s ease;
  z-index: 999;
}
.skip-link:focus{
  transform: translateY(0);
}

.shell{
  width: min(var(--shell-width), 100% - 32px);
  margin-inline: auto;
}
.shell--header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
}
.shell--hero{
  padding-top: 120px;
}
.shell--footer{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
}
.shell--footer .theme-toggle {
    border-color: rgba(255,255,255,0.2);
}

/* HEADER */
.site-header{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--shell-width), 92%);
  z-index: 100;
  padding: 8px 20px;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header.scrolled{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.brand{
  display:flex;
  align-items:center;
  gap: 16px;
}
.brand__mark{
  width: 32px;
  height: 32px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand__mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__text{
  display:flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0;
}
.brand__name{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  font-weight: 500;
  white-space: nowrap;
}
.site-header.scrolled .brand__name{
  color: var(--ink);
  text-shadow: none;
}

.nav{
  display:flex;
  align-items:center;
  gap: 20px;
}
.nav__link{
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  border: 1px solid transparent;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.nav__link:hover{
  color: #fff;
}
.site-header.scrolled .nav__link{
  color: var(--ink);
  text-shadow: none;
}
.nav__link--primary{
  background: #fff;
  color: var(--ink) !important;
  text-shadow: none;
  font-weight: 600;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: transparent;
}
.site-header.scrolled .nav__link--primary{
  background: var(--ink);
  color: #fff !important;
}

.nav__social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  color: rgba(255,255,255,0.9);
  transition: all .2s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.nav__social:hover{
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.site-header.scrolled .nav__social{
  color: var(--ink);
  text-shadow: none;
}
.site-header.scrolled .nav__social:hover{
  background: rgba(0,0,0,0.05);
}

/* SECTIONS BASE */
.section{
  padding-block: 40px;
}
.section--contato{
  padding-bottom: 64px;
}

.section-kicker{
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 11px;
  color: var(--muted-soft);
}
.section-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -.02em;
}
.section-description{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section-header{
  max-width: 520px;
  margin-bottom: 24px;
}

/* HERO */
.hero{
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display:flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero__media{
  position:fixed;
  inset: 0;
  z-index: 0;
  height: 100vh;
}
.hero__img{
  position:absolute;
  inset: 0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0;
  transition: opacity .6s ease;
  will-change: opacity;
  transform: scale(1.02);
}
.hero__img.is-visible{
  opacity: 1;
}
.hero__scrim{
  position:absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  pointer-events:none;
}
.hero__inner{
  position: relative;
  z-index: 2;
  padding-top: calc(72px + env(safe-area-inset-top));
  width: 100%;
}

.content-sheet{
  position: relative;
  z-index: 10;
  background: var(--surface);
  border-radius: 48px 48px 0 0;
  margin-top: -60px;
  padding-top: 60px;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.1);
}
.hero__copy{
  max-width: 100%;
  padding: 24px 20px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title{
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: -.04em;
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
}
.text-highlight {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1em;
}
.hero-title__accent{
  display: inline;
  color: rgba(255,255,255,0.95);
  font-weight: 300;
}
.hero-subtitle{
  margin: 0 auto 24px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  text-wrap: pretty;
}
.eyebrow{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.hero-cta{
  justify-content: center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding-inline: 24px;
  min-height: 48px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.btn--solid{
  background: #FCF8F5;
  color: #193C70;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn--solid:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  background: #fff;
}
.btn--ghost{
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover{
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn--full{
  width: 100%;
  justify-content: center;
}

.hero-highlights{
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(252,248,245,.88);
  border: 1px solid rgba(25,60,112,.08);
  display:flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
.hero-highlights__item dt{
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-highlights__item dd{
  margin: 0;
  color: var(--muted-soft);
}

.hero-grid__col--image{
  align-self: stretch;
}

.hero-photo{
  max-width: 360px;
  margin: 0 auto;
}
.hero-photo__frame{
  position: relative;
  border-radius: 28px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  background: #ddd;
}
.hero-photo__frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.hero-photo__overlay{
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.6), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.10), transparent 40%, rgba(0,0,0,.14));
  mix-blend-mode: soft-light;
  pointer-events:none;
}
.hero-photo__caption{
  padding-top: 10px;
  font-size: 12px;
  color: var(--muted-soft);
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.hero-photo__name{
  font-weight: 600;
  color: var(--ink);
}

/* Dark Themes */
body.dark-blue {
  --bg: #142a4f;
  --bg-alt: #0d1e3a;
  --ink: #FCF8F5;
  --muted: #e0d8cf;
  --muted-soft: #c2b5a8;
  --line-soft: rgba(255, 255, 255, 0.12);
  --gold: #D8B693;
  --gold-soft: #D8B693;
  --surface: #142a4f;
  background-image: none;
}
body.dark-brown {
  --bg: #42271E;
  --bg-alt: #362019;
  --ink: #FCF8F5;
  --muted: #e0d8cf;
  --muted-soft: #c2b5a8;
  --line-soft: rgba(255, 255, 255, 0.12);
  --gold: #D8B693;
  --gold-soft: #D8B693;
  --surface: #42271E;
  background-image: none;
}

/* Theme specifics */
body.dark-blue .text-highlight,
body.dark-brown .text-highlight {
  color: #D8B693;
}
body.dark-blue .section-kicker,
body.dark-brown .section-kicker {
  color: #D8B693;
}
body.dark-blue .hero-title,
body.dark-brown .hero-title {
  color: #fff; /* Keep hero title white on dark themes */
}

/* Navbar Button Contrast Fix */
body.dark-blue .nav__link--primary {
  color: #0e2240 !important;
}
body.dark-brown .nav__link--primary {
  color: #42271E !important;
}

/* Scrolled Navbar Button Fix for Dark Themes */
body.dark-blue .site-header.scrolled .nav__link--primary {
  background: var(--ink); /* Light background */
  color: #0e2240 !important; /* Dark text */
}
body.dark-brown .site-header.scrolled .nav__link--primary {
  background: var(--ink); /* Light background */
  color: #42271E !important; /* Dark text */
}

/* Feedback & Contact Cards Contrast Fix (White bg -> Dark text) */
body.dark-blue .feedback-card,
body.dark-blue .contact-card,
body.dark-blue .card {
  /* Ensure these specific cards stay white if desired, or adapt. 
     User implied text color matches theme (blue/brown), so likely kept white bg. 
     We reset variables locally to dark values. */
  background: #fff;
  --ink: #0e2240;
  --muted: rgba(14, 34, 64, 0.7);
  --bg-alt: #0e2240; /* For quote icon */
  color: var(--ink);
}
body.dark-brown .feedback-card,
body.dark-brown .contact-card,
body.dark-brown .card {
  background: #fff;
  --ink: #42271E;
  --muted: rgba(66, 39, 30, 0.7);
  --bg-alt: #42271E; /* For quote icon */
  color: var(--ink);
}

/* Fix specific elements inside these cards to use the local variables */
body.dark-blue .feedback-text,
body.dark-brown .feedback-text {
  color: var(--muted);
}
body.dark-blue .feedback-author cite,
body.dark-brown .feedback-author cite {
  color: var(--ink);
}
body.dark-blue .contact-card__actions .btn,
body.dark-brown .contact-card__actions .btn {
  background-color: var(--ink);
  color: #fff;
}
/* Revert transparency for generic cards if they were made transparent before */
body.dark-blue .card--sobre,
body.dark-brown .card--sobre {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(16px);
}

/* Ensure cards adapt to theme */
/* REMOVED previous transparent card rules to satisfy "blue font on blue theme" request */
/*
body.dark-blue .card,
body.dark-brown .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
*/

/* Text over images should retain original logic (usually white) */
body.dark-blue .hero__copy,
body.dark-brown .hero__copy {
  color: #fff;
}
body.dark-blue .treatment-card__content,
body.dark-brown .treatment-card__content {
  /* Treatment cards have images as bg, text is usually white */
  color: #fff;
}
/* Adjust buttons in dark mode */
body.dark-blue .btn--solid,
body.dark-brown .btn--solid {
  background: #D8B693;
  color: #42271E;
}
body.dark-blue .btn--solid:hover,
body.dark-brown .btn--solid:hover {
  background: #fff;
}
/* Theme toggle button style */
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.site-header.scrolled .theme-toggle {
  color: var(--ink);
  border-color: var(--line-soft);
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.1);
}
.site-header.scrolled .theme-toggle:hover {
  background: rgba(0,0,0,0.05);
}

/* CARDS */
.card{
  position: relative;
  border-radius: 32px;
  background: #fff;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.card--sobre{
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 40px;
}
.card__floating-icon {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  z-index: 10;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.card__body--sobre p{
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 90%;
}

.pill-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill-list__item{
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(25, 60, 112, 0.12);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(25, 60, 112, 0.03);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill-list__item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold, #c5a47e);
  opacity: 0.8;
}
.pill-list__item:hover{
  background: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 60, 112, 0.12);
}

/* TRATAMENTOS */
.grid-treatments{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.treatment-card{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform .4s ease, box-shadow .4s ease;
}
.treatment-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.treatment-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  transition: opacity .3s ease;
}
.treatment-card:hover .treatment-card__overlay{
  opacity: 0.9;
}
.treatment-card__content{
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.treatment-card__title{
  color: #fff;
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.treatment-card__text{
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}

/* CASOS CLÍNICOS */
.cases-scroll{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.cases-scroll::-webkit-scrollbar {
  height: 6px;
}
.cases-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}
.case-card{
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform .3s ease;
}
.case-card:hover{
  transform: translateY(-4px);
}
.case-card__image-container{
  height: 220px;
  background: #f0f0f0;
}
.case-card__image-container--full{
  height: 380px;
}
.case-card__image-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card__info{
  padding: 16px 20px;
}
.case-card__tag{
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.case-card__desc{
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

/* FEEDBACKS */
.feedbacks-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feedback-card{
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  position: relative;
}
.feedback-card::before{
  content: '“';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 60px;
  line-height: 1;
  color: var(--bg-alt);
  font-family: serif;
}
.feedback-text{
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
  font-style: italic;
}
.feedback-author cite{
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

/* CONTATO */
.card__header--contato{
  margin-bottom: 10px;
}
.card__body--contato{
  margin-top: 4px;
}
.contact-actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details{
  font-size: 13px;
  color: var(--muted);
}
.contact-details p{
  margin: 0 0 4px;
}

/* CONTATO REFINADO */
.section--contato{
  padding-bottom: 80px;
}
.contact-card{
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px){
  .contact-card{
    flex-direction: row;
    align-items: stretch;
  }
}
.contact-card__content{
  padding: 40px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px){
  .contact-card__content{
    padding: 60px;
  }
}
.contact-card__header{
  margin-bottom: 32px;
  max-width: 480px;
}
.contact-card__actions{
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
/* Modificação: Botão azul no card de contato */
.contact-card__actions .btn {
  background-color: var(--ink);
  color: #fff;
  width: 100%;
  max-width: 320px; /* Limite de largura para não ficar gigante no desktop */
}
.contact-card__actions .btn:hover {
  background-color: var(--muted);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 60, 112, 0.25);
}

.contact-card__info{
  background: #F8F6F4;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(0,0,0,0.03);
}
@media (min-width: 768px){
  .contact-card__info{
    width: 320px;
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid rgba(0,0,0,0.03);
    padding: 60px 40px;
    justify-content: center;
  }
}
.info-label{
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.info-value{
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.btn--lg{
  padding: 16px 32px;
  font-size: 16px;
  min-width: 200px;
}

/* FOOTER */
.site-footer{
  padding: 40px 0;
  text-align: center;
  opacity: 0.6;
  font-size: 13px;
  /* Garante que o footer tenha a mesma cor de fundo para cobrir elementos fixos se necessário, 
     embora agora ele esteja dentro do content-sheet */
}

/* REVEAL ANIMAÇÕES */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (min-width: 720px){
  .section{
    padding-block: 56px;
  }
  .hero-highlights{
    flex-direction: row;
  }
  .hero-highlights__item{
    flex: 1 1 0;
  }
  .grid-treatments{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* VIDEO SECTION */
.section--video {
  padding-top: 0;
  padding-bottom: 40px;
}

.section--video .shell {
  display: flex;
  justify-content: center;
}

.video-container {
  border-radius: 24px;
  border: 4px solid #EFCDAB;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  line-height: 0;
  max-width: 100%;
  width: fit-content; /* Adapta à largura do vídeo (bom para vertical) */
}

.video-loop {
  display: block;
  max-width: 100%;
  max-height: 600px; /* Limita altura para não ocupar tela toda se for vertical */
  width: auto;
  height: auto;
  object-fit: cover;
}
