/* CSS Custom Properties */
:root {
  --color-bg: #FFFFFF;
  --color-surface: #F0EAEA;
  --color-gold: #C24B61;
  --color-gold-light: #D8687D;
  --color-text: #1a1a1a;
  --color-muted: #555555;
  --color-glass-bg: rgba(255, 255, 255, 0.6);
  --color-glass-border: rgba(255, 255, 255, 0.4);
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --nav-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--nav-height);
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(194, 75, 97, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(194, 75, 97, 0.05), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utility */
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.section-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--color-gold);
  margin-bottom: 2rem;
  font-weight: 400;
}

.lead-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }

/* Grid Utility */
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

.align-center {
  align-items: center;
}

/* Glass Morphism Utility */
.glass-morphism {
  background: var(--color-glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* Custom Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(194, 75, 97, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Navbar */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 80px;
  width: 80px;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
}

.logo-white {
  opacity: 1;
}

.logo-color {
  opacity: 0;
}

.glass-nav.scrolled .logo-white {
  opacity: 0;
}

.glass-nav.scrolled .logo-color {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity var(--transition-smooth), color var(--transition-smooth);
  position: relative;
}

.glass-nav.scrolled .nav-link {
  color: #333333;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  opacity: 1;
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.glass-nav.scrolled .menu-toggle .bar {
  background-color: #333333;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links .nav-link {
    color: #333333;
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active .bar {
    background-color: #333333;
  }
  
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* for parallax */
  background-image: url('Imagens/hero-fachada.jpg.png');
  background-size: cover;
  background-position: center bottom;
  z-index: -2;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: -1;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  max-width: 800px;
  line-height: 1.1;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.5rem;
  opacity: 0;
}

.hero-detail {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 3rem;
  opacity: 0;
  letter-spacing: 1px;
}

/* Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #c24b61;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid #c24b61;
  transition: color var(--transition-smooth), background-color var(--transition-smooth);
  opacity: 0;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

.shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%) skewX(-15deg);
}

.btn-primary:hover .shimmer, .btn-submit:hover .shimmer {
  animation: shimmer 1.5s infinite;
}

.btn-primary span:not(.shimmer) {
  position: relative;
  z-index: 1;
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero-stats {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold-light);
  font-weight: 500;
}

.stat-item span {
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    justify-content: flex-start;
  }

  .hero-bg {
    background-position: 35% 85%;
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.15) 100%);
  }

  .hero-content {
    margin-top: 42vh;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-detail {
    margin-bottom: 2rem;
  }

  .hero-footer {
    position: relative;
    margin-top: auto;
    padding: 1.5rem 0;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .stat-divider {
    display: block;
    height: 35px;
    align-self: center;
  }

  .stat-item {
    align-items: center;
    text-align: center;
    flex: 1;
  }

  .stat-item strong {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .stat-item span {
    font-size: 0.6rem;
    letter-spacing: 0;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  color: var(--color-gold);
  animation: pulse 2s infinite ease-in-out;
  opacity: 0;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Benefícios */
.beneficios {
  position: relative;
}

.beneficios-grid-2x2 {
  display: flex;
  flex-direction: column;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .beneficios-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.ben-card {
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.ben-card:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .ben-card {
    margin-bottom: 0;
  }
}

.ben-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(194, 75, 97, 0.15);
}

.ben-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.ben-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ben-card:hover .ben-img img {
  transform: scale(1.05);
}

.ben-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ben-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.ben-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.ben-content p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Área de Lazer - Split Carousel */
.area-de-lazer {
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  height: 100%;
  width: 100%;
}

.carousel-left {
  width: 40%;
  height: 100%;
  background-color: var(--color-surface);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.carousel-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav-item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: var(--color-muted);
  cursor: pointer;
  transition: color var(--transition-smooth), transform var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-item.active {
  color: var(--color-text);
  opacity: 1;
  transform: translateX(10px);
}

.nav-num {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 500;
}

.carousel-progress-container {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
}

.carousel-progress {
  width: 100%;
  background-color: var(--color-gold);
  transition: height 0.6s cubic-bezier(0.87, 0, 0.13, 1), transform 0.6s cubic-bezier(0.87, 0, 0.13, 1);
  transform-origin: top;
}

.carousel-right {
  width: 60%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.2s;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
  clip-path: inset(0 0% 0 0);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
  transform: scale(1.1);
}

.carousel-slide.active img {
  transform: scale(1);
}

.lazer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}

.lazer-nav:hover {
  background: var(--color-gold);
}

.lazer-prev {
  left: 20px;
}

.lazer-next {
  right: 20px;
}

@media (max-width: 900px) {
  .area-de-lazer {
    height: auto;
    min-height: auto;
  }
  .carousel-container {
    flex-direction: column;
  }
  .carousel-left {
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
  }
  .carousel-right {
    width: 100%;
    height: 50vh;
  }
  .carousel-progress-container {
    display: none;
  }
  .carousel-nav {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
  }
  .nav-item {
    font-size: 0.95rem;
    gap: 0.4rem;
  }
  .nav-item.active {
    transform: translateX(0) translateY(-2px);
  }
  .nav-num {
    font-size: 0.8rem;
  }
}

/* Informações */
.informacoes {
  background-color: #0a0a0a;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  color: #fff;
}

.informacoes .section-title {
  color: #fff;
}

.informacoes .lead-text {
  color: #ddd !important;
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: #ccc;
}

.dif-item .icon {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.info-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.stacked-deck-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 520px;
  margin: 0 auto;
}

.sd-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  cursor: grab;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sd-card:active {
  cursor: grabbing;
}

.sd-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sutil flash de obturador — breve pulso branco delicado */
.shutter-flash {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 16px;
}

.shutter-flash.flash {
  animation: shutterPulse 0.35s ease-in-out forwards;
}

@keyframes shutterPulse {
  0%   { opacity: 0; }
  35%  { opacity: 0.35; }
  100% { opacity: 0; }
}
.sd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 150;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}

.sd-nav:hover {
  background: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

.sd-prev {
  left: -20px;
}

.sd-next {
  right: -20px;
}

@media (max-width: 480px) {
  .sd-prev { left: 10px; }
  .sd-next { right: 10px; }
}

.sd-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 100;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Lightbox */
.deck-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.deck-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.deck-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.deck-lightbox.active img {
  transform: scale(1);
}
.dl-close {
  position: absolute;
  top: 30px; right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s;
}
.dl-close:hover {
  transform: scale(1.1);
}

/* Contato */
.contato {
  position: relative;
}

.form-desc {
  margin-bottom: 2.5rem;
  color: var(--color-muted);
}

.glass-form {
  background: rgba(255, 255, 255, 0.4);
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-group input, 
.input-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem 0 0.5rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-smooth);
  appearance: none;
}

.input-group select {
  cursor: pointer;
}

select option {
  background-color: var(--color-surface);
  color: var(--color-text);
}

.input-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--color-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-group .select-label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: var(--color-gold);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: var(--color-gold);
}

.border-anim {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.4s ease;
}

.input-group input:focus ~ .border-anim,
.input-group select:focus ~ .border-anim {
  width: 100%;
}

.btn-submit {
  background-color: var(--color-gold);
  color: #fff;
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  transition: transform 0.2s;
}

.btn-submit:hover {
  transform: scale(1.02);
}

.form-success {
  display: none;
  padding: 1rem;
  text-align: center;
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 8px;
  margin-top: 1rem;
}

.mcmv-wrapper {
  display: flex;
  justify-content: center;
}

.mcmv-card {
  padding: 3rem 2rem;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mcmv-logo {
  max-height: 100px;
  object-fit: contain;
}

.mcmv-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .glass-form {
    padding: 2rem 1.5rem;
  }
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--color-surface);
}

.footer-divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 0 auto 2rem;
}

.footer p {
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
