/* ========================================================================== */
/* CSS CUSTOM PROPERTIES - Color Palette & Typography */
/* ========================================================================== */

:root {
  /* Color Palette - ESMERALDA NOIR (Verde Premium) */
  --primary-warm: #064E3B;        /* Verde floresta imperial */
  --secondary-warm: #065F46;      /* Esmeralda profunda */
  --dark-charcoal: #0F1B17;       /* Preto jade */
  --deep-black: #041E0A;          /* Preto floresta */
  --accent-primary: #14B8A6;      /* Teal elétrico */
  --accent-secondary: #0D9488;    /* Verde água premium */
  --gold-accent: #2DD4BF;         /* Aqua vibrante */
  --white: #F0FDF9;               /* Branco menta */
  --light-gray: #D1FAE5;          /* Verde glacial */
  --medium-gray: #6EE7B7;         /* Menta médio */
  --border-gray: #047857;         /* Verde escuro */
  
  /* Typography */
  --font-family: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --font-size-hero: 48px;
  --font-size-section: 36px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-micro: 12px;
  
  /* Mobile Font Sizes */
  --font-size-hero-mobile: 32px;
  --font-size-section-mobile: 24px;
  
  /* Responsive Breakpoints */
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--white);
  background-color: var(--deep-black);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-section);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-secondary);
}

/* ========================================================================== */
/* AGE VERIFICATION MODAL */
/* ========================================================================== */

.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.age-verification-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background: var(--white);
  color: var(--deep-black);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  color: var(--primary-warm);
  margin-bottom: 1.5rem;
  font-size: 28px;
}

.modal-content p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.5;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-confirm, .btn-deny {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semi-bold);
  font-size: 16px;
  cursor: pointer;
  min-width: 180px;
}

.btn-confirm {
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  color: var(--white);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-deny {
  background: var(--medium-gray);
  color: var(--deep-black);
}

.btn-deny:hover {
  background: var(--border-gray);
  color: var(--white);
}

.warning-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #ff6b6b;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.warning-icons i {
  font-size: 20px;
}

/* ========================================================================== */
/* HERO BANNER */
/* ========================================================================== */

.hero-banner {
  position: relative;
  height: 500px;
  max-height: 500px;
  
  /* Remove background from main element */
  /* background: url('../images/backgrounds/bg.png') center center / cover no-repeat; */
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

/* Background blur using pseudo-element (FUNCTIONAL METHOD) */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/public/images/backgrounds/bg.webp') center center / cover no-repeat;
  filter: blur(2px);
  z-index: -2;
  /* Expand slightly to hide blur edges */
  transform: scale(1.1);
}

/* Optional overlay for better contrast */
.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 16, 7, 0.2);
  z-index: -1;
}

.brand-corner {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--accent-primary);
  letter-spacing: 2px;
  z-index: 100;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 50;
  position: relative;
  padding: 1rem 0;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--light-gray);
  line-height: 1.4;
}

.luxor-brand {
  margin: 1rem 0;
}

.luxor-brand img {
  height: 5rem;
}

.cta-button {
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(5, 149, 41, 0.4);
}

/* ========================================================================== */
/* OPTIONAL: CSS-Only Animated Background for Hero */
/* ========================================================================== */

/* Uncomment this section and update .hero-banner background to use .hero-animated-bg */
/*
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, var(--accent-primary) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--accent-secondary) 0%, transparent 40%),
    radial-gradient(circle at 40% 70%, var(--gold-accent) 0%, transparent 30%),
    linear-gradient(135deg, var(--primary-warm) 0%, var(--secondary-warm) 50%, var(--deep-black) 100%);
  animation: backgroundShift 8s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
  0% {
    background-size: 200% 200%, 150% 150%, 180% 180%, 100% 100%;
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
  }
  100% {
    background-size: 250% 250%, 200% 200%, 220% 220%, 100% 100%;
    background-position: 100% 100%, 0% 100%, 0% 0%, 0% 0%;
  }
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-coin {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--gold-accent), var(--accent-primary));
  box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
  animation: float 6s ease-in-out infinite;
}

.floating-coin:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.floating-coin:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; animation-duration: 8s; }
.floating-coin:nth-child(3) { top: 30%; left: 70%; animation-delay: 4s; animation-duration: 7s; }
.floating-coin:nth-child(4) { top: 80%; left: 25%; animation-delay: 1s; animation-duration: 9s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.9; }
}
*/

/* ========================================================================== */
/* BACKDROP BLUR OPTIONS */
/* ========================================================================== */

/* Para intensidade diferente de blur, substitua os valores acima: */

/* Blur Suave (Atual) */
/* backdrop-filter: blur(2px); */

/* Blur Médio */
/* backdrop-filter: blur(4px); */

/* Blur Intenso */
/* backdrop-filter: blur(8px); */

/* Blur com saturação */
/* backdrop-filter: blur(3px) saturate(1.2); */

/* Método alternativo: Background blur com overlay usando pseudo-elemento */
/*
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/backgrounds/bg.png') center center / cover no-repeat;
  filter: blur(4px);
  z-index: -2;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 16, 7, 0.3);
  z-index: -1;
}
*/

/* ========================================================================== */
/* 3D FLOATING ELEMENTS */
/* ========================================================================== */

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.coin, .geometric-shape {
  position: absolute;
  border-radius: 50%;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Gold Coins */
.coin {
  background: linear-gradient(45deg, var(--gold-accent), #FFA500, var(--gold-accent));
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  border: 2px solid #FFE55C;
}

.coin-1 { width: 45px; height: 45px; top: 10%; left: 10%; animation: floatRotate 4s infinite; }
.coin-2 { width: 55px; height: 55px; top: 20%; right: 15%; animation: floatRotate 5s infinite reverse; }
.coin-3 { width: 50px; height: 50px; top: 60%; left: 5%; animation: floatRotate 6s infinite; }
.coin-4 { width: 60px; height: 60px; top: 70%; right: 20%; animation: floatRotate 4.5s infinite reverse; }
.coin-5 { width: 65px; height: 65px; top: 40%; left: 80%; animation: floatRotate 5.5s infinite; }
.coin-6 { width: 48px; height: 48px; top: 80%; left: 70%; animation: floatRotate 3.5s infinite reverse; }
.coin-7 { width: 52px; height: 52px; top: 30%; left: 25%; animation: floatRotate 7s infinite; }
.coin-8 { width: 70px; height: 70px; top: 50%; right: 5%; animation: floatRotate 6.5s infinite reverse; }

/* Geometric Shapes */
.geometric-shape {
  border-radius: 0;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
}

.shape-1 { width: 30px; height: 30px; top: 15%; left: 60%; transform: rotate(45deg); }
.shape-2 { width: 35px; height: 35px; top: 75%; left: 40%; transform: rotate(0deg);  }
.shape-3 { width: 28px; height: 28px; top: 25%; right: 40%; transform: rotate(30deg); }
.shape-4 { width: 32px; height: 32px; top: 85%; right: 60%; transform: rotate(60deg); }
.shape-5 { width: 38px; height: 38px; top: 45%; left: 15%; transform: rotate(90deg); }
.shape-6 { width: 40px; height: 40px; top: 65%; right: 80%; transform: rotate(120deg); }

@keyframes floatRotate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-30px) rotate(270deg); }
}

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

/* ========================================================================== */
/* SECONDARY BANNER */
/* ========================================================================== */

.secondary-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--dark-charcoal), var(--secondary-warm));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  border-top: 2px solid var(--border-gray);
  border-bottom: 2px solid var(--border-gray);
}

.secondary-banner-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.logo-section {
  flex: 0 0 200px;
}

.logo-section img { 
  height: 4rem;
}

.promo-section {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}

.promo-section h3 {
  font-size: 18px;
  font-weight: var(--font-weight-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.star-rating {
  color: var(--gold-accent);
  font-size: 20px;
}

.cta-section {
  flex: 0 0 200px;
  text-align: right;
}

.cta-section .cta-button {
  padding: 12px 24px;
  font-size: 16px;
}

/* ========================================================================== */
/* CONTACT SECTION */
/* ========================================================================== */

.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--dark-charcoal), var(--deep-black));
}

.contact-section-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
  font-size: var(--font-size-section);
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semi-bold);
  color: var(--light-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  background: var(--dark-charcoal);
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--font-size-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff6b6b;
}

.error-message {
  display: block;
  color: #ff6b6b;
  font-size: var(--font-size-small);
  margin-top: 0.5rem;
  opacity: 0;
}

.error-message.show {
  opacity: 1;
}

.submit-button {
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ========================================================================== */
/* FOOTER */
/* ========================================================================== */

.main-footer {
  background: var(--deep-black);
  border-top: 2px solid var(--border-gray);
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-section h3 {
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-size: 24px;
}

.legal-text {
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--light-gray);
}

.legal-text p {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--font-size-small);
  color: var(--medium-gray);
}

.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  flex: 0 0 auto;
}

.cert-item img {
  max-width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

/* ========================================================================== */
/* RESPONSIVE DESIGN */
/* ========================================================================== */

/* Tablet Styles */
@media (max-width: 1199px) {
  .hero-banner {
    height: 400px;
    max-height: 400px;
  }
  
  .brand-corner {
    top: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 0.8rem;
  }
  
  .hero-content p {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }
  
  .luxor-brand {
    font-size: 36px;
    margin: 0.8rem 0;
  }
  
  .cta-button {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .secondary-banner {
    height: auto;
    padding: 1.5rem;
    text-align: center;
  }
  
  .secondary-banner-content {
    flex-direction: column;
  }
  
  .logo-section, .cta-section {
    flex: none;
  }
  
  .promo-section {
    padding: 1rem 0;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .certifications {
    gap: 0.8rem;
  }
  
  .cert-item {
    padding: 0.8rem;
  }
  
  .cert-item img {
    max-height: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  :root {
    --font-size-hero: var(--font-size-hero-mobile);
    --font-size-section: var(--font-size-section-mobile);
  }
  
  .hero-banner {
    padding: 1rem 1rem 0.5rem 1rem;
    height: 350px;
    max-height: 350px;
  }
  
  .brand-corner {
    top: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
  }
  
  .hero-content h1 {
    font-size: 22px;
    margin-bottom: 0.6rem;
  }
  
  .hero-content p {
    font-size: 14px;
    margin-bottom: 0.6rem;
  }
  
  .luxor-brand {
    font-size: 28px;
    margin: 0.6rem 0;
  }
  
  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .floating-elements .coin,
  .floating-elements .geometric-shape {
    transform: scale(0.7);
  }
  
  /* Hide half of the floating elements on mobile */
  .coin-2, .coin-4, .coin-6, .coin-8,
  .shape-2, .shape-6 {
    display: none;
  }
  
  .secondary-banner {
    padding: 1rem;
  }
  
  .promo-section h3 {
    font-size: 14px;
  }
  
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .age-buttons {
    flex-direction: column;
  }
  
  .btn-confirm, .btn-deny {
    min-width: auto;
    width: 100%;
  }
  
  .main-footer {
    padding: 2rem 1rem 1rem;
  }
  
  .certifications {
    gap: 0.5rem;
    justify-content: space-between;
  }
  
  .cert-item {
    padding: 0.5rem;
    flex: 1 1 calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
  }
  
  /* Keep half of the floating elements hidden on very small mobile */
  .coin-2, .coin-4, .coin-6, .coin-8,
  .shape-2, .shape-6 {
    display: none;
  }
  
  .cert-item img {
    max-height: 60px;
  }
}

/* Very Small Mobile */
@media (max-width: 480px) {
  .hero-banner {
    height: 300px;
    max-height: 300px;
    padding: 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  
  .luxor-brand {
    font-size: 24px;
    margin: 0.5rem 0;
  }
  
  .cta-button {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .floating-elements .coin,
  .floating-elements .geometric-shape {
    transform: scale(0.5);
  }
  
  .promo-section h3 {
    font-size: 12px;
  }
  
  .certifications {
    gap: 0.3rem;
    flex-direction: column;
  }
  
  .cert-item {
    padding: 0.3rem;
    flex: none;
    max-width: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  
  .cert-item img {
    max-height: 35px;
  }
}

/* ========================================================================== */
/* UTILITY CLASSES */
/* ========================================================================== */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================================== */
/* PERFORMANCE OPTIMIZATIONS */
/* ========================================================================== */

.hero-banner,
.floating-elements,
.coin,
.geometric-shape {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .cta-button:hover,
  .cert-item:hover,
  .submit-button:hover {
    transform: none;
  }
} 