*
{
 box-sizing: border-box;
}
 
html, body { 
    margin: 0; 
    padding: 0; 
    min-height: 100%; 
    /*background-color:transparent;*/
    /*background: linear-gradient(to bottom, #1a0f0a 0%, #2b1a12 50%, #1a0f0a 100%);*/
    background-color: #2b1a12;
    
height: 100%; }

body {
    font-family: 'Segoe UI', sans-serif;
    color: white;
    min-height: 100dvh;
    padding: 0;
    position: relative;
    overflow-y: auto;
    text-align: center;
    background: transparent !important;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    inset: 0;
    /*height: 100vh;*/
    background:
       
        url('fondo5.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    transform: scale(1);
    animation: zoomOnce 1.5s ease-in-out forwards;
    will-change: transform;
}

@keyframes zoomOnce {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.content {
    animation: fadeUp 1.5s ease-out;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    
}

h2 {
    font-size: 1.4em;
    margin: 5px 0 6px;
    font-weight: normal;
    color: #d6cfc8;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 18px;
}

.links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.links i {
    font-size: 20px;
}

@media (max-width: 600px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.1em; }
}
.top-logo {
    position: relative; /* ya no sticky */
    width: 100%;
    margin: 20px 0 1px; /* espacio arriba y abajo */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    background: none; /* elimina la barra negra */
    backdrop-filter: none;
}


.top-logo img {
     width: 150px;
    max-width: 150px;
    height: auto;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    /*text-transform: uppercase;*/
    opacity: 0.85;
    margin-bottom: 6px; /* ← AJUSTA ESTE VALOR */
    color: #d8b77a;
}

.page {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}
.block {
    margin-bottom: 40px; /* ← espacio entre secciones */
}
.block h2 {
    margin-bottom: 12px;
}
.links-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.links-maps a {
    padding: 18px 10px;
    border-radius: 12px;
    font-size: 16px;
    flex-direction: column; /* icono arriba, texto abajo */
    gap: 6px;
}
.logo-glow {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.logo-glow::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: radial-gradient(
        circle,
        rgba(230,196,138,0.45) 0%,
        rgba(230,196,138,0.25) 30%,
        rgba(0,0,0,0) 70%
    );
    border-radius: 50%;
    filter: blur(25px);
    z-index: -1;
}

.logo-glow img {
    width: 150px;
    height: auto;
    position: relative;
    z-index: 1;
}
