@charset "utf-8";

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    color: #EBA85F;
    background-color: rgba(0, 0, 0,0.94) !important;
    background: linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0) 12%,  
                    rgba(0, 0, 0, 0.8) 21%  
                ),
                url('/templates/TibiaClient/assets/images/background-banner.png') no-repeat top center,
                linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0.8) 20%,  
                    rgba(0, 0, 0, 0) 8%  
                ),
                url('/templates/TibiaClient/assets/images/footer-city.png') no-repeat bottom center;
    background-size: contain, contain, contain, contain;
}

.top-navigation-bar-container {
    width: 100%;
}

.top-navigation-bar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.top-navigation-bar-menus {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-navigation-bar-item {
    height: 100%;
    border-bottom: transparent 1px solid;
}

.top-navigation-bar-item a {
    text-shadow: 1px 1px 0px #000;
    color: #EBA85F;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    padding: 0 25px;
    line-height: 51px;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.top-navigation-bar-item:hover {
    transition: all 0.3s ease;
    color: #A07332;
    border-bottom: #A07332 1px solid !important;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.banner {
    width: 60%;
    height: 340px;
    justify-content: center;
    display: flex;
}

.banner-text {
    font-family: "Metal Mania";
    color: #990000;
    font-size: 4rem;
}

.banner img {
    width: 20vw;
}

.main-container {
    display: flex;
    width: 60vw;
    margin: 0 25%;
    gap: 1rem;
    z-index: 2;
    padding: 6px;
    border-radius: 16px;
}

.left-menu {
    max-height: fit-content;
    flex-grow: 1;
    background-color: #1c1c1c;
    border-radius: 16px;
    font-weight: 600;
    min-width: 17rem;
    max-width: 17rem;
}

.main-content {
    padding: 20px;
    background: #1c1c1c;
    border-radius: 8px;
    border: 1px solid #333;
    flex-grow: 5;
    height: 100%;
    z-index: 2;
}

.footer {
    position: absolute;
    top: 100vh;
    height: 100%;
    width: 100%;
    z-index: 1; 
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover, cover;
    background-blend-mode: lighten;
}

.content {
    flex-grow: 2;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 1rem;
    padding-bottom: 10vw;
}

button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; 
    white-space: nowrap;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem; 
    font-weight: 500;
    padding: 0.5rem 1rem; 
    background-color: #e5e7eb;
    color: #111827; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); 
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
}


.section a { 
    padding-left: 2rem;
    text-decoration: none;
    font-size: 1rem;
    width: 100%;
}

.section-item {
    display: block;
    padding: 10px;
    font-size: 14px;
    color: #9C866B;
    padding-left: 45px;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.section-item:hover {
    color: #88745B;
    padding-left: 40px;
    -webkit-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.7);
    box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.7);
}

a {
    text-decoration: none;
    color: #EBA85F;
}

.download-section {
    display: flex;
    margin:5px;
    max-width: 380px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background-color: #230000;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-section:hover {
    background-color: #3a0000;
    box-shadow: rgb(139, 0, 0) 0px 0px 5px;
}

.download-section p {
    color: #EBA85F;
}

.download-icon {
    width: 50px;
    height: 50px;
    float: left;
    background-image: url('/templates/TibiaClient/assets/images/download-icon.png');
    background-size: cover;
    background-position: center;
}

.hairline {
    height: 1px;
    background-color: #8b000069;
    transform: scaleY(0.5);
    transform-origin: top;
    margin: 0px 16px;
}

.vocations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #1c1c1c;
    border-radius: 8px;
    border: 1px solid #333;
}

.vocations-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px 0;
    background: #2a2a2a;
    border-radius: 6px;
    border-left: 4px solid #dc2626;
}

.vocations-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}    .class-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: #242424;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
}

.class-card {
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.class-card:hover {
    border-color: #dc2626;
    background: #333;
    transform: translateY(-2px);
}

.class-card.active {
    border-color: #dc2626;
    background: #333;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}    .class-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.class-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.class-description {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

.vocation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.stats-section, .weapons-section {
    background: #242424;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 20px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin: 15px;
    text-align: center;
}

.stats-table, .spells-table {
    width: 100%;
    border-collapse: collapse;
    background: #1c1c1c;
    border-radius: 4px;
    overflow: hidden;
}

.stats-table th, .stats-table td,
.spells-table th, .spells-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #3a3a3a;
    color: #cccccc;
}

.stats-table th, .spells-table th {
    background: #dc2626;
    color: #ffffff;
    font-weight: 600;
}

.stats-table tr:hover, .spells-table tr:hover {
    background: #2a2a2a;
}

.weapons-info {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    background: #1c1c1c;
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #dc2626;
}

.spells-section {
    background: #242424;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 20px;
}    .spell-tooltip {
    position: relative;
    cursor: help;
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.spell-tooltip:hover {
    color: #b91c1c;
}

.type-support {
    color: #4ade80 !important;
    font-weight: 600;
}

.type-offensive {
    color: #f87171 !important;
    font-weight: 600;
}

.selected-vocation {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 6px;
    border-left: 4px solid #dc2626;
}

.selected-vocation h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0;
}    

@media (max-width: 768px) {
    .class-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .vocation-details {
        grid-template-columns: 1fr;
    }
    
    .vocations-container {
        padding: 15px;
    }
    
    .class-card {
        padding: 12px;
    }
    
    .class-card img {
        width: 40px;
        height: 40px;
    }
    
    .class-name {
        font-size: 0.9rem;
    }
    
    .class-description {
        font-size: 0.7rem;
    }
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.titulo-menus {
    font-size: 1.2rem;
}

.titulo-menus p {
    font-size: 1rem;
    color: #EBA85F;
    margin: 0;
}

.form-field {
    width: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

input[type="submit"] {
    border: none;
    border-radius: 8px;
    background-color: #230000;
    height: 2rem;
    padding: 0 1rem;
    color: #EBA85F;
    font-weight: 600;
    text-transform: uppercase;
}

.row-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.news-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-size:large;
}

.news-title {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    font-size: xx-large;
    background-color: #2d2d2d;
    border-radius: 6px;
}