﻿
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #333333;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: #e0e0e0; /* Un gris sutil para que no sea agresivo */
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.icon-travel {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h1 {
    font-family: "Playwrite GB J", 'Arial', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    background-color: #ff5a5f; /* Un color vivo, estilo Airbnb/Travel */
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.btn-home:hover {
    background-color: #e04b50;
    transform: translateY(-2px);
}