/* Landing Page Corporativa - Estilo Profesional */

/* Reset & Base */
body.light-landing {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Manrope', 'Inter', sans-serif;
}

/* Typography Overrides */
.light-landing h1,
.light-landing h2,
.light-landing h3,
.light-landing h4,
.light-landing h5 {
  color: #0d0c22;
  /* Dark Navy for headers */
  font-weight: 700;
  text-transform: none !important;
  /* Remove excessive uppercase */
}

.light-landing p {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Hero Section */
.light-landing .hero-section {
  background-color: #f9fafb;
  /* Light Gray Background */
  padding: 100px 0;
}

.light-landing .text-gradient {
  background: linear-gradient(135deg, #0d0c22 0%, #2a2a72 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.light-landing .subtitle-alert {
  color: #dc3545;
  /* Professional Alert Red */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Minimal Cards */
.light-landing .pro-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.light-landing .pro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.light-landing .pro-card .icon-box {
  color: #0d0c22;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Alerts & Status Cards */
.light-landing .problem-card {
  background-color: #fff5f5;
  border-left: 4px solid #dc3545;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.light-landing .problem-card h5 {
  color: #dc3545;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Buttons */
.light-landing .btn-pro {
  background-color: #0d0c22;
  color: #ffffff !important;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
  border: none;
}

.light-landing .btn-pro:hover {
  background-color: #2a2a72;
  transform: translateY(-2px);
}

/* Sections */
.light-landing .section-gray {
  background-color: #f9fafb;
}


/* Mobile Responsiveness */
@media only screen and (max-width: 992px) {
  .menu_side_area .btn-pro {
    display: none !important;
    /* Hide CTA on tablet/mobile to prevent overlap */
  }

  .light-landing .hero-section {
    padding: 120px 0 60px 0;
    /* Increase top padding for fixed header */
    text-align: center;
  }

  .light-landing .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .light-landing .img-fluid {
    margin-top: 30px;
  }

  .light-landing .pro-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .light-landing .hero-section {
    padding-top: 100px;
  }

  .light-landing .hero-section h1 {
    font-size: 2rem;
  }

  .light-landing .subtitle-alert {
    font-size: 0.9rem;
  }

  /* Fix header overlap issues */
  header.header-mobile {
    background: #ffffff !important;
    border-bottom: 1px solid #eee;
  }

  .header-light.scroll-light.transparent {
    background: #ffffff !important;
  }
}