/* CSS Principal - Landing Page Mahogany Tivoli */

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

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000000;
  color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   Typography & Themes
   ========================================================================== */
.destaque-completo {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #E2BB6E 0%, #CA8D1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destaque-completo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E2BB6E, #CA8D1E);
  border-radius: 4px;
}

.gold-text {
  color: #CA8D1E;
}

/* Seções Claras */
.secao-clara {
  background-color: #FFFFFF;
  color: #333333;
}

.secao-clara .section-title {
  color: #585858;
}

.section-title {
  font-family: 'Battambang', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.45rem, 6.5vw, 1.75rem);
  }
}

/* ==========================================================================
   Buttons (Degrade & Interactive Hover)
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #E2BB6E;
  color: #303030;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Battambang', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(226, 187, 110, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 187, 110, 0.4);
}

.btn-primary svg path {
  fill: #303030;
}

/* Degrade Button with Interactive Mouse Move */
.btn-degrade2 {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  background: radial-gradient(
    circle at var(--x, -100%) var(--y, -100%), 
    rgba(255, 255, 255, 0.4) 0%, 
    transparent 60%
  ), 
  linear-gradient(90deg, #E2BB6E, #CA8D1E);
  z-index: 1;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: #303030;
  padding: 16px 40px;
  border-radius: 9px;
  font-family: 'Battambang', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: color 0.3s ease;
}

.btn-degrade2 svg path {
  fill: #303030;
  transition: fill 0.3s ease;
}

.btn-degrade2:hover .btn-hero {
  color: #FFFFFF;
}

.btn-degrade2:hover svg path {
  fill: #FFFFFF;
}

/* Pulse animation (using scaling like in the original CSS) */
.btn-pulse {
  animation: pulse-animation 2.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pulse-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(5deg);
}

.whatsapp-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
}

/* Pulse effect for WhatsApp */
.whatsapp-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 1.8s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

/* ==========================================================================
   Header (Glassmorphism Sticky Navbar)
   ========================================================================== */
.glass-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-left: 22%;
  padding-right: 22%;
  transition: padding 0.3s ease, background 0.3s ease;
}

.header-inner {
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  transition: all 0.3s ease;
}

.logo-img {
  height: 27px;
  width: auto;
  transition: filter 0.3s ease;
}

/* Header button with gradient matching the other buttons */
.glass-container .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #E2BB6E, #CA8D1E);
  color: #303030;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Battambang', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(202, 141, 30, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-container .btn-primary:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  background: linear-gradient(90deg, #CA8D1E, #E2BB6E);
  box-shadow: 0 6px 20px rgba(202, 141, 30, 0.3);
}

.glass-container .btn-primary svg path {
  fill: #303030;
}

.glass-container .btn-primary:hover svg path {
  fill: #FFFFFF;
}

/* Menu Mode Light adaptation when scrolling over white sections */
.glass-container.menu-modo-claro .header-inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.glass-container.menu-modo-claro .logo-img {
  filter: brightness(0) invert(0.2);
}

.glass-container.menu-modo-claro .btn-primary {
  background-color: #303030;
  background: #303030;
  color: #E2BB6E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.glass-container.menu-modo-claro .btn-primary:hover {
  background-color: #505050;
  background: #505050;
  color: #FFFFFF;
}

.glass-container.menu-modo-claro .btn-primary svg path {
  fill: #E2BB6E;
}

.glass-container.menu-modo-claro .btn-primary:hover svg path {
  fill: #FFFFFF;
}

@media (max-width: 1200px) {
  .glass-container {
    padding-left: 10%;
    padding-right: 10%;
  }
}

@media (max-width: 991px) {
  .glass-container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 768px) {
  .glass-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-inner {
    margin-top: 15px;
    padding: 10px 15px;
  }
  .logo-img {
    height: 22px;
  }
  .glass-container .btn-primary {
    padding: 8px 14px;
    font-size: 0.8rem;
    gap: 6px;
  }
  .glass-container .btn-primary svg {
    width: 14px;
    height: 8px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  height: 100vh;
  min-height: 650px;
  position: relative;
  background-color: #000000;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 75%), url('assets/bg_hero.webp');
  background-position: center center, 85% center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  display: flex;
  align-items: center;
  padding-left: 22vw;
  padding-right: 0vw;
  padding-top: 100px;
  padding-bottom: 20px;
  z-index: 1;
}

.img-grande {
  display: none;
}

.hero-glow {
  position: absolute;
  top: -46%;
  right: 3%;
  width: 669px;
  height: 669px;
  border-radius: 100%;
  background-color: #FFC46B94;
  filter: blur(100px);
  pointer-events: none;
  z-index: 9;
}

.hero-content {
  width: 100%;
  max-width: 480px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 0;
  padding-left: 0;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1.05;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.4em;
  color: #FFFFFF;
  max-width: 450px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content .btn-degrade2 {
  align-self: flex-start;
}

@media (max-width: 1200px) {
  .hero-section {
    padding-left: 10vw;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-left: 5vw;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-image: none;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    padding-bottom: 40px;
  }
  
  .img-grande {
    display: block;
    width: 100%;
    margin-top: 70px; /* space for sticky header */
    overflow: hidden;
  }

  .img-grande img {
    width: 105%;
    max-width: none;
    height: auto;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .hero-glow {
    display: none;
  }

  .hero-content {
    margin-top: 20px;
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.5rem);
    line-height: 1.1;
    text-align: center;
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    max-width: 100%;
    text-align: center;
  }

  .hero-content .btn-degrade2 {
    width: 100%;
    align-self: stretch;
  }
}

/* ==========================================================================
   Marquee Scrolling Text
   ========================================================================== */
.marquee-container {
  background: linear-gradient(90deg, #E2BB6E 0%, #CA8D1E 100%);
  box-shadow: 0px 0px 19px 4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  z-index: 10;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee-slide 30s linear infinite;
  padding-left: 100%;
}

.marquee-content span {
  font-family: 'Battambang', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-right: 3rem;
}

@keyframes marquee-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* ==========================================================================
   Section 2: Benefits Section (Why Us & Target)
   ========================================================================== */
.benefits-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url('assets/bg_sec2.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.benefits-grid:last-child {
  margin-bottom: 0;
}

.benefits-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diamond-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diamond-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.diamond-bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 6px;
}

.diamond-bullet svg {
  width: 100%;
  height: 100%;
}

.list-text {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.1rem;
  color: #585858;
}

.list-text strong {
  font-weight: 600;
}

.rounded-img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shadow-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.highlight-callout {
  font-family: 'Battambang', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #CA8D1E;
  margin-top: 15px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .benefits-grid {
    margin-bottom: 60px;
  }
  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .highlight-callout {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Section 3: Process Section (Timeline)
   ========================================================================== */
.process-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #000000;
}

.process-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process-intro {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.process-title {
  font-family: 'Battambang', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.process-desc {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.45;
  color: #E0E0E0;
}

.process-subdesc {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.05rem;
  color: #CCCCCC;
}

.process-accent-text {
  font-family: 'Battambang', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E2BB6E;
  margin-bottom: 10px;
}

.process-intro .btn-degrade2 {
  align-self: flex-start;
}

/* Timeline box styling */
.process-timeline {
  position: relative;
}

.timeline-floating-icon {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 76px;
  height: 76px;
  z-index: 5;
}

.timeline-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 20px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, #E2BB6E 0%, transparent 100%);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #E2BB6E;
  background: rgba(226, 187, 110, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 187, 110, 0.3);
  flex-shrink: 0;
}

.step-text h3 {
  font-family: 'Battambang', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.step-text p {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  color: #B3B3B3;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .process-flex {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .process-title {
    font-size: 1.75rem;
  }
  .process-accent-text {
    font-size: 1.25rem;
  }
  .process-intro .btn-degrade2 {
    width: 100%;
  }
  .timeline-container {
    padding: 25px 15px;
  }
  .timeline-floating-icon {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
  }
}

/* ==========================================================================
   Section 4: Carousel Section (Rewards)
   ========================================================================== */
.carousel-section {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.carousel-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.carousel-title-main {
  font-family: 'Battambang', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #585858;
  margin-bottom: 2.5rem;
}

.rewards-carousel {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.carousel-slide {
  opacity: 0.3;
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.slide-divider {
  height: 1px;
  background-color: rgba(88, 88, 88, 0.2);
  margin-bottom: 25px;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.slide-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.slide-info h3 {
  font-family: 'Battambang', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.slide-info p {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.1rem;
  color: #666666;
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.carousel-btn:hover {
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 28px;
  height: 28px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(88, 88, 88, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #CA8D1E;
}

.carousel-image-decor {
  display: flex;
  justify-content: flex-end;
}

.decor-img {
  max-width: 285px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

@media (max-width: 991px) {
  .carousel-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .carousel-image-decor {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .carousel-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .carousel-title-main {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .slide-content {
    gap: 15px;
  }
  .slide-icon {
    width: 48px;
    height: 48px;
  }
  .slide-info h3 {
    font-size: 1.15rem;
  }
  .slide-info p {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Section 5: Payment and Delivery Section
   ========================================================================== */
.payment-delivery-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.info-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-title-bar {
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  overflow: hidden;
}

.card-bg-payment {
  background: linear-gradient(135deg, #1C1A17 0%, #302C26 100%);
}

.card-bg-delivery {
  background: linear-gradient(135deg, #2D271D 0%, #1A1610 100%);
}

.card-bg-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  height: calc(100% - 30px);
  width: auto;
  opacity: 0.8;
  object-fit: contain;
  pointer-events: none;
}

/* Extrapolate right image on delivery */
.card-bg-icon.ext-right {
  right: -30px;
  top: 5px;
  height: calc(100% + 10px);
}

.card-header-title {
  font-family: 'Battambang', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content-items {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #FFFFFF;
  flex-grow: 1;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.card-icon img {
  width: 100%;
  height: 100%;
}

.card-text h3 {
  font-family: 'Battambang', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
}

.card-text h3 small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #777777;
}

.bottom-callout {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.callout-text {
  font-family: 'Battambang', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #585858;
  line-height: 1.3;
}

.text-center {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .payment-delivery-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cards-grid {
    margin-bottom: 50px;
  }
  .card-title-bar {
    height: 140px;
    padding: 20px;
  }
  .card-header-title {
    font-size: 1.5rem;
  }
  .card-bg-icon.ext-right {
    right: -10px;
  }
  .card-content-items {
    padding: 30px 20px;
    gap: 25px;
  }
  .card-item {
    gap: 15px;
  }
  .card-icon {
    width: 40px;
    height: 40px;
  }
  .card-text h3 {
    font-size: 1rem;
  }
  .callout-text {
    font-size: 1.25rem;
  }
  .bottom-callout .btn-degrade2 {
    width: 100%;
  }
}

/* ==========================================================================
   Section 6: Form Section (Split Screen)
   ========================================================================== */
.form-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #0c0b0a;
}

.form-layout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

/* Left info side */
.form-info-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-perfume-img {
  display: flex;
  justify-content: center;
}

.floating-perfume {
  max-width: 400px;
  animation: float-bottle 4s ease-in-out infinite;
}

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

.form-info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-info-title {
  font-family: 'Battambang', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.diamond-list.gold-theme .list-text {
  color: #E0E0E0;
}

/* Right card form side */
.form-card-side {
  background: #1C1A17;
  border: 1px solid rgba(226, 187, 110, 0.15);
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-family: 'Battambang', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2.5rem;
  color: #FFFFFF;
}

.form-title .gold-text {
  background: linear-gradient(90deg, #E2BB6E 0%, #CA8D1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #CCCCCC;
}

.form-field-group input {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #FFFFFF;
  padding: 14px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-field-group input::placeholder {
  color: #666666;
}

.form-field-group input:focus {
  outline: none;
  border-color: #E2BB6E;
  background-color: rgba(255, 255, 255, 0.05);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Validation error classes */
.form-field-group.has-error input {
  border-color: #ff4d4d;
}

.form-field-group .error-msg {
  color: #ff4d4d;
  font-size: 0.8rem;
  display: none;
}

.form-field-group.has-error .error-msg {
  display: block;
}

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(90deg, #E2BB6E 0%, #CA8D1E 100%);
  color: #303030;
  padding: 16px 20px;
  font-family: 'Battambang', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(202, 141, 30, 0.3);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 141, 30, 0.4);
}

.btn-submit.loading .btn-submit-text {
  visibility: hidden;
  opacity: 0;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(48, 48, 48, 0.2);
  border-top-color: #303030;
  border-radius: 50%;
  position: absolute;
  display: none;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .form-layout-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .floating-perfume {
    max-width: 250px;
  }
  .form-card-side {
    padding: 30px 20px;
  }
  .form-title {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-field-group input {
    padding: 12px 14px;
  }
}

/* ==========================================================================
   Success Popup Modal
   ========================================================================== */
.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-popup-box {
  background: #1C1A17;
  border: 1px solid rgba(226, 187, 110, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-popup-overlay.active .success-popup-box {
  transform: scale(1);
}

.success-popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.success-popup-icon svg {
  width: 100%;
  height: 100%;
}

.success-popup-box h2 {
  font-family: 'Battambang', sans-serif;
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.success-popup-box p {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  color: #CCCCCC;
  margin-bottom: 15px;
  line-height: 1.4;
}

.btn-popup-close {
  background: linear-gradient(90deg, #E2BB6E 0%, #CA8D1E 100%);
  color: #303030;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-family: 'Battambang', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(202, 141, 30, 0.2);
  transition: transform 0.2s ease;
}

.btn-popup-close:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-site {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-logo-img {
  height: 27px;
  width: auto;
}

.footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #777777;
}

.footer-copyright a {
  color: #E2BB6E;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-site {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer-copyright {
    font-size: 0.75rem;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.5;
  }
}

/* ==========================================================================
   Scroll Trigger Animations (GSAP style via Intersection Observer)
   ========================================================================== */
.scroll-left, .scroll-right, .scroll-top, .scroll-bottom {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-left {
  transform: translateX(-50px);
}

.scroll-right {
  transform: translateX(50px);
}

.scroll-top {
  transform: translateY(-50px);
}

.scroll-bottom {
  transform: translateY(50px);
}

/* Active states */
.scroll-left.ativo, .scroll-right.ativo {
  opacity: 1;
  transform: translateX(0);
}

.scroll-top.ativo, .scroll-bottom.ativo {
  opacity: 1;
  transform: translateY(0);
}
