/* ==========================================================================
   LANDING PAGE CSS - ESCALA OPERACIONAL SOSSEGO & SALOBO
   ========================================================================== */

/* Hero Section */
.landing-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-control.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 10s ease;
}

.landing-hero:hover .landing-hero-bg {
  transform: scale(1.05);
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 12, 20, 0.92) 0%,
    rgba(15, 23, 42, 0.85) 45%,
    rgba(2, 132, 199, 0.4) 100%
  );
  backdrop-filter: blur(2px);
}

[data-theme="light"] .landing-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(30, 41, 59, 0.78) 50%,
    rgba(2, 132, 199, 0.5) 100%
  );
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 820px;
}

@media (max-width: 768px) {
  .landing-hero {
    min-height: auto;
  }
  .landing-hero-content {
    padding: 40px 20px;
  }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--emerald-neon);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 32px;
  max-width: 680px;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 0.95rem;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6);
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Floating Metrics Strip */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 18px 24px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-strip-item {
  display: flex;
  flex-direction: column;
}

.stat-strip-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.2;
}

.stat-strip-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Common Styles */
.landing-section {
  margin-bottom: 48px;
}

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

.section-header-center h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.section-header-center p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Interactive Schedule Quick Check Widget */
.quick-check-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.quick-check-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #10b981, #f59e0b);
}

.quick-check-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .quick-check-grid {
    grid-template-columns: 1fr;
  }
}

.quick-check-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-check-form p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.quick-result-display {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme="light"] .quick-result-display {
  background: #f8fafc;
}

/* Operation Bases Showcase (Sossego vs Salobo) */
.bases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .bases-grid {
    grid-template-columns: 1fr;
  }
}

.base-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
}

.base-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-neon);
}

.base-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.base-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.base-badge-sossego {
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.base-badge-salobo {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.base-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.base-stat-item {
  text-align: center;
}

.base-stat-item .num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.base-stat-item .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: var(--cyan-neon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--cyan-neon);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

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

/* Photo Gallery Banner */
.photo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
}

@media (max-width: 768px) {
  .photo-banner {
    grid-template-columns: 1fr;
  }
}

.photo-banner-img {
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

.photo-banner-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .photo-banner-content {
    padding: 24px;
  }
}

.photo-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

.photo-banner-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Call to Action Final */
.cta-final {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid var(--cyan-neon);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  margin-bottom: 48px;
}

.cta-final h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.cta-final p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px auto;
}

.cta-final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
