/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a2a2e;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  background: #0d2c2a;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.logo i {
  font-size: 2rem;
  color: #F5B041;
}

.logo h1 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.75rem;
  background: #F5B04120;
  padding: 2px 10px;
  border-radius: 40px;
  font-weight: 600;
  color: #F5B041;
}

.navbar {
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.nav-link:hover {
  color: #F5B041;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1523800503107-5bc3ba2a6f81?q=80&w=2080&auto=format') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d2c2aee, #0d2c2aaa);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 850px;
  margin: 0 auto;
}

.verse-day {
  background: #F5B041;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: #0d2c2a;
}

.hero h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background: #F5B041;
  color: #0d2c2a;
}

.btn-primary:hover {
  background: #e09d2c;
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #F5B041;
  color: #F5B041;
}

.btn-secondary:hover {
  background: #F5B04120;
}

/* ===== SECCIONES ===== */
.section {
  padding: 80px 0;
}

.bg-light {
  background-color: #f9f7f4;
}

.bg-dark {
  background-color: #0f2f2d;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0d2c2a;
}

.bg-dark .section-header h3 {
  color: #F5B041;
}

/* Cards generales */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: white;
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.card i {
  font-size: 2.5rem;
  color: #F5B041;
  margin-bottom: 16px;
}

/* Evangelismo */
.evangelism-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gospel-card, .testimony-card {
  background: white;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.05);
}

.gospel-steps {
  margin: 24px 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-weight: 500;
}

.step-num {
  width: 32px;
  height: 32px;
  background: #F5B041;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.btn-prayer {
  background: #0d2c2a;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
}

.prayer-message {
  margin-top: 20px;
  background: #eef2ea;
  padding: 16px;
  border-radius: 20px;
  font-style: italic;
}

.hidden {
  display: none;
}

/* Discipulado */
.discipulado-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.discipulo-card {
  background: white;
  padding: 28px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.discipulo-card i {
  font-size: 2.2rem;
  color: #F5B041;
}

.card-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #0d2c2a;
  text-decoration: none;
  border-bottom: 2px solid #F5B041;
}

/* Recursos */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.resource-item {
  background: white;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.btn-outline-small {
  background: none;
  border: 1px solid #0d2c2a;
  padding: 8px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 12px;
  transition: 0.2s;
}

.btn-outline-small:hover {
  background: #F5B041;
  border-color: #F5B041;
  color: #0d2c2a;
}

/* ===== BUSCADORES Y LISTAS ===== */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px auto;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #0d2c2a;
  opacity: 0.6;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 60px;
  font-family: inherit;
  transition: 0.2s;
  background: white;
}

.search-input:focus {
  outline: none;
  border-color: #F5B041;
  box-shadow: 0 0 0 3px rgba(245,176,65,0.2);
}

.results-list {
  background: white;
  border-radius: 28px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  max-height: 400px;
  overflow-y: auto;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f0e9e0;
  transition: 0.2s;
}

.result-item:hover {
  background: #fef5e8;
}

.result-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #0d2c2a;
}

.result-info p {
  font-size: 0.85rem;
  color: #5e6e6b;
}

.result-link {
  background: #F5B04120;
  padding: 8px 16px;
  border-radius: 40px;
  color: #0d2c2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
}

.result-link:hover {
  background: #F5B041;
  color: #0d2c2a;
}

.info-message, .no-results {
  text-align: center;
  padding: 32px;
  color: #5e6e6b;
  font-style: italic;
}

/* Contacto */
.contacto-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-details {
  list-style: none;
  margin: 24px 0;
}

.contact-details li {
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons a {
  color: white;
  background: #F5B04130;
  width: 40px;
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: 0.2s;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 20px;
  font-family: inherit;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.footer {
  background: #051f1e;
  color: #ccc;
  text-align: center;
  padding: 36px 0;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #F5B041;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d2c2a;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 99;
  transition: 0.2s;
}

/* Responsive */
@media (max-width: 900px) {
  .evangelism-content {
    grid-template-columns: 1fr;
  }
  .contacto-flex {
    grid-template-columns: 1fr;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .navbar {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 72px);
    background: #0d2c2a;
    transition: 0.3s;
    padding: 2rem;
    z-index: 999;
    box-shadow: 4px 0 20px rgba(0,0,0,0.3);
  }
  .navbar.active {
    left: 0;
  }
  .nav-menu {
    flex-direction: column;
    gap: 32px;
  }
  .result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .result-link {
    align-self: flex-start;
  }
}