* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    color: white;
    overflow:auto;
    font-family: sans-serif;
}

body {
    justify-content: space-between;
}


#fondo {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter 2s linear, opacity 2s ease-in-out;
    z-index: -1;
    filter: grayscale(0%);
    opacity: 1;
}

.contenido {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo {
    max-width: 600px;
    width: 80%;
    height: auto;
    margin-bottom: 1rem;
}

.info p {
    color: black;
    font-weight: bold;
	font-size: 20px;
}

.whatsapp {
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 15px; /* espacio entre íconos */
}

.icon-circle {
  background-color: #2ecc71; /* verde */
  color: white; /* color del ícono */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%; /* círculo */
  text-decoration: none;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.icon-circle:hover {
  background-color: #27ae60; /* verde más oscuro al pasar mouse */
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .icono {
    display: inline-block;
    margin: 0 10px;
    font-size: 30px;
    text-decoration: none;
    color: white;
}

.icono {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2ecc71;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.icono i {
    color: white;
    font-size: 20px;
}

.icono:hover {
    background-color: #27ae60; /* verde oscuro */
}
/* Tipografía de iconos sociales con Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.social-facebook::before { content: "\f09a"; font-family: "Font Awesome 6 Brands"; }
.social-instagram::before { content: "\f16d"; font-family: "Font Awesome 6 Brands"; }
.social-twitter::before { content: "\f099"; font-family: "Font Awesome 6 Brands"; }
.social-youtube::before { content: "\f167"; font-family: "Font Awesome 6 Brands"; }
.social-tiktok::before { content: "\e07b"; font-family: "Font Awesome 6 Brands"; }
