body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f4f6f9, #e6f7ff);
    color: #333;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    background: linear-gradient(90deg, #93a6b8, #00a6ff);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 200px;
}

/* BOTON INICIO FUTURISTA */

.inicio {
    font-size: 18px;
    font-weight: bold;
    color: #00e5ff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 2px solid #00e5ff;
    border-radius: 8px;
    transition: 0.3s;
}

.inicio:hover {
    background: #00e5ff;
    color: #000;
    box-shadow: 0 0 15px #00e5ff;
}

/* HERO */

.hero {
    background: linear-gradient(120deg, #2e9f6b, #1fb9c1);
    color: white;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* BUSCADOR FUTURISTA */

.buscador {
    text-align: center;
    padding: 30px;
}

.buscador input {
    width: 60%;
    max-width: 500px;
    padding: 15px;
    font-size: 18px;
    border-radius: 30px;
    border: none;
    outline: none;

    background: white;
    box-shadow:
        0 0 5px rgba(0, 150, 255, 0.5),
        0 0 15px rgba(0, 150, 255, 0.3);

    transition: 0.3s;
}

.buscador input:focus {

    box-shadow:
        0 0 10px #00e5ff,
        0 0 30px #00e5ff;

    transform: scale(1.03);
}

#resultados {
    max-width: 600px;
    margin: 20px auto;
}

.resultado-item {
    background: white;
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.resultado-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.resultado-item a {
    text-decoration: none;
    color: #333;
}

/* CATEGORIAS */

.categorias {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
}

/* TARJETAS DE CATEGORIAS */

.categoria {

    background: linear-gradient(145deg, #f4c542, #ffd95c);
    padding: 15px;
    text-align: center;
    font-size: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    font-weight: bold;

    transition: 0.3s;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.categoria:hover {

    transform: translateY(-6px) scale(1.05);

    background: linear-gradient(145deg, #ffe27a, #ffd95c);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 10px rgba(255, 200, 0, 0.6);
}

/* MAPA */

.mapa {
    padding: 40px;
    text-align: center;
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* REGISTRO */

.registro {
    padding: 40px;
    background: white;
    text-align: center;
}

.registro input {
    display: block;
    margin: 10px auto;
    padding: 12px;
    width: 260px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.registro button {
    padding: 12px 25px;
    background: #1f7a63;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.registro button:hover {
    background: #145a49;
}

/* SECCION CREADOR */

.creador {
    background: linear-gradient(120deg, #cfefff, #eaf9ff);
    padding: 40px;
    text-align: center;
}

.creador h2 {
    margin-bottom: 20px;
}

.creador a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

.creador a:hover {
    text-decoration: underline;
}
.btn-comentarios{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  background: linear-gradient(45deg,#00c6ff,#0072ff);
  color:white;
  padding:14px 20px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
  z-index:1000;
}

.btn-comentarios:hover{
  transform:translateX(-50%) scale(1.1);
}

/* FOOTER */

footer {
    background: linear-gradient(90deg, #1e6fb9, #0088cc);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* RESPONSIVE */

@media (max-width:700px) {

    .logo img {
        width: 140px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .buscador input {
        width: 85%;
    }

    .categoria {
        font-size: 18px;
        padding: 12px;
    }

}