﻿/* Importar Material Icons */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* ------------------------ TAB INFO */

.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;
    transition: bottom 0.3s ease; /* ← usamos esto en lugar de transformY */
    border-radius: 50%;
}
 
    .tab-bar a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        position: relative;
        padding: 10px;
    }

        .tab-bar a.center {
            background: #B3261F;
            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: #7C100B;
            border-radius: 50%;
        }

.idioma {
    margin-left: 80%;
}

.idioma a {
	color: white;
	text-decoration: none;
}
     
img[alt="Logo"] {
    height: 28px;
}

.bgtab-bar {
    z-index: 999;
    bottom: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 65px;
    background: #212121;
}

.drawer {
	color: white;
	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;
	border-radius: 2% 2% 0 0;
}

.drawerTitulo {
    font-size: 20px;
}

#drawer-info {
    text-align: left;
}

    #drawer-info a {
        text-align: left;
        padding-bottom: 15px;
        font-size: 14px;
        display: block;
        width: 100%;
        color: white !important;
        text-decoration: none !important;
    }


    .drawer.active {
        bottom: 0;
    }

.titulo-tab {
	text-align: left;
	color: white;
}

@media (min-width: 769px) {
    .Idioma {
        width: auto;
        position: absolute;
        top: 15px;
        right: 50px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    img[alt="Logo"] {
        height: 28px; 
    }

    .Idioma {
        top: 5px;
        right: 20px;
        font-size: 12px;
        margin-left: 10%;
    }
}
