:root {
  --Negro-litoral: #000000;
  --celeste-litoral: #00AEEF;
  --gris-claro: #f4f4f4;
  --blanco: #ffffff;
  --verde-whatsapp: #25D366;
  --azul-litoral: #0079c4;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

/* Imagen de fondo */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%) blur(1px);
}

/* Contenedor principal */
.container {
  background-color: rgba(255, 255, 255, 0);
  max-width: 1500px;
  width: 150%;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: fadeIn 0.8s ease-in-out;
  z-index: 1;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 300px;
  margin-bottom: 0.3rem;
}
.logo1 {
  width: 1200px;
  margin-bottom: 0.3rem;

  border-radius: 21px;
  padding: 5px;
}
h1 {
  color: var(--Negro-litoral);
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin: 0.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-web {
  background-color: var(--celeste-litoral);
  color: var(--blanco);
}

.btn-web:hover {
  background-color: var(--azul-litoral);
}

.btn-whatsapp {
  background-color: var(--verde-whatsapp);
  color: var(--blanco);
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 2.0rem 0.7rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.96rem;
  }

  .logo {
    width: 260px;
  }
}
