﻿.avatar-container {
    width: 200px; 
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6a00;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff; 
}

    .avatar-container img {
        width: 85%; 
        height: 85%;
        object-fit: contain; 
        transition: transform 0.3s ease;
    }

    .avatar-container:hover img {
        transform: scale(1.1);
    }
    .hover-bold:hover {
        font-weight: bold !important;
        /* Opcional: transition para suavizar */
        transition: font-weight 0.2s ease;
    }

    /*--------------------------------------------------------------------*/
.imagen-fondo-mov {
    background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url(../images/Banner/header-puerto.jpg) center center;
    background-size: cover;
    padding: 100px 0;
    color: white;
}
.account-container {
    background-image: url('../images/Banner/fondo-base.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.account-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,3);
    max-width: 500px;
    width: 100%;
    opacity: .9;
}

.brand_logo_container {
    background-color: white;
    max-width: 500px;
    width: 100%;
    opacity: .9;
    display: flex;
    justify-content: center;
    align-items: center;
}