/* RESET & GLOBAL */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Ringbearer';
    background-color: #0d0d0d; /* preto suave */
    color: #f5f5f5; /* branco suave */
    position: relative;
    z-index: 0;
}

/* Fundo padrão (mobile): logo repetida */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/logo.png');
    background-repeat: repeat;
    background-size: 360px 480px; /* largura x altura da logo */
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

@font-face {
    font-family: 'Ringbearer';
    src: url('../assets/RINGM___.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    width: 60px;
    height: 60px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

