/* Estamos Pescando - Homepage Styles */
.ep-hero {
  position: relative;
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}
.ep-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 100%);
  border-radius: 1rem;
}
.ep-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.ep-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.ep-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}
.ep-hero .ep-cta {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s;
}
.ep-hero .ep-cta:hover { background: #c53030; }
.ep-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}
@media(min-width:768px) {
  .ep-banners { grid-template-columns: repeat(3, 1fr); }
}
.ep-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.ep-banner:hover { transform: translateY(-4px); }
.ep-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.ep-banner-text {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: #fff;
}
.ep-banner-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ep-banner-text p {
  font-size: 0.875rem;
  opacity: 0.9;
}
.ep-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
}
@media(min-width:768px) {
  .ep-features { grid-template-columns: repeat(3, 1fr); }
}
.ep-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f7fafc;
  border-radius: 0.75rem;
}
.ep-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.ep-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a365d;
}
.ep-feature p {
  color: #718096;
  font-size: 0.9375rem;
}
.ep-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
