.profile-template-5 {
    padding: 0;
    scale: 1.1;
}

.profile-template-5 .profile-container {
    position: relative;
    max-width: 800px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Formatos */
    &.format-square {
        border-radius: 0;
        .profile-background {
            border-radius: 0;
        }
    }
    
    &.format-rounded {
        border-radius: 12px;
        .profile-background {
            border-radius: 12px;
        }
    }
    
    &.format-circle {
        border-radius: 0;
        .profile-background {
            border-radius: 0;
        }
    }
}

.profile-template-5 .profile-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    z-index: 1;
}

.profile-template-5 .profile-youtube {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.profile-template-5 .profile-youtube iframe {
    width: 100%;
    border: none;
    display: block;
}

.profile-template-5 .profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 3;
}

.profile-template-5 .profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    scale: 0.9;
}

.profile-template-5 .profile-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    scale: 0.9;
}

@media (max-width: 768px) {
    .profile-template-5 .profile-youtube {
        width: 100%;
    }
    
    .profile-template-5 .profile-youtube iframe {
        height: 180px;
    }
    
    .profile-template-5 .profile-info {
        padding: 1.5rem;
    }
    
    .profile-template-5 .profile-name {
        font-size: 2rem;
    }
    
    .profile-template-5 .profile-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-template-5 .profile-youtube {
        width: 100%;
    }
    
    .profile-template-5 .profile-youtube iframe {
        height: 150px;
    }
    
    .profile-template-5 .profile-info {
        padding: 1rem;
    }
    
    .profile-template-5 .profile-name {
        font-size: 1.75rem;
    }
    
    .profile-template-5 .profile-description {
        font-size: 0.9rem;
    }
} 