/* ===========================
   FUENTE ARCADE
   =========================== */
@font-face {
    font-family: 'arcade';
    src: url('../fonts/arcade.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===========================
   SCROLL SUAVE
   =========================== */
html {
    scroll-behavior: smooth;
}

/* ===========================
   GENERALES
   =========================== */
body {
    margin: 0;
    padding-top: 120px;
    background: #0d0d0d;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

a {
    color: #ffcc33;
    text-decoration: none;
}

/* ===========================
   HEADER FIJO
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 24px;
    background: #111;
    border-bottom: 2px solid #222;

    box-sizing: border-box;
}

.logo {
    font-size: 26px;
    white-space: nowrap;
}

.nav a {
    margin-left: 18px;
    font-size: 16px;
    white-space: nowrap;
}

.btn-nav {
    padding: 8px 16px;
    background: #ffcc33;
    color: #000;
    border-radius: 6px;
}

/* ===========================
   TITULOS ARCADE
   =========================== */
.titulo-arcade {
    font-family: 'arcade', sans-serif;
    font-size: 64px;
    letter-spacing: 4px;
    line-height: 1.0;
    display: inline-block;
    color: #ffcc33;
}

.titulo-arcade.grande {
    font-size: 80px;
}

.subtitulo-blanco {
    font-size: 28px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 300;
}

/* ===========================
   SECCIÓN RESUMEN
   =========================== */
.resumen {
    padding: 80px 20px;
}

.resumen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.resumen-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    font-family: 'arcade';
    font-size: 22px;
    color: #ffcc33;
    border: 2px solid #333;
    transition: 0.2s;
}

.resumen-box:hover {
    background: #ffcc33;
    color: #000;
    transform: scale(1.05);
}

/* ===========================
   BLOQUES
   =========================== */
.bloque-estilo {
    padding: 100px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.texto-normal {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

/* ===========================
   FORMULARIO
   =========================== */
.form-contacto {
    display: flex;
    flex-direction: column;
    width: 350px;
    margin: 0 auto;
}

.form-contacto input,
.form-contacto textarea {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.form-contacto textarea {
    height: 120px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 20px;
    background: #000;
    margin-top: 40px;
    color: #777;
}
/* Galería flexible */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.galeria-item {
    width: 100%;
    height: 180px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #333;
    background-size: cover;
    background-position: center;
    transition: 0.25s;
}

.galeria-item:hover {
    transform: scale(1.03);
    border-color: #ffcc33;
}
