/* Dentro de /public_html/new/joyeriafarel.com/css/joyeria-farel.css */

@font-face {
    font-family: 'Maxwell';
    src: url('https://joyeriafarel.com/font/MAXWELL-REGULAR.ttf.woff2') format('woff2'),
         url('https://joyeriafarel.com/font/MAXWELL-REGULAR.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.farel-font {
    /* font-family: 'Maxwell', sans-serif !important; */
    /* font-size: 36px; */ /* Ya no es necesario si se va a ocultar */
    /* Media Queries anteriores para font-size ya no son necesarias */

    display: none !important; /* <-- ¡Esto ocultará el texto! */
}

/* Reglas para el logo (pueden ser las que ya tienes o ajustar si es necesario) */
.logo-responsivo {
    max-width: 300px; /* Tamaño máximo deseado para el logo */
    height: auto;     /* Mantiene la proporción */
}

@media (max-width: 768px) {
    .logo-responsivo {
        max-width: 200px; /* Un tamaño más pequeño para móviles */
    }
}

@media (max-width: 480px) {
    .logo-responsivo {
        max-width: 150px;
    }
}