*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes grain { 0%,100% { transform: translate(0,0); } 20% { transform: translate(-1px,1px); } 40% { transform: translate(1px,-1px); } 60% { transform: translate(-1px,-1px); } 80% { transform: translate(1px,1px); } }
.fade-up { animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-2 { animation: fadeUp 0.9s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-3 { animation: fadeUp 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-4 { animation: fadeUp 0.9s 0.45s cubic-bezier(0.22,1,0.36,1) both; }

/* Root containers */
.saboril-landing-root,
.vfsek-landing-root {
  background: #0c0a09;
  color: #f0e8d8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
.saboril-landing-root.saboril-landing-root--transparent,
.vfsek-landing-root.vfsek-landing-root--transparent {
  background: transparent;
}

/* Galeria */
.saboril-landing-root .gallery-item,
.vfsek-landing-root .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  background: #1a1714;
  cursor: pointer;
}
.saboril-landing-root .gallery-item::after,
.vfsek-landing-root .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.88) 0%, rgba(12,10,9,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.saboril-landing-root .gallery-item--has-labels:hover::after,
.vfsek-landing-root .gallery-item--has-labels:hover::after {
  opacity: 1;
}
.saboril-landing-root .gallery-item .stripe-bg,
.vfsek-landing-root .gallery-item .stripe-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(55deg, rgba(171, 136, 47,0.05) 0px, rgba(171, 136, 47,0.05) 1px, transparent 1px, transparent 22px);
}
.saboril-landing-root .gallery-item .cut-label,
.vfsek-landing-root .gallery-item .cut-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 22px 18px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.saboril-landing-root .gallery-item--has-labels:hover .cut-label,
.vfsek-landing-root .gallery-item--has-labels:hover .cut-label {
  transform: translateY(0);
  opacity: 1;
}
.saboril-landing-root .gallery-item:not(.gallery-item--has-labels),
.vfsek-landing-root .gallery-item:not(.gallery-item--has-labels) {
  cursor: pointer;
}
.saboril-landing-root .gallery-item .placeholder-icon,
.vfsek-landing-root .gallery-item .placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.saboril-landing-root .gallery-item img,
.vfsek-landing-root .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tipografia → Montserrat */
.saboril-landing-root,
.saboril-landing-root h1,
.saboril-landing-root h2,
.saboril-landing-root h3,
.saboril-landing-root h4,
.saboril-landing-root p,
.saboril-landing-root a,
.saboril-landing-root label,
.saboril-landing-root input,
.saboril-landing-root select,
.saboril-landing-root textarea,
.saboril-landing-root button,
.saboril-landing-root span,
.saboril-landing-root em,
.vfsek-landing-root,
.vfsek-landing-root h1,
.vfsek-landing-root h2,
.vfsek-landing-root h3,
.vfsek-landing-root h4,
.vfsek-landing-root p,
.vfsek-landing-root a,
.vfsek-landing-root label,
.vfsek-landing-root input,
.vfsek-landing-root select,
.vfsek-landing-root textarea,
.vfsek-landing-root button,
.vfsek-landing-root span,
.vfsek-landing-root em {
  font-family: 'Montserrat', sans-serif !important;
}

.saboril-landing-root h1,
.saboril-landing-root h2,
.saboril-landing-root h3,
.saboril-landing-root h4,
.vfsek-landing-root h1,
.vfsek-landing-root h2,
.vfsek-landing-root h3,
.vfsek-landing-root h4 {
  font-weight: 700;
}

.saboril-landing-root em,
.vfsek-landing-root em {
  font-style: italic;
  font-weight: 500;
  color: #AB882F !important;
}

/* Tamanhos — ligeiramente maiores */
.saboril-landing-root h1,
.vfsek-landing-root h1 {
  font-size: clamp(54px, 6.8vw, 98px) !important;
}
.saboril-landing-root .saboril-hero-title,
.vfsek-landing-root .saboril-hero-title {
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.08;
}
.saboril-landing-root h2,
.vfsek-landing-root h2 {
  font-size: clamp(36px, 4.5vw, 58px) !important;
}
.saboril-landing-root h3,
.vfsek-landing-root h3 {
  font-size: clamp(21px, 2.4vw, 26px) !important;
}
.saboril-landing-root .cut-label h3,
.vfsek-landing-root .cut-label h3 {
  font-size: 23px !important;
}
.saboril-landing-root .cut-label p,
.vfsek-landing-root .cut-label p {
  font-size: 14px !important;
  color: rgba(240, 232, 216, 0.75);
  margin: 0;
}

.saboril-landing-root a,
.vfsek-landing-root a {
  color: #AB882F;
  text-decoration: none;
}
.saboril-landing-root a:hover,
.vfsek-landing-root a:hover {
  color: #C9A85A;
}

body.elementor-template-canvas,
body.elementor-page .site-main,
body.elementor-page #content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Widget Hero — largura total no Elementor */
.elementor-widget-vfsek-hero,
.elementor-widget-vfsek-hero.elementor-element {
  width: 100% !important;
  max-width: 100% !important;
  --container-widget-width: 100% !important;
  --container-widget-flex-grow: 1 !important;
}
.elementor-widget-vfsek-hero .elementor-widget-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Hero section */
.saboril-landing-root .saboril-hero,
.vfsek-landing-root .saboril-hero {
  padding: 80px 48px;
  background: #0c0a09;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.saboril-landing-root .saboril-hero--transparent,
.vfsek-landing-root .saboril-hero--transparent {
  background: transparent;
}
.saboril-landing-root .saboril-hero-layout,
.vfsek-landing-root .saboril-hero-layout {
  display: grid;
  grid-template-columns: minmax(280px, var(--hero-text-col, 0.48fr)) minmax(0, var(--hero-media-col, 1.52fr));
  gap: 32px 40px;
  align-items: center;
  width: var(--hero-layout-width, 68%);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.saboril-landing-root .saboril-hero-logo,
.vfsek-landing-root .saboril-hero-logo {
  max-height: 88px;
  max-width: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 28px;
}
.saboril-landing-root .saboril-hero-content,
.vfsek-landing-root .saboril-hero-content {
  text-align: left;
  max-width: var(--hero-text-max-width, 520px);
  box-sizing: border-box;
}
.saboril-landing-root .saboril-hero-title,
.vfsek-landing-root .saboril-hero-title {
  margin-bottom: 20px;
  color: #f0e8d8;
}
.saboril-landing-root .saboril-hero-description,
.vfsek-landing-root .saboril-hero-description {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(240, 232, 216, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
}
.saboril-landing-root .saboril-hero-actions,
.vfsek-landing-root .saboril-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.saboril-landing-root .saboril-cta-button,
.vfsek-landing-root .saboril-cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.saboril-landing-root .saboril-cta-primary,
.vfsek-landing-root .saboril-cta-primary {
  background: #AB882F;
  color: #0c0a09;
}
.saboril-landing-root .saboril-cta-primary:hover,
.vfsek-landing-root .saboril-cta-primary:hover {
  background: #C9A85A;
  color: #0c0a09;
}
.saboril-landing-root .saboril-cta-secondary,
.vfsek-landing-root .saboril-cta-secondary {
  background: transparent;
  color: #AB882F;
  border: 1px solid #AB882F;
}
.saboril-landing-root .saboril-cta-secondary:hover,
.vfsek-landing-root .saboril-cta-secondary:hover {
  background: rgba(171, 136, 47, 0.1);
  color: #C9A85A;
  border-color: #C9A85A;
}

/* Scroll hint */
.saboril-landing-root .saboril-scroll-hint,
.vfsek-landing-root .saboril-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2s ease-in-out infinite;
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.saboril-landing-root .saboril-scroll-hint:hover,
.vfsek-landing-root .saboril-scroll-hint:hover {
  opacity: 0.85;
}
.saboril-landing-root .scroll-hint-text,
.vfsek-landing-root .scroll-hint-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.65);
  font-weight: 500;
}
.saboril-landing-root .scroll-hint-arrow,
.vfsek-landing-root .scroll-hint-arrow {
  color: rgba(240, 232, 216, 0.65);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Hero media */
.saboril-landing-root .saboril-hero-media,
.vfsek-landing-root .saboril-hero-media {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.saboril-landing-root .saboril-hero-media-frame,
.vfsek-landing-root .saboril-hero-media-frame {
  width: 100%;
  max-width: 720px;
  max-height: min(80vh, 900px);
  aspect-ratio: var(--hero-media-aspect, 4 / 5);
  height: var(--hero-media-height, auto);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(171, 136, 47, 0.12);
  position: relative;
}
.saboril-landing-root .saboril-hero-media-frame--beige-shadow,
.vfsek-landing-root .saboril-hero-media-frame--beige-shadow {
  box-shadow:
    0 20px 50px rgba(12, 10, 9, 0.4),
    0 0 0 1px rgba(171, 136, 47, 0.22),
    0 0 32px rgba(240, 232, 216, 0.14),
    0 0 64px rgba(201, 168, 90, 0.1),
    0 0 96px rgba(171, 136, 47, 0.06);
}
.saboril-landing-root .saboril-hero-image,
.vfsek-landing-root .saboril-hero-image,
.saboril-landing-root .saboril-hero-video,
.vfsek-landing-root .saboril-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.saboril-landing-root .saboril-hero-background-video,
.vfsek-landing-root .saboril-hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none;
}
.saboril-landing-root .saboril-video-play-btn,
.vfsek-landing-root .saboril-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}
.saboril-landing-root .saboril-video-play-btn:hover,
.vfsek-landing-root .saboril-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video modal */
.saboril-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 6, 5, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}
.saboril-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  background: rgba(8, 6, 5, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.saboril-video-modal-content {
  position: relative;
  width: min(960px, 96vw);
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(171, 136, 47, 0.2);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.saboril-video-modal.is-open .saboril-video-modal-content {
  transform: scale(1);
  opacity: 1;
}
.saboril-video-modal-wrapper {
  position: relative;
  background: #000;
}
.saboril-video-modal iframe {
  width: 100%;
  height: 540px;
  display: block;
  border: none;
}
.saboril-video-modal video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  background: #000;
}
.saboril-video-close,
.saboril-gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 232, 216, 0.25);
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.65);
  color: #f0e8d8;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}
.saboril-video-modal.is-open .saboril-video-close,
.saboril-gallery-modal.is-open .saboril-gallery-close {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}
.saboril-video-close:hover,
.saboril-gallery-close:hover {
  background: rgba(171, 136, 47, 0.35);
  border-color: rgba(171, 136, 47, 0.5);
}

/* Gallery lightbox */
.saboril-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(8, 6, 5, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}
.saboril-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  background: rgba(8, 6, 5, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.saboril-gallery-modal-content {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(171, 136, 47, 0.2);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.saboril-gallery-modal.is-open .saboril-gallery-modal-content {
  transform: scale(1);
  opacity: 1;
}
.saboril-gallery-modal img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  background: #0c0a09;
  position: relative;
  z-index: 1;
}
.saboril-gallery-modal-caption {
  padding: 16px 20px;
  background: #0c0a09;
  color: #f0e8d8;
  font-size: 15px;
  line-height: 1.5;
}
.saboril-gallery-modal-caption h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #f0e8d8;
}
.saboril-gallery-modal-caption p {
  color: rgba(240, 232, 216, 0.7);
  margin: 0;
}

/* Section styles */
.saboril-landing-root .saboril-section,
.vfsek-landing-root .saboril-section {
  padding: 80px 48px;
}
.saboril-landing-root .saboril-section-title,
.vfsek-landing-root .saboril-section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #f0e8d8;
}

/* Gallery */
.saboril-landing-root .saboril-gallery,
.vfsek-landing-root .saboril-gallery {
  background: #f0e8d8;
}
.saboril-landing-root .saboril-gallery .saboril-section-title,
.vfsek-landing-root .saboril-gallery .saboril-section-title {
  color: #0c0a09 !important;
}
.saboril-landing-root .gallery-grid,
.vfsek-landing-root .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.saboril-landing-root .gallery-cta,
.vfsek-landing-root .gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* Gallery no labels (legacy) */
.saboril-landing-root .saboril-gallery--no-labels .gallery-item,
.vfsek-landing-root .saboril-gallery--no-labels .gallery-item {
  cursor: default;
}
.saboril-landing-root .saboril-gallery--no-labels .gallery-item::after,
.vfsek-landing-root .saboril-gallery--no-labels .gallery-item::after {
  display: none;
}
.saboril-landing-root .saboril-gallery--no-labels .cut-label,
.vfsek-landing-root .saboril-gallery--no-labels .cut-label {
  display: none;
}

/* Contact section */
.saboril-landing-root .saboril-contact,
.vfsek-landing-root .saboril-contact {
  background: #0c0a09;
  max-width: 1400px;
  margin: 0 auto;
}
.saboril-landing-root .contact-eyebrow,
.vfsek-landing-root .contact-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #AB882F;
  font-weight: 500;
  margin-bottom: 16px;
}
.saboril-landing-root .contact-main-title,
.vfsek-landing-root .contact-main-title {
  font-size: clamp(36px, 4.5vw, 52px) !important;
  color: #f0e8d8;
  margin-bottom: 20px;
  line-height: 1.2;
}
.saboril-landing-root .contact-description,
.vfsek-landing-root .contact-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240, 232, 216, 0.65);
  max-width: 680px;
  margin-bottom: 48px;
}
.saboril-landing-root .contact-info-grid,
.vfsek-landing-root .contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.saboril-landing-root .contact-info-item,
.vfsek-landing-root .contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 200px;
  max-width: 320px;
}
.saboril-landing-root .contact-info-label,
.vfsek-landing-root .contact-info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AB882F;
  font-weight: 500;
}
.saboril-landing-root .contact-info-value,
.vfsek-landing-root .contact-info-value {
  font-size: 16px;
  line-height: 1.6;
  color: #f0e8d8;
  font-weight: 300;
}
.saboril-landing-root .contact-info-value a,
.vfsek-landing-root .contact-info-value a {
  color: #f0e8d8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.saboril-landing-root .contact-info-item a.contact-info-value:hover,
.vfsek-landing-root .contact-info-item a.contact-info-value:hover {
  color: #AB882F;
}

/* Footer */
.saboril-landing-root .saboril-footer,
.vfsek-landing-root .saboril-footer {
  background: #0c0a09;
  padding: 32px 48px;
  border-top: 1px solid rgba(171, 136, 47, 0.15);
}
.saboril-landing-root .footer-content,
.vfsek-landing-root .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.saboril-landing-root .footer-links,
.vfsek-landing-root .footer-links {
  display: flex;
  gap: 24px;
}
.saboril-landing-root .footer-links a,
.vfsek-landing-root .footer-links a {
  font-size: 14px;
  color: rgba(240, 232, 216, 0.65);
  transition: color 0.3s ease;
}
.saboril-landing-root .footer-links a:hover,
.vfsek-landing-root .footer-links a:hover {
  color: #AB882F;
}

/* Large screens — evita vídeo desproporcional em monitores ultrawide/4K */
@media (min-width: 1600px) {
  .saboril-landing-root .saboril-hero-layout,
  .vfsek-landing-root .saboril-hero-layout {
    max-width: 1320px;
  }
  .saboril-landing-root .saboril-hero-media-frame,
  .vfsek-landing-root .saboril-hero-media-frame {
    max-width: 680px;
    max-height: min(75vh, 850px);
  }
}

@media (min-width: 2200px) {
  .saboril-landing-root .saboril-hero-layout,
  .vfsek-landing-root .saboril-hero-layout {
    max-width: 1280px;
  }
  .saboril-landing-root .saboril-hero-media-frame,
  .vfsek-landing-root .saboril-hero-media-frame {
    max-width: 640px;
    max-height: min(72vh, 800px);
  }
}

/* Tablet e mobile — largura total e layout em coluna */
@media (max-width: 1024px) {
  .elementor-widget-vfsek-hero,
  .elementor-widget-vfsek-hero.elementor-element,
  .elementor-widget-vfsek-hero .elementor-widget-container,
  .elementor-widget-vfsek-hero .vfsek-landing-root,
  .elementor-widget-vfsek-hero .saboril-hero {
    width: 100% !important;
    max-width: 100% !important;
    --container-widget-width: 100% !important;
  }

  .saboril-landing-root,
  .vfsek-landing-root {
    width: 100%;
    max-width: 100%;
  }
  .saboril-landing-root .saboril-hero,
  .vfsek-landing-root .saboril-hero {
    min-height: auto;
    padding: 48px 24px 64px;
    width: 100%;
  }
  .saboril-landing-root .saboril-hero-layout,
  .vfsek-landing-root .saboril-hero-layout,
  .elementor-widget-vfsek-hero .saboril-hero-layout {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: none !important;
  }
  .saboril-landing-root .saboril-hero-content,
  .vfsek-landing-root .saboril-hero-content {
    max-width: 100%;
    width: 100%;
  }
  .saboril-landing-root .saboril-hero-media,
  .vfsek-landing-root .saboril-hero-media {
    width: 100%;
    justify-content: center;
  }
  .saboril-landing-root .saboril-hero-media-frame,
  .vfsek-landing-root .saboril-hero-media-frame {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile — vídeo primeiro */
@media (max-width: 767px) {
  .saboril-landing-root .saboril-hero,
  .vfsek-landing-root .saboril-hero {
    min-height: auto;
    padding: 32px 16px 72px;
    align-items: stretch;
  }
  .saboril-landing-root .saboril-hero-layout,
  .vfsek-landing-root .saboril-hero-layout,
  .elementor-widget-vfsek-hero .saboril-hero-layout {
    gap: 28px;
  }
  .saboril-landing-root .saboril-hero-media,
  .vfsek-landing-root .saboril-hero-media {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  .saboril-landing-root .saboril-hero-content,
  .vfsek-landing-root .saboril-hero-content {
    order: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .saboril-landing-root .saboril-hero-media-frame,
  .vfsek-landing-root .saboril-hero-media-frame {
    width: 100%;
    max-width: 100%;
    max-height: min(62vh, 520px);
    margin: 0 auto;
  }
  .saboril-landing-root .saboril-scroll-hint,
  .vfsek-landing-root .saboril-scroll-hint {
    bottom: 20px;
  }
  .saboril-landing-root .saboril-hero-logo,
  .vfsek-landing-root .saboril-hero-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .saboril-landing-root .saboril-hero-description,
  .vfsek-landing-root .saboril-hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .saboril-landing-root .saboril-hero-actions,
  .vfsek-landing-root .saboril-hero-actions {
    justify-content: center;
  }
  .saboril-landing-root .saboril-section,
  .vfsek-landing-root .saboril-section {
    padding: 60px 20px;
  }
  .saboril-landing-root .gallery-grid,
  .vfsek-landing-root .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .saboril-landing-root .contact-info-grid,
  .vfsek-landing-root .contact-info-grid {
    flex-direction: column;
    gap: 32px;
  }
  .saboril-landing-root .contact-info-item,
  .vfsek-landing-root .contact-info-item {
    max-width: none;
  }
  .saboril-landing-root .footer-content,
  .vfsek-landing-root .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
