* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* Fuente limpia y profesional */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    /* IMPORTANTE: Tu imagen debe llamarse fondo.jpg */
    background-image: url('fondo.jpg'); 
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* Ajuste perfecto: 100% alto, recorta laterales */
    
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Capa para dar contraste al logo y botón */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Un poquito más oscuro para que resalte la info */
    z-index: 1;
}

.contenedor-central {
    position: relative;
    z-index: 2;
}

.tabla-menu {
    border-collapse: collapse;
    text-align: center;
}

/* 1. Logo un poco más grande */
.logo {
    max-width: 320px; /* Aumentado de 250px */
    height: auto;
}

.espacio-grande {
    height: 50px;
}

.espacio-chico {
    height: 25px;
}

/* Estilos del Botón Principal */
.boton {
    display: inline-block;
    padding: 18px 55px; /* Un poco más robusto */
    background-color: #8d0e57; /* Color base pedido */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.boton:hover {
    background-color: #df1683; /* Color hover pedido */
    color: #ffffff;
    transform: scale(1.03); /* Efecto sutil de crecimiento */
}

/* 2. Estilos para el enlace de Instagram */
.instagram-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300; /* Más fino para contraste con el botón */
    letter-spacing: 1px;
    text-transform: lowercase; /* Queda más moderno para el usuario */
    opacity: 0.8; /* Sutilmente transparente */
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 1; /* Se ve total al pasar el mouse */
}

/* Ícono de Instagram */
.instagram-link i {
    font-size: 18px;
    margin: 0 5px; /* Espaciado lateral del ícono */
    vertical-align: middle; /* Alineado vertical con el texto */
}