/* Fuente base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #1f2933;
}

/* Reset básico */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero */
.hero {
  background: url('img/SBT.jpg') no-repeat center center/cover;
  position: relative;
  padding: 160px 20px;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.hero-contenido {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.8em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn-principal {
  display: inline-block;
  background-color: #2c7a7b;
  color: white;
  padding: 14px 30px;
  font-size: 1.1em;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-principal:hover {
  background-color: #215f61;
  transform: translateY(-2px);
}

/* Header */
/* ========== HEADER UNIFICADO ========== */
/* ========== HEADER UNIFICADO ========== */
header {
  background-color: #0d7c7d;
  color: white;
  padding: 25px 0;
}

.container-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h1 {
  font-size: 1.9rem;
  margin: 0;
  font-weight: 700;
}

.subtitulo {
  font-size: 0.95rem;
  color: #d9f1f2;
  font-style: italic;
  margin-top: 4px;
}

nav .menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav .menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav .menu li a:hover {
  color: #ffd700;
}

.menu-toggle {
  display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .container-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    flex-direction: row;
    align-items: center;
  }

  .logo-text h1 {
    font-size: 1.6rem;
  }

  .subtitulo {
    font-size: 0.85rem;
  }

  nav .menu {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .menu-toggle {
    display: block;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 10px;
  }
}




/* Misión */
.mision {
  padding: 60px 20px;
  text-align: center;
  background-color: #e6f2f0;
}

/* Beneficios */
.beneficios {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.beneficios-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.beneficio {
  background-color: #fefefe;
  width: 280px;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
}

.beneficio img {
  width: 60px;
  margin-bottom: 15px;
}

/* Versículo */
.versiculo {
  background-color: #2c7a7b;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-style: italic;
  font-size: 1.2em;
}

/* Catálogo */
.catalogo {
  padding: 60px 20px;
  text-align: center;
  
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  max-width: 1200px;
  margin-inline: auto;
}

.producto {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto h3 {
  margin-top: 10px;
}

.descripcion {
  font-size: 0.95em;
  margin: 10px 0;
}

.precio {
  font-weight: bold;
  color: #2c7a7b;
  margin: 5px 0;
}

.btn-comprar {
  display: inline-block;
  background-color: #2c7a7b;
  color: white;
  padding: 10px 18px;
  font-size: 0.95em;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-comprar:hover {
  background-color: #1e5f60;
  transform: translateY(-2px);
}

/* SBT / Confianza doctrinal */
.sbt {
  background-image: url('img/fondo.jpg'); /* Reemplaza con tu ruta de imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: white; /* Asegúrate de que el texto sea legible sobre la imagen */
  text-align: center;
}


.sbt-btn {
  background-color: #ee6c4d;
  color: white;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.sbt-btn:hover {
  background-color: #d55435;
}

/* Contacto */
.contacto {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #2c7a7b;
  color: white;
  padding: 50px 20px 30px;
  font-size: 0.95em;
}

.footer-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-info, .footer-contacto, .footer-redes {
  flex: 1 1 280px;
}

.footer h4, .footer h5 {
  margin-bottom: 12px;
}

.footer a {
  color: #f0fdfd;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.85em;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #2c7a7b;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
    text-align: center;
    padding: 15px 0;
  }

  .menu.abierto {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu li {
    margin: 10px 0;
  }

  .container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }
}

.btn-secundario {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background-color: #ee6c4d;
  color: white;
  font-weight: 600;
  border-radius: 40px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-secundario:hover {
  background-color: #d55435;
}

.footer-redes a {
  margin-right: 15px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-redes a:hover {
  transform: scale(1.1);
}

.icono-red {
  width: 28px;
  height: 28px;
  fill: white;
}

.footer-contacto p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.icono-contacto {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: auto;
}

.logo div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body {
  background-image: url('img/Gmail/background.jpg'); /* Ajusta el nombre si es distinto */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.access-button {
  display: inline-block;
  padding: 14px 24px;
  background-color: #4a90e2;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.access-button:hover {
  background-color: #357ab7;
}

#biblia-sbt {
  background-color: #ffffff;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
}
