#inicio {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#tooltip {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}


.contenedor-versiculo {
  text-align: center;
}

#versiculos {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
}

h1 {
  margin-top: 10px;
  font-size: 2.5rem;
  color: #333;
  font-weight: bold;
}


.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-out;
}

.grid-item:hover img {
  transform: scale(1.1);
}

@font-face {
  font-family: "FontAwesome";
  src: url("fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),
       url("fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
       url("fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
       url("fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
       url("fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0e6683;
  text-align: center;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.floating-btn img {
  width: 35px;
  height: 35px;
  margin-top: 12px;
}

.social-icons {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

.navbar-dark {
  background-color: #153c5e;
}


.floating-btn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

.floating-btn img {
  width: 40px;
  height: 40px;
}

/* Estilo del encabezado (header) */
.header-container {
  background-color: #1c1e2a; /* Color de fondo oscuro */
  padding: 8px 0; /* Espacio interno ajustado */
  height: auto; /* Altura ajustada */
}

/* Estilos generales */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #080000;
  margin: 0;
}

/* Estilos del encabezado */
.hero {
  background-image: url('img/foto1.png'); /* Reemplazar con la imagen de fondo que desees */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  color: #1a0101;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #0a0000;
  font-weight: 400;
  margin-top: 1rem;
}
.logo-text {
  font-size: 24px;
  margin-right: 10px;
}
.logo-img {
  width: 50px;
  height: 50px;
}
