/* ==========================================================================
   PORTO JAUÁ - STANDBY PAGE DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
  /* Color Palette inspired by Sunset, Lagoon, Nature and Sands */
  --bg-dark: #0B1311;
  --bg-card: rgba(18, 30, 26, 0.75);
  --bg-card-hover: rgba(26, 44, 38, 0.85);

  --color-gold: #E2AD52;
  --color-gold-light: #F4C472;
  --color-gold-dark: #B8812D;

  --color-teal: #2A7B7A;
  --color-teal-light: #3EA6A5;

  --color-green-deep: #162E23;

  --text-main: #F3F6F4;
  --text-muted: #A0B2A8;
  --text-dark: #0B1311;

  --border-gold: rgba(226, 173, 82, 0.3);
  --border-glass: rgba(255, 255, 255, 0.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-glow: 0 0 35px rgba(226, 173, 82, 0.18);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Animated Effects */
.bg-gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 20%, rgba(42, 123, 122, 0.15) 0%, rgba(11, 19, 17, 0.95) 75%);
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  animation: pulseGlow 12s infinite alternate ease-in-out;
}

.glow-1 {
  top: -100px;
  left: -100px;
  background: var(--color-gold);
}

.glow-2 {
  bottom: -150px;
  right: -100px;
  background: var(--color-teal);
  animation-delay: 6s;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  50% { transform: scale(1.2) translate(30px, 20px); opacity: 0.45; }
  100% { transform: scale(0.9) translate(-20px, 40px); opacity: 0.25; }
}

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

/* Typography Helpers */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--text-dark);
  box-shadow: 0 8px 25px rgba(226, 173, 82, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(226, 173, 82, 0.4);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  backdrop-filter: blur(10px);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--text-dark);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-glass);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 17, 0.7);
}

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

.brand-logo-wrapper {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.04);
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(226, 173, 82, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
  animation: blinkDot 1.8s infinite alternate;
}

@keyframes blinkDot {
  0% { opacity: 0.3; }
  100% { opacity: 1; transform: scale(1.2); }
}

.status-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-gold-light);
}

/* Hero Section */
.hero-section {
  padding: 60px 0 40px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  background: linear-gradient(135deg, var(--color-gold-light), #FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Showcase Section */
.showcase-section {
  padding: 30px 0 60px;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  cursor: pointer;
  background: var(--bg-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(226, 173, 82, 0.3);
}

.showcase-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(11, 19, 17, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 19, 17, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.showcase-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gold);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Amenities Section */
.amenities-section {
  padding: 60px 0 80px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amenity-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.amenity-card-wide {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(226, 173, 82, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  transition: transform var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-gold);
  color: var(--text-dark);
}

.amenity-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.amenity-desc {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 1px;
}

/* VIP Banner Section */
.vip-banner-section {
  padding: 40px 0 80px;
}

.vip-banner {
  background: linear-gradient(135deg, rgba(31, 110, 109, 0.4), rgba(226, 173, 82, 0.15));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
}

.vip-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text-main);
  margin-bottom: 10px;
}

.vip-banner-content p {
  color: var(--text-muted);
  max-width: 500px;
  font-size: 0.95rem;
}

.vip-form-inline {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 550px;
  flex-wrap: wrap;
}

.vip-form-inline input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  background: rgba(11, 19, 17, 0.7);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.vip-form-inline input:focus {
  border-color: var(--color-gold);
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  background: rgba(7, 12, 11, 0.9);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-domain {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-domain strong {
  color: var(--color-gold-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 92vh;
  z-index: 10;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: var(--color-gold);
  color: var(--text-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-gold);
}

/* Modal Form VIP */
.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #111E1A;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  z-index: 10;
  box-shadow: var(--shadow-card), var(--shadow-glow);

  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-wrapper.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-gold);
  color: var(--text-dark);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--color-gold);
  width: 18px;
  height: 18px;
}

.input-with-icon input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.input-with-icon input:focus {
  border-color: var(--color-gold);
}

.form-success-message {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(226, 173, 82, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Responsiveness */
@media (max-width: 900px) {
  .vip-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .vip-form-inline {
    width: 100%;
    flex-direction: column;
  }

  .vip-form-inline input {
    width: 100%;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 6px 0;
  }

  .header-container {
    flex-direction: column;
    gap: 8px;
  }

  .brand-logo {
    height: 80px;
  }

  .hero-section {
    padding: 30px 0 20px;
  }

  .showcase-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }
}
