/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    /* Fondo oscuro */
    color: #e0e0e0;
    /* Texto claro */
    line-height: 1.6;
}

/* CONTENEDOR GENERAL */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

/* HEADER */
header {
    background: #1f1f1f;
    padding: 20px 0;
    border-bottom: 3px solid #00d4ff;
    /* Azul neón */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    color: #00d4ff;
    font-weight: bold;
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #00d4ff;
}

/* HERO SECTION */
.hero {
    background: #1a1a1a;
    height: 400px;
    /* Altura del banner */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
}

/* BOTÓN */
.btn {
    display: inline-block;
    background: #00d4ff;
    color: #121212;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #008cb3;
}

/* CATEGORÍAS (GRID) */
.categories {
    padding: 50px 0;
}

.categories h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    /* Efecto de flotar al pasar el mouse */
    border-color: #00d4ff;
}

.card h4 {
    margin-bottom: 10px;
    color: #00d4ff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #1f1f1f;
    margin-top: 20px;
    font-size: 14px;
}

/* Estilo para las fotos reales */
.image-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
    /* Centra la imagen */
}

.image-container img {
    max-width: 100%;
    /* Que no se salga del ancho de la pantalla */
    height: auto;
    /* Mantiene la proporción */
    border-radius: 10px;
    /* Bordes suaves */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Sombra elegante */
    border: 1px solid #333;
    /* Un borde fino y sutil */
}