/* Reset básico */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-image: url('/img/marble.jpg'); /* Fondo de mármol */
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.7); /* Fondo blanco semitransparente */
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  color: #333; /* Texto oscuro para contraste */
  max-width: 600px;
  padding: 20px;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  color: #E93A1D;
  margin-bottom: 10px;
}

.construction {
  font-size: 20px;
  margin-bottom: 30px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.phone-button {
  display: inline-block;
  background-color: #E93A1D;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.phone-button:hover {
  background-color: #c62f15;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 10px;
}

.social-icon {
  width: 40px; /* Ajusta el tamaño de los íconos */
  height: auto;
  transition: opacity 0.3s ease;
}

.social-icons a:hover .social-icon {
  opacity: 0.7;
}

/* Responsive ajustes para móviles */
@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }

  .construction {
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }

  .logo {
    max-width: 150px;
  }

  .phone-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .social-icons a {
    margin: 0 8px;
  }

  .social-icon {
    width: 30px;
  }
}
