/* ============================================
   COLMEIA CARIOCA — Version 1.0 (Design Fiel ao Site Original)
   Identidade: Fundo Claro + Roxo (#523F51) + Amarelo/Dourado Colmeia (#CB9005 / #FFA800)
   Contém: Padrões Hexagonais (Colmeia), Ícones em Hexágono e Layout Original
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  /* Colors from Original WP Site */
  --v1-purple: #523F51;
  --v1-purple-dark: #3A2B39;
  --v1-yellow: #CB9005;
  --v1-yellow-light: #EBB01E;
  --v1-yellow-glow: rgba(203, 144, 5, 0.25);
  --v1-orange: #FF6B00;
  
  --v1-bg: #FFFFFF;
  --v1-bg-alt: #F9F7F4;
  --v1-card-bg: #FFFFFF;
  --v1-border: #E8E5DF;

  --v1-text-dark: #222222;
  --v1-text-muted: #555555;
  --v1-text-light: #888888;

  /* Clean Typography without 'I' font artifacts */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Source Sans 3', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--v1-bg);
  color: var(--v1-text-dark);
  line-height: 1.7;
}

a {
  color: var(--v1-yellow);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover { color: var(--v1-purple); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* ============================================
   PADRÃO HEXAGONAL (COLMEIA PATTERN)
   ============================================ */
.hex-pattern-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98' viewBox='0 0 56 98'%3E%3Cpath fill='%23523F51' d='M28 66L0 50V18L28 2l28 16v32L28 66zM28 2L2 17v30l26 15 26-15V17L28 2z'/%3E%3Cpath fill='%23CB9005' d='M28 98L0 82V50l28-16 28 16v32L28 98z'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hex-icon {
  width: 64px;
  height: 72px;
  background: var(--v1-purple);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v1-yellow);
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hex-icon.yellow {
  background: var(--v1-yellow);
  color: var(--v1-purple);
}
.hex-card:hover .hex-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--v1-yellow);
  color: var(--v1-purple);
}

/* --- Section Labels & Titles --- */
.v1-section-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-yellow);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.v1-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
  line-height: 1.15;
  margin-bottom: 20px;
}

.v1-subtitle {
  font-size: 1.1rem;
  color: var(--v1-text-muted);
  max-width: 700px;
  line-height: 1.8;
}

/* --- Buttons --- */
.v1-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.v1-btn-yellow {
  background: var(--v1-yellow);
  color: #FFFFFF;
  box-shadow: 0 4px 15px var(--v1-yellow-glow);
}
.v1-btn-yellow:hover {
  background: var(--v1-yellow-light);
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 8px 25px var(--v1-yellow-glow);
}

.v1-btn-purple {
  background: var(--v1-purple);
  color: #FFFFFF;
}
.v1-btn-purple:hover {
  background: var(--v1-purple-dark);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.v1-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}
.v1-btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ============================================
   HEADER V1
   ============================================ */
.v1-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 84px;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
}

.v1-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v1-logo img {
  height: 48px;
  width: auto;
}

.v1-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.v1-nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--v1-purple);
  transition: color 0.2s ease;
}
.v1-nav-link:hover {
  color: var(--v1-yellow);
}

/* ============================================
   HERO SECTION V1
   ============================================ */
.v1-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #FFF9EF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.v1-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.v1-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
  line-height: 1.1;
  margin-bottom: 20px;
}

.v1-hero p {
  font-size: 1.15rem;
  color: var(--v1-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.v1-hero-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}
.v1-hero-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ============================================
   A CASA DAS STARTUPS (HEX CARDS)
   ============================================ */
.v1-startups {
  background: var(--v1-bg-alt);
}

.v1-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.v1-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--v1-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.v1-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--v1-yellow);
  box-shadow: var(--shadow-md);
}

.v1-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
  margin-bottom: 10px;
}

.v1-feature-card p {
  font-size: 0.9rem;
  color: var(--v1-text-muted);
  line-height: 1.6;
}

/* ============================================
   UNIDADES (BOTAFOGO 1, BOTAFOGO 2, CENTRO)
   ============================================ */
.v1-unidades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.v1-unidade-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--v1-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.v1-unidade-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--v1-yellow);
}

.v1-unidade-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.v1-unidade-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.v1-unidade-card:hover .v1-unidade-img img {
  transform: scale(1.06);
}

.v1-unidade-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--v1-yellow);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.v1-unidade-content {
  padding: 24px;
}

.v1-unidade-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
  margin-bottom: 8px;
}

.v1-unidade-content p {
  font-size: 0.9rem;
  color: var(--v1-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   PACOTES PARA STARTUPS
   ============================================ */
.v1-pacotes {
  background: var(--v1-bg-alt);
}

.v1-pacotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.v1-pacote-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border-top: 5px solid var(--v1-yellow);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.v1-pacote-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.v1-pacote-card.highlight {
  border-top-color: var(--v1-purple);
  background: #FFFDF8;
}

.v1-pacote-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
  margin-bottom: 12px;
}

.v1-pacote-card p {
  font-size: 0.92rem;
  color: var(--v1-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ============================================
   DEPOIMENTOS (GOOGLE REVIEWS COM FOTO REAL)
   ============================================ */
.v1-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.v1-review-card {
  background: #FFFFFF;
  border: 1px solid var(--v1-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.v1-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.v1-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.v1-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--v1-yellow);
}

.v1-review-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--v1-purple);
}

.v1-review-info span {
  font-size: 0.78rem;
  color: var(--v1-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   BLOG
   ============================================ */
.v1-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.v1-blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--v1-border);
  box-shadow: var(--shadow-sm);
}
.v1-blog-img {
  height: 190px;
  border-bottom: 4px solid var(--v1-yellow);
}
.v1-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v1-blog-content {
  padding: 20px;
}
.v1-blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
  margin-bottom: 10px;
}
.v1-blog-content p {
  font-size: 0.88rem;
  color: var(--v1-text-muted);
}

/* ============================================
   FOOTER V1
   ============================================ */
.v1-footer {
  background: var(--v1-purple-dark);
  color: #FFFFFF;
  padding: 60px 0 30px;
}

.v1-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.v1-footer p {
  font-size: 0.9rem;
  color: #D1C5D0;
  margin-top: 12px;
}

.v1-footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-yellow);
  margin-bottom: 16px;
}

.v1-footer a {
  color: #D1C5D0;
  font-size: 0.9rem;
}
.v1-footer a:hover {
  color: var(--v1-yellow);
}

.v1-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #A89AA7;
}

/* Layout Grids */
.v1-treinamento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.v1-fiscal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.v1-contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Mobile Menu Toggle (V1) */
.v1-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1005;
}
.v1-menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--v1-purple);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.v1-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.v1-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.v1-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay (V1) */
.v1-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.v1-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
  .v1-features-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-unidades-grid { grid-template-columns: 1fr; }
  .v1-pacotes-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-blog-grid { grid-template-columns: 1fr; }
  .v1-hero-grid { grid-template-columns: 1fr; }
  .v1-footer-grid { grid-template-columns: repeat(2, 1fr); }
  
  .v1-treinamento-grid,
  .v1-fiscal-grid,
  .v1-contato-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v1-treinamento-grid img {
    height: auto;
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .v1-menu-toggle {
    display: flex;
  }
  .v1-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 100px 30px 40px;
    gap: 20px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .v1-nav.open {
    right: 0;
  }
  .v1-nav-link {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--v1-border);
    padding-bottom: 10px;
  }
  .v1-features-grid { grid-template-columns: 1fr; }
  .v1-pacotes-grid { grid-template-columns: 1fr; }
  .v1-reviews-grid { grid-template-columns: 1fr; }
  .v1-footer-grid { grid-template-columns: 1fr; }
  .v1-hero-img-box img { height: 420px; }
}

@media (max-width: 480px) {
  .v1-header-cta-btn {
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
  }
}


/* ============================================
   UNIT GALLERY MODAL STYLES (V1)
   ============================================ */
.unit-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(10, 10, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.unit-modal.active {
  opacity: 1;
  visibility: visible;
}

.unit-modal-card {
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.unit-modal-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--v1-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFDF8;
}

.unit-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--v1-purple);
}

.unit-modal-header p {
  font-size: 0.85rem;
  color: var(--v1-yellow);
  margin-top: 4px;
  font-weight: 600;
}

.unit-modal-close {
  font-size: 2rem;
  color: var(--v1-purple);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.unit-modal-close:hover { color: var(--v1-yellow); }

.unit-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.unit-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.unit-modal-photo {
  height: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--v1-border);
  position: relative;
}
.unit-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.unit-modal-photo:hover img {
  transform: scale(1.08);
}
.unit-modal-photo::after {
  content: "🔍 Expandir";
  position: absolute;
  inset: 0;
  background: rgba(203, 144, 5, 0.8);
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.unit-modal-photo:hover::after {
  opacity: 1;
}

.unit-modal-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--v1-border);
  background: #FFFDF8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .unit-modal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .unit-modal-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 9999px;
  color: #FFF;
  font-size: 1.7rem;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
  color: #FFF;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsapp-pulse 2s infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ============================================
   GALERIA COMPLETA V1 (FILTER TABS)
   ============================================ */
.v1-gallery {
  background: #FFFDF8;
}

.v1-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.v1-tab-btn {
  padding: 10px 24px;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1px solid var(--v1-border);
  color: var(--v1-text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.v1-tab-btn:hover,
.v1-tab-btn.active {
  background: var(--v1-yellow);
  color: #FFF;
  border-color: var(--v1-yellow);
  box-shadow: 0 4px 18px var(--v1-yellow-glow);
}

.v1-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.v1-gallery-card {
  height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--v1-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.v1-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.v1-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.v1-gallery-card:hover img {
  transform: scale(1.08);
}
.v1-gallery-card-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(82, 63, 81, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.v1-gallery-card:hover .v1-gallery-card-caption {
  opacity: 1;
}
.v1-gallery-card-caption span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--v1-yellow-light);
}
