﻿/* Importar Material Icons */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

.tab-bar {
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #212121;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    transition: bottom 0.3s ease; /* ← usamos esto en lugar de transformY */
}
 
    .tab-bar a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        position: relative;
        padding: 10px;
    }

        .tab-bar a.center {
            background: #3f51b5;
            border-radius: 50%;
            padding: 20px;
            margin-top: -30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            font-size: 28px;
        }

        .tab-bar a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

.drawer {
    position: fixed;
    bottom: -50%;
    left: 0;
    width: 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    background: #212121;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: bottom 0.3s ease;
}

    .drawer.active {
        bottom: 0;
    }

.titulo-tab {
	text-align: center;
	color: white;
}
