/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
}

/* TOPBAR */
.topbar {
  background: #3D0614;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: #FFAB60;
  font-weight: 700;
  font-size: 1.2rem;
}

nav a {
  color: #fff;
  margin-left: 22px;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
}

nav a.active,
nav a:hover {
  opacity: 1;
}

/* HERO CABECERA */
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url("../img/sevilla/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(61, 6, 20, 0.9),
      rgba(217, 4, 61, 0.75));
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  z-index: 1;
}

.badge {
  background: #FFAB60;
  color: #3D0614;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 36px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 14px;
}

.btn.primary {
  background: #FFAB60;
  color: #3D0614;
}

.btn.ghost {
  border: 2px solid #fff;
  color: #fff;
}

/* SECTIONS */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* FEATURES */
.features {
  padding: 90px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #3D0614;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  height: 46px;
  margin-bottom: 18px;
}

.feature-card h3 {
  color: #D9043D;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* SCREENSHOTS */
.screenshots {
  padding: 90px 0;
  background: #f8f8f8;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.screenshots img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* CTA */
.cta {
  padding: 90px 24px;
  background: linear-gradient(135deg, #3D0614, #D9043D);
  color: #fff;
}

.cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-box p,
.cta-box h2 {
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  background: #3D0614;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {

  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}