/*
============================================================
VARIABLES DE TEMA
============================================================
*/
:root {
  --bg-color: #8c52ff;
  --accent:   #ffd852;
  --text:     #ffffff;
  --text-dark:#333333;
}

/*
============================================================
RESET BÁSICO
============================================================
*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
============================================================
ESTILOS GENERALES DEL BODY Y LAYOUT
============================================================
*/
body {
  min-height: 100vh;
  display: grid;
  place-items: center; /* Centra contenido horizontal y vertical */
  background-color: var(--bg-color);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  text-align: center;
  padding: 20px;
}

/*
============================================================
CONTENEDOR PRINCIPAL
============================================================
*/
.container {
  max-width: 500px;
}

/*
============================================================
IMAGEN PRINCIPAL
============================================================
*/
.main-image {
  display: block;
  margin: 0 auto 30px;
  max-width: 80%;
  width: 300px;
  height: auto;

  /* Efecto flotante */
  animation: float 4s ease-in-out infinite;
}

/*
============================================================
TÍTULOS Y TEXTO
============================================================
*/
h1 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 700;
}

p {
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 1.1em;
}

/*
============================================================
BOTONES DE ACCIÓN
============================================================
*/
.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

/* Botón principal (amarillo) */
.btn-primary {
  background-color: var(--accent);
  color: var(--text-dark);
}
.btn-primary:hover {
  background-color: #e6c94a;
}

/* Botón secundario (borde amarillo) */
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--text-dark);
}

/*
============================================================
ANIMACIÓN DE FLOTE DE LA IMAGEN
============================================================
*/
@keyframes float {
  0%   { transform: translateY(0) }
  50%  { transform: translateY(-15px) }
  100% { transform: translateY(0) }
}
